Add rough russian
This commit is contained in:
@@ -7,25 +7,60 @@
|
||||
#include "Translation.h"
|
||||
|
||||
#ifdef LANG_EN
|
||||
const char* SettingsLongNames[16] = {
|
||||
/*These are all the help text for all the settings.*/
|
||||
/*No requirements on spacing or length*/
|
||||
"Power source. Sets cutoff voltage. <DC 10V> <S 3.3V per cell>", //Power Source
|
||||
"Sleep Temperature <C>",//Sleep Temp
|
||||
"Sleep Timeout <Minutes/Seconds>",//Sleep Timeout
|
||||
"Shutdown Timeout <Minutes>",//Shutdown Time
|
||||
"Motion Sensitivity <0.Off 1.least sensitive 9.most sensitive>",//Motion Sensitivity
|
||||
"Temperature Unit <C=Celsius F=Fahrenheit>",//Temp Unit
|
||||
"Display detailed information in a smaller font on the idle screen.",//Detailed Information
|
||||
"Display Orientation <A. Automatic L. Left Handed R. Right Handed>",//Orientation
|
||||
"Enable front key enters boost mode 450C mode when soldering",//Boost enable
|
||||
"Temperature when in \"boost\" mode",//Boost Temp
|
||||
"Automatically starts the iron into soldering on power up. T=Soldering, S= Sleep mode,F=Off",//Auto start
|
||||
"Blink the temperature on the cooling screen while the tip is still hot.",//Cooling Blink
|
||||
"Calibrate tip offset.",//Calibrate Tip
|
||||
"Reset all settings",//Reset Settings
|
||||
"VIN Calibration. Buttons adjust, long press to exit",//VIN Cal
|
||||
"Display detailed information while soldering",//ADV SLD
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationWarning = "Please ensure the tip is at room temperature before continuing!";
|
||||
const char* UVLOWarningString = "LOW VOLT"; //Fixed width 8 chars
|
||||
const char* SleepingSimpleString = "Zzzz";// Must be <= 4 chars
|
||||
const char* SleepingAdvancedString = "Sleeping...";// <=17 chars
|
||||
const char* WarningSimpleString = "HOT!";//Must be <= 4 chars
|
||||
const char* WarningAdvancedString = "WARNING! TIP HOT!";
|
||||
|
||||
const char SettingTrueChar = 'T';
|
||||
const char SettingFalseChar = 'F';
|
||||
const char SettingRightChar = 'R';
|
||||
const char SettingLeftChar = 'L';
|
||||
const char SettingAutoChar = 'A';
|
||||
#endif
|
||||
#ifdef LANG_RU
|
||||
const char* SettingsLongNames[16] = {
|
||||
/*These are all the help text for all the settings.*/
|
||||
/*No requirements on spacing or length*/
|
||||
"Power source. Sets cutoff voltage. <DC 10V> <S 3.3V per cell>", //Power Source
|
||||
"Sleep Temperature <C>", //Sleep Temp
|
||||
"Sleep Timeout <Minutes>", //Sleep Timeout
|
||||
"Shutdown Timeout <Minutes>", //Shutdown Time
|
||||
"Motion Sensitivity <0.Off 1.least sensitive 9.most sensitive>", //Motion Sensitivity
|
||||
"Temperature Unit <C=Celsius F=Fahrenheit>", //Temp Unit
|
||||
"Источник питания. Установка напряжения отключения. <DC 10V> <S 3.3 V на батарею>", //Cell count
|
||||
"Температура Сна <С>", //Sleep Temp
|
||||
"Переход в режим Сна <Минуты>", //Sleep timeout
|
||||
"Переходит в режим ожидания <Минуты>", //Shutdown timeout
|
||||
"Акселерометр <0. Выкл. 1. мин. чувствительный 9. макс. чувствительный>", //Sensitivity
|
||||
"В чем измерять температуру", //Temp Unit
|
||||
"Display detailed information in a smaller font on the idle screen.", //Detailed Information
|
||||
"Display Orientation <A. Automatic L. Left Handed R. Right Handed>", //Orientation
|
||||
"Enable front key enters boost mode 450C mode when soldering", //Boost enable
|
||||
"Temperature when in \"boost\" mode", //Boost Temp
|
||||
"Automatically starts the iron into soldering on power up. T=Soldering, S= Sleep mode,F=Off", //Auto start
|
||||
"Blink the temperature on the cooling screen while the tip is still hot.", //Cooling Blink
|
||||
"Calibrate tip offset.", //Calibrate Tip
|
||||
"Ориентация Дисплея <A. Автоматический L. Левая Рука R. Правая Рука>", //Orientation
|
||||
"Активация кнопки A для Турбо режима до 450С при пайке ", //Boost enable
|
||||
"Установка температуры для Турбо режима", //Boost temp
|
||||
"Автоматический запуск паяльника при включении питания. T=Нагрев, S= Режим Сна,F=Выкл.", //Auto start
|
||||
"Мигает температура на экране охлаждения, пока жало остается горячим." //Cooling blink
|
||||
"Calibrate tip offset.",//Calibrate Tip
|
||||
"Reset all settings", //Reset Settings
|
||||
"VIN Calibration. Buttons adjust, long press to exit", //VIN Cal
|
||||
"Display detailed information while soldering",//ADV SLD
|
||||
"Display detailed information while soldering", //ADV SLD
|
||||
};
|
||||
|
||||
const char* SettingsCalibrationWarning = "Please ensure the tip is at room temperature before continuing!";
|
||||
@@ -41,7 +76,7 @@ const char SettingRightChar = 'R';
|
||||
const char SettingLeftChar = 'L';
|
||||
const char SettingAutoChar = 'A';
|
||||
#endif
|
||||
|
||||
//Currently the settings names are not translated
|
||||
const char* SettingsShortNames[16] = { /**/
|
||||
"PWRSC ", // Power Source (DC or batt)
|
||||
"STMP ", // Sleep Temperature
|
||||
@@ -57,6 +92,5 @@ const char* SettingsShortNames[16] = { /**/
|
||||
"CLBLNK ", // Cooldown blink
|
||||
"TMP CAL?", // Temperature calibration enter menu
|
||||
"RESET? ", // Settings reset command
|
||||
"CAL VIN?",
|
||||
"ADVSLD ", //advanced soldering screens
|
||||
"CAL VIN?", "ADVSLD ", //advanced soldering screens
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user