/* * Strings.c * * Created on: 5Aug.,2017 * Author: Ben V. Brown */ #include "Strings.h" #define LANG_EN #ifdef LANG_EN const char* SettingsLongNames[14] = { /*These are all the help text for all the settings.*/ /*All must start with 6 spaces so they come on screen nicely.*/ " Power source. Sets cutoff voltage. ", " Sleep Temperature ", " Sleep Timeout ", " Shutdown Timeout ", " Motion Sensitivity <0.Off 1.least sensitive 9.most sensitive>", " Temperature Unit", " Temperature Rounding Amount", " Temperature Display Update Rate", " Display Orientation ", " Enable front key enters boost mode 450C mode when soldering", " Temperature when in \"boost\" mode", " Changes the arrows to a power display when soldering", " 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." }; const char* TempCalStatus[3] = { "Cal Temp", "Cal OK ", "Cal Fail" }; //All fixed 8 chars const char* UVLOWarningString = "Low Volt"; //Fixed width 8 chars const char* CoolingPromptString = "Cool "; //Fixed width 5 chars const char SettingTrueChar = 'T'; const char SettingFalseChar = 'F'; const char SettingSleepChar = 'S'; const char SettingFastChar = 'F'; const char SettingMediumChar = 'M'; const char SettingSlowChar = 'S'; const char SettingRightChar = 'R'; const char SettingLeftChar = 'L'; const char SettingAutoChar = 'A'; const char SettingTempCChar = 'C'; const char SettingTempFChar = 'F'; #endif #ifdef LANG_ES const char* SettingsLongNames[14] = { /*These are all the help text for all the settings.*/ /*All must start with 6 spaces so they come on screen nicely.*/ " Fuente de energia. Ajusta el limite inferior de voltaje. ", " Temperatura en reposo. ", " Tiempo hasta activar reposo. ", " Tiempo hasta apagado. ", " Sensibilidad del movimiento. <0.Apagado 1.El menos sensible 9.El mas sensible>", " Unidad de temperatura.", " Cantidad de redondeo de la temperatura.", " Tasa de actualización de la temperatura.", " Orientacion de la pantalla ", " Activar el boton en modo soldadura.", " Temperatura en modo .", " Cambiar las flechas en pantalla por indicador de potencia en modo soldadura.", " Iniciar directamente modo soldadura en el encendido.", " Blink the temperature on the cooling screen while the tip is still hot."};/*Needs translation*/ const char* TempCalStatus[3] = {"CAL TEMP", "CAL OK ", "CAL FAIL"}; //All fixed 8 chars const char* UVLOWarningString = "LOW VOLT";//Fixed width 8 chars const char* CoolingPromptString = "COOL ";//Fixed width 5 chars const char SettingTrueChar = 'T'; const char SettingFalseChar = 'F'; const char SettingSleepChar = 'S'; const char SettingFastChar = 'F'; const char SettingMediumChar = 'M'; const char SettingSlowChar = 'S'; const char SettingRightChar = 'R'; const char SettingLeftChar = 'L'; const char SettingAutoChar = 'A'; const char SettingTempCChar = 'C'; const char SettingTempFChar = 'F'; #endif const char* SettingsShortNames[14] = { "PWRSC ", "STMP ", "STME ", "SHTME ", "MSENSE ", "TMPUNT ", "TMPRND ", "TMPSPD ", "DSPROT ", "BOOST ", "BTMP ", "PWRDSP ", "ASTART ", "CLBLNK " };