-
Notifications
You must be signed in to change notification settings - Fork 0
/
P1_Monitor-i18n-20.lua
132 lines (129 loc) · 4.06 KB
/
P1_Monitor-i18n-20.lua
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
-- Quickapp P1 Monitor i18n translation
class "i18n"
function i18n:translation(language)
translation = {
en = {
["Consumption"] = "Consumption",
["Production"] = "Production",
["Waterflow"] = "Waterflow",
["Todays consumption"] = "Todays consumption",
["Todays production"] = "Todays production",
["Totals"] = "Totals",
["Consumption high"] = "Consumption high",
["Consumption low"] = "Consumption low",
["Production high"] = "Production high",
["Production low"] = "Producton low",
["Gas"] = "Gas",
["Water"] = "Water",
["L1"] = "L1",
["L2"] = "L2",
["L3"] = "L3",
["Ampere"] = "Ampere",
["Voltage"] = "Voltage",
["Amp"] = "Amp",
["Volt"] = "Volt",
["Watt"] = "Watt",
["kWh"] = "kWh",
["Today"] = "Today",
["Max"] = "Max",
["at"] = "at",
["L/min"] = "L/min",
["High"] = "High",
["Low"] = "Low",
["Lasthour"] = "Lasthour",
["Updated"] = "Updated"},
nl = {
["Consumption"] = "Consumptie",
["Production"] = "Productie",
["Waterflow"] = "Waterstroom",
["Todays consumption"] = "Consumptie vandaag",
["Todays production"] = "Productie vandaag",
["Totals"] = "Totalen",
["Consumption high"] = "Consumptie hoog",
["Consumption low"] = "Consumptie laag",
["Production high"] = "Productie hoog",
["Production low"] = "Productie laag",
["Gas"] = "Gas",
["Water"] = "Water",
["L1"] = "L1",
["L2"] = "L2",
["L3"] = "L3",
["Ampere"] = "Ampere",
["Voltage"] = "Voltage",
["Amp"] = "Amp",
["Volt"] = "Volt",
["Watt"] = "Watt",
["kWh"] = "kWh",
["Today"] = "Vandaag",
["Max"] = "Max",
["at"] = "op",
["L/min"] = "L/min",
["High"] = "Hoog",
["Low"] = "Laag",
["Lasthour"] = "Afgelopen uur",
["Updated"] = "Bijgewerkt"},
fr = {
["Consumption"] = "Consommation",
["Production"] = "Production",
["Waterflow"] = "L'écoulement de l'eau",
["Todays consumption"] = "Consommation d'aujourd'hui",
["Todays production"] = "La production d'aujourd'hui",
["Totals"] = "Totaux",
["Consumption high"] = "Consommation élevée",
["Consumption low"] = "Consommation faible",
["Production high"] = "Production élevée",
["Production low"] = "Production faible",
["Gas"] = "Gaz",
["Water"] = "L'eau",
["L1"] = "L1",
["L2"] = "L2",
["L3"] = "L3",
["Ampere"] = "Ampère",
["Voltage"] = "Voltage",
["Amp"] = "Amp",
["Volt"] = "Volt",
["Watt"] = "Watt",
["kWh"] = "kWh",
["Today"] = "Aujourd'hui",
["Max"] = "Max",
["at"] = "à",
["L/min"] = "L/min",
["High"] = "Élevé",
["Low"] = "Faible",
["Lasthour"] = "Dernière heure",
["Updated"] = "Actualisé"},
pl = {
["Consumption"] = "Konsumpcja",
["Production"] = "Produkcja",
["Waterflow"] = "Przepływ wody",
["Todays consumption"] = "Dzisiejsza konsumpcja",
["Todays production"] = "Dzisiejsza produkcja",
["Totals"] = "Sumy",
["Consumption high"] = "Konsumpcja wysoka",
["Consumption low"] = "Niskie zużycie",
["Production high"] = "Produkcja wysoka",
["Production low"] = "Produkcja niska",
["Gas"] = "Gaz",
["Water"] = "Woda",
["L1"] = "L1",
["L2"] = "L2",
["L3"] = "L3",
["Ampere"] = "Amper",
["Voltage"] = "Woltaż",
["Amp"] = "Amp",
["Volt"] = "Woltaż",
["Watt"] = "Watt",
["kWh"] = "kWh",
["Today"] = "Dziś",
["Max"] = "Max",
["at"] = "w",
["L/min"] = "L/min",
["High"] = "Wysoki",
["Low"] = "Niski",
["Lasthour"] = "Ostatnia godzina",
["Updated"] = "Zaktualizowano"},
}
translation = translation[language] -- Shorten the table to only the current translation
return translation
end
-- EOF