14 lines
349 B
Lua
14 lines
349 B
Lua
local de = {
|
|||
warning_title = "Wetter Widget",
|
|||
parameter_warning = "Folgende benötigte Parameter fehlen: ",
|
|||
directions = {
|
|||
"N", "NNO", "NO", "ONO", "O", "OSO", "SO", "SSO", "S", "SSW", "SW", "WSW", "W", "WNW", "NW", "NNW", "N"
|
|||
},
|
|||
feels_like = "Gefühlt: ",
|
|||
wind = "Wind: ",
|
|||
humidity = "Luftfeuchtigkeit: ",
|
|||
uv = "UV-Index: "
|
|||
}
|
|||
|
|||
return de
|