15 lines
369 B
Lua
15 lines
369 B
Lua
local en = {
|
|||
warning_title = "Weather Widget",
|
|||
parameter_warning = "Required parameters are not set: ",
|
|||
directions = {
|
|||
"N", "NNE", "NE", "ENE", "E", "ESE", "SE", "SSE", "S", "SSW", "SW",
|
|||
"WSW", "W", "WNW", "NW", "NNW", "N"
|
|||
},
|
|||
feels_like = "Feels like ",
|
|||
wind = "Wind: ",
|
|||
humidity = "Humidity: ",
|
|||
uv = "UV: "
|
|||
}
|
|||
|
|||
return en
|