-
Notifications
You must be signed in to change notification settings - Fork 2
/
phrases
94 lines (94 loc) · 3.89 KB
/
phrases
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
--[[
Translation phrases
@author ikubicki
]]
phrases = {
pl = {
['name'] = 'Stacja pogodowa OpenWeather',
['refresh'] = 'Odśwież',
['refresh-sensors'] = 'Odśwież sensory',
['retry'] = 'Ponów',
['last-update'] = 'Ostatnia aktualizacja: %s',
['please-wait'] = 'Proszę czekać...',
['device-updated'] = 'Zaktualizowano %s',
['select-sensors'] = 'Kliknij w przyciski aby wybrać sensory:',
["openweather-provider"] = "Stacja OpenWeather",
["openweather-temperature"] = "Temperatura",
["openweather-pressure"] = "Ciśnienie",
["openweather-humidity"] = "Wilgotność",
["openweather-wind"] = "Wiatr",
["openweather-rain"] = "Opady",
["openweather-clouds"] = "Zachmurzenie",
["openweather-sunrise"] = "Wschód słońca",
["openweather-sunset"] = "Zachód słońca",
["openweather-uv"] = "Indeks UV",
['current-weather'] = "Aktualna pogoda",
['forecast'] = "Prognoza +%d godzin",
},
en = {
['name'] = 'OpenWeather weather station',
['refresh'] = 'Refresh',
['refresh-sensors'] = 'Refresh sensors',
['retry'] = 'Retry',
['last-update'] = 'Last update at %s',
['please-wait'] = 'Please wait...',
['device-updated'] = '%s updated',
['select-sensors'] = 'Click on buttons to select sensors:',
["openweather-provider"] = "OpenWeather station",
["openweather-temperature"] = "Temperature",
["openweather-pressure"] = "Pressure",
["openweather-humidity"] = "Humidity",
["openweather-wind"] = "Wind",
["openweather-rain"] = "Rain",
["openweather-clouds"] = "Clouds",
["openweather-sunrise"] = "Sunrise",
["openweather-sunset"] = "Sunset",
["openweather-uv"] = "UV Index",
['current-weather'] = "Current weather",
['forecast'] = "Forecast +%d hours",
},
de = {
['name'] = 'OpenWeather wetterstation',
['refresh'] = 'Aktualisieren',
['refresh-sensors'] = 'Sensoren aktualisieren',
['retry'] = 'Wiederholen',
['last-update'] = 'Letztes update: %s',
['please-wait'] = 'Ein moment bitte...',
['device-updated'] = '%s aktualisiert',
['select-sensors'] = 'Klicken Sie auf die Schaltflächen, um Sensoren auszuwählen:',
["openweather-provider"] = "OpenWeather station",
["openweather-temperature"] = "Temperatur",
["openweather-pressure"] = "Luftdruck",
["openweather-humidity"] = "Luftfeuchtigkeit",
["openweather-wind"] = "Windgeschwindigkeit",
["openweather-rain"] = "Regenfall",
["openweather-clouds"] = "Wolkig",
["openweather-sunrise"] = "Sonnenaufgang",
["openweather-sunset"] = "Sonnenuntergang",
["openweather-uv"] = "UV-Index",
['current-weather'] = "Aktuelles Wetter",
['forecast'] = "Prognose +%d stunden",
},
sv = {
['name'] = 'OpenWeather väderstation',
['refresh'] = 'Uppdatera',
['refresh-sensors'] = 'Uppdatera sensorer',
['retry'] = 'Försök igen',
['last-update'] = 'Senaste uppdatering %s',
['please-wait'] = 'Vänligen vänta...',
['device-updated'] = '%s uppdaterad',
['select-sensors'] = 'Klicka på knapparna för att välja sensorer:',
["openweather-provider"] = "OpenWeather station",
["openweather-temperature"] = "Temperatur",
["openweather-pressure"] = "Lufttryck",
["openweather-humidity"] = "Fuktighet",
["openweather-wind"] = "Vind",
["openweather-rain"] = "Regn",
["openweather-clouds"] = "Moln",
["openweather-sunrise"] = "Soluppgång",
["openweather-sunset"] = "Solnedgång",
["openweather-uv"] = "UV-Index",
['current-weather'] = "Aktuellt väder",
['forecast'] = "Prognos +%d timmar",
}
}