/* * Translation.c * * Created on: 31Aug.,2017 * Author: Ben V. Brown */ #ifndef LANG_EN #define LANG_EN #endif #ifdef LANG_EN const char* SettingsLongNames[13] = { /*These are all the help text for all the settings.*/ /*No requirements on spacing or length*/ "Power source. Sets cutoff voltage. ", "Sleep Temperature ", "Sleep Timeout ", "Shutdown Timeout ", "Motion Sensitivity <0.Off 1.least sensitive 9.most sensitive>", "Display detailed information in a smaller font.", "Display Orientation ", "Enable front key enters boost mode 450C mode when soldering", "Temperature when in \"boost\" mode", "Automatically starts the iron into soldering on power up. T=Soldering, S= Sleep mode,F=Off", "Blink the temperature on the cooling screen while the tip is still hot.", "Calibrate tip offset.", "Reset all settings", }; const char* SettingsShortNames[13] = { "PWRSC ", "STMP ", "STME ", "SHTME ", "MSENSE ", "ADVDSP ", "DSPROT ", "BOOST ", "BTMP ", "ASTART ", "CLBLNK ", "TMP CAL?", "RESET? " }; const char* SettingsCalibrationWarning = "Please ensure the tip is at room temperature before continuing!"; #endif