added missing verb to english translation (#352)

* added missing verb

* Also update Translation.cpp
This commit is contained in:
David Hilton
2018-09-05 22:17:14 -06:00
committed by Ben V. Brown
parent 4c8a9d7c65
commit 7ec106729c
2 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
"languageLocalName": "English", "languageLocalName": "English",
"messages": { "messages": {
"SettingsCalibrationWarning": "Please ensure the tip is at room temperature before continuing!", "SettingsCalibrationWarning": "Please ensure the tip is at room temperature before continuing!",
"SettingsResetWarning": "Are you sure to reset settings to default values?", "SettingsResetWarning": "Are you sure you want to reset settings to default values?",
"UVLOWarningString": "DC LOW", "UVLOWarningString": "DC LOW",
"UndervoltageString": "Undervoltage", "UndervoltageString": "Undervoltage",
"InputVoltageString": "Input V: ", "InputVoltageString": "Input V: ",
@@ -195,4 +195,4 @@
"desc": "Speed this text scrolls past at" "desc": "Speed this text scrolls past at"
} }
} }
} }

View File

@@ -87,7 +87,7 @@ const char* SettingsDescriptions[17] = {
}; };
const char* SettingsCalibrationWarning = "Please ensure the tip is at room temperature before continuing!"; const char* SettingsCalibrationWarning = "Please ensure the tip is at room temperature before continuing!";
const char* SettingsResetWarning = "Are you sure to reset settings to default values?"; const char* SettingsResetWarning = "Are you sure you want to reset settings to default values?";
const char* UVLOWarningString = "DC LOW"; // <=8 chars const char* UVLOWarningString = "DC LOW"; // <=8 chars
const char* UndervoltageString = "Undervoltage";// <=16 chars const char* UndervoltageString = "Undervoltage";// <=16 chars
const char* InputVoltageString = "Input V: ";// <=11 chars, preferably end with a space const char* InputVoltageString = "Input V: ";// <=11 chars, preferably end with a space