38 lines
907 B
TOML
38 lines
907 B
TOML
|
|
# Extended weather forecast — Open-Meteo (free, no key).
|
|||
|
|
# Existing `weather/` pack covers "what's the weather now"; this adds forecast.
|
|||
|
|
|
|||
|
|
[[commands]]
|
|||
|
|
id = "weather.tomorrow"
|
|||
|
|
type = "lua"
|
|||
|
|
script = "tomorrow.lua"
|
|||
|
|
sandbox = "full"
|
|||
|
|
timeout = 15000
|
|||
|
|
|
|||
|
|
[commands.phrases]
|
|||
|
|
ru = [
|
|||
|
|
"погода завтра",
|
|||
|
|
"что с погодой завтра",
|
|||
|
|
"завтра будет тепло",
|
|||
|
|
"прогноз на завтра",
|
|||
|
|
]
|
|||
|
|
en = ["weather tomorrow", "forecast tomorrow"]
|
|||
|
|
ua = ["погода завтра"]
|
|||
|
|
|
|||
|
|
|
|||
|
|
[[commands]]
|
|||
|
|
id = "weather.week"
|
|||
|
|
type = "lua"
|
|||
|
|
script = "week.lua"
|
|||
|
|
sandbox = "full"
|
|||
|
|
timeout = 20000
|
|||
|
|
|
|||
|
|
[commands.phrases]
|
|||
|
|
ru = [
|
|||
|
|
"прогноз на неделю",
|
|||
|
|
"погода на неделю",
|
|||
|
|
"что с погодой на неделю",
|
|||
|
|
"недельный прогноз",
|
|||
|
|
]
|
|||
|
|
en = ["weather this week", "weekly forecast"]
|
|||
|
|
ua = ["прогноз на тиждень"]
|