* Added czech translation Added czech translation (locale cs_CZ) * Make simple sleep screen more readable Add gap between "zzz" and temperature for better readability. * Adjusted czech translation Modified texts after testing on real device to fix char issues and increase readability
36 lines
821 B
C
36 lines
821 B
C
/*
|
|
* Translation.h
|
|
*
|
|
* Created on: 31Aug.,2017
|
|
* Author: Ben V. Brown
|
|
*/
|
|
|
|
#ifndef TRANSLATION_H_
|
|
#define TRANSLATION_H_
|
|
|
|
extern const char* SettingsLongNames[16];
|
|
extern const char* SettingsShortNames[16];
|
|
extern const char* SettingsCalibrationWarning;
|
|
extern const char* UVLOWarningString;
|
|
extern const char* SleepingSimpleString;
|
|
extern const char* SleepingAdvancedString;
|
|
extern const char* WarningSimpleString;
|
|
extern const char* WarningAdvancedString;
|
|
|
|
extern const char SettingTrueChar;
|
|
extern const char SettingFalseChar;
|
|
extern const char SettingRightChar;
|
|
extern const char SettingLeftChar;
|
|
extern const char SettingAutoChar;
|
|
|
|
#define LANG_EN
|
|
//#define LANG_RU
|
|
//#define LANG_ES
|
|
//#define LANG_SE
|
|
//#define LANG_IT
|
|
//#define LANG_FR
|
|
//#define LANG_DE
|
|
//#define LANG_CS_CZ
|
|
|
|
#endif /* TRANSLATION_H_ */
|