-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguage.ino
37 lines (31 loc) · 1.15 KB
/
language.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//Translation template, please don't delete the comments for others to understand
if (language = "English") {
const LANG = "en"; //Language Name
//-------------------Weekdays-------------------//
const MON = "Monday";
const TUE = "Tuesday";
const WED = "Wednesday";
const THU = "Thursday";
const FRI = "Friday";
const SAT = "Saturday";
const SUN = "Sunday";
const YES = "Yes";
const NO = "No";
const OK = "OK";
const ON = "On";
const OFF = "Off";
//-------------------Main Menu-------------------//
const SLEEP = "Sleep"; //Sleep
const CUSTO = "Customize"; //Customise
const NEOPI = "Neopixels"; //Neopixels
const TOOLS = "Tools"; //Tools
const WIFIF = "Wifi Functions"; //Wifi Functions
const CONFO = "Configure OLED"; //COnfigure OLED
const TIMEW = "Time & Weather"; //Time & Weather
const SETTI = "Settings"; //Settings
//---------------Customize Sub-Menu--------------//
const WATCS = "Watch Screen"; //Watch Screen
const WEATS = "Weather Screen"; //Weather Screen
const MENUS = "Menu Screen"; //Menu Screen
//-------------------Main Menu-------------------//
}