mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Correcting typos of the word celsius
Corrected typo of the word celsius in three files: core/import-csv.c core/divefileter.h mobile-widgets/qml/Settings.qml These were spelled as celcius but corrected these to celsius. The 'core files were just comments but the mobile-widgets file would be 'active' code. Reported by: tormento <turment@gmail.com> Signed-off-by: Jason Bramwell <jb2cool@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
8391d926c7
commit
caabf1b888
3 changed files with 3 additions and 3 deletions
|
@ -42,7 +42,7 @@ struct FilterData {
|
|||
int maxRating = 5;
|
||||
// The default minimum and maximum temperatures are set such that all
|
||||
// physically reasonable dives are shown. Note that these values should
|
||||
// work for both Celcius and Fahrenheit scales.
|
||||
// work for both Celsius and Fahrenheit scales.
|
||||
double minWaterTemp = -10;
|
||||
double maxWaterTemp = 200;
|
||||
double minAirTemp = -50;
|
||||
|
|
|
@ -740,7 +740,7 @@ int parse_txt_file(const char *filename, const char *csv, struct dive_table *tab
|
|||
add_sample_data(sample, POSEIDON_NDL, value);
|
||||
break;
|
||||
case 39:
|
||||
// Water Temperature in Celcius
|
||||
// Water Temperature in Celsius
|
||||
add_sample_data(sample, POSEIDON_TEMP, value);
|
||||
break;
|
||||
case 85:
|
||||
|
|
|
@ -458,7 +458,7 @@ TemplatePage {
|
|||
font.bold: (Backend.unit_system === Enums.PERSONALIZE)
|
||||
}
|
||||
TemplateRadioButton {
|
||||
text: qsTr("celcius")
|
||||
text: qsTr("celsius")
|
||||
checked: (Backend.temperature === Enums.CELSIUS)
|
||||
ButtonGroup.group: unitTemperature
|
||||
onClicked: {
|
||||
|
|
Loading…
Reference in a new issue