2020-01-31 11:17:11 +02:00
|
|
|
|
{
|
2022-12-10 21:50:56 +01:00
|
|
|
|
"LOADING": "Завантаження …",
|
2020-01-31 11:17:11 +02:00
|
|
|
|
|
2023-02-21 22:39:21 +01:00
|
|
|
|
"DAYBEFOREYESTERDAY": "Позавчора",
|
|
|
|
|
"YESTERDAY": "вчора",
|
2020-01-31 11:17:11 +02:00
|
|
|
|
"TODAY": "Сьогодні",
|
|
|
|
|
"TOMORROW": "Завтра",
|
|
|
|
|
"DAYAFTERTOMORROW": "Післязавтра",
|
|
|
|
|
"RUNNING": "Закінчується через",
|
|
|
|
|
"EMPTY": "Немає найближчих подій",
|
|
|
|
|
"WEEK": "Тиждень {weekNumber}",
|
|
|
|
|
|
|
|
|
|
"N": "Пн",
|
|
|
|
|
"NNE": "ПнПнСх",
|
|
|
|
|
"NE": "ПнСх",
|
|
|
|
|
"ENE": "СхПнСх",
|
|
|
|
|
"E": "Сх",
|
|
|
|
|
"ESE": "СхПдСх",
|
|
|
|
|
"SE": "СхПд",
|
|
|
|
|
"SSE": "СхСхПд",
|
|
|
|
|
"S": "Пд",
|
|
|
|
|
"SSW": "ПдПдЗх",
|
|
|
|
|
"SW": "ПдЗх",
|
|
|
|
|
"WSW": "ЗхПдЗх",
|
|
|
|
|
"W": "Зх",
|
|
|
|
|
"WNW": "ЗхПнЗх",
|
|
|
|
|
"NW": "ПнЗх",
|
|
|
|
|
"NNW": "ПнПнЗх",
|
|
|
|
|
|
2021-01-13 16:31:36 +01:00
|
|
|
|
"FEELS": "Відчувається як {DEGREE}",
|
Tidy up precipitation (#3023)
Fixes #2953
This is an attempt to fix the issue with precipitation amount and
percentage mixup. I have created a separate
`precipitationPercentage`-variable where the probability of rain can be
stored.
The config options now has the old `showPrecipitationAmount` in addition
to a new setting: `showPrecipitationProbability` (shows the likelihood
of rain).
<details>
<summary>Examples</summary>
### Yr
I tested the Yr weather provider for a Norwegian city Bergen that has a
lot of rain. I have removed properties that are irrelevant for this demo
from the config-samples below.
Config:
```js
{
module: "weather",
config: {
weatherProvider: "yr",
type: "current",
showPrecipitationAmount: true,
showPrecipitationProbability: true
}
},
{
module: "weather",
config: {
weatherProvider: "yr",
type: "hourly",
showPrecipitationAmount: true,
showPrecipitationProbability: true
}
},
{
module: "weather",
config: {
weatherProvider: "yr",
type: "daily",
showPrecipitationAmount: true,
showPrecipitationProbability: true
}
}
```
Result:<br/>
<img width="444" alt="screenshot"
src="https://user-images.githubusercontent.com/34011212/216775423-4e37345c-f915-47e5-8551-7c544ebd24b1.png">
</details>
---------
Co-authored-by: Magnus Marthinsen <magmar@online.no>
Co-authored-by: Veeck <github@veeck.de>
2023-02-04 19:02:55 +01:00
|
|
|
|
"PRECIP_POP": "Опади",
|
2021-01-13 16:31:36 +01:00
|
|
|
|
|
2020-01-31 11:17:11 +02:00
|
|
|
|
"UPDATE_NOTIFICATION": "Є оновлення для MagicMirror².",
|
|
|
|
|
"UPDATE_NOTIFICATION_MODULE": "Є оновлення для модуля {MODULE_NAME}.",
|
|
|
|
|
"UPDATE_INFO_SINGLE": "Поточна версія на {COMMIT_COUNT} комміт позаду від гілки {BRANCH_NAME}.",
|
2021-01-13 16:31:36 +01:00
|
|
|
|
"UPDATE_INFO_MULTIPLE": "Поточна інсталяція на {COMMIT_COUNT} комітів позаду від гілки {BRANCH_NAME}."
|
2020-01-31 11:17:11 +02:00
|
|
|
|
}
|