mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
/*
|
|
* 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. <DC 10V> <S 3.3V per cell>",
|
|
"Sleep Temperature <C>",
|
|
"Sleep Timeout <Minutes>",
|
|
"Shutdown Timeout <Minutes>",
|
|
"Motion Sensitivity <0.Off 1.least sensitive 9.most sensitive>",
|
|
"Display detailed information in a smaller font.",
|
|
"Display Orientation <A. Automatic L. Left Handed R. Right Handed>",
|
|
"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
|