2021-10-04 11:05:33 +02:00
|
|
|
{
|
2022-12-10 21:50:56 +01:00
|
|
|
"LOADING": "로드 중 …",
|
2021-10-04 11:05:33 +02:00
|
|
|
|
2023-02-21 22:39:21 +01:00
|
|
|
"YESTERDAY": "어제",
|
2021-10-04 11:05:33 +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": "북북서풍",
|
|
|
|
|
|
|
|
"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": "PoP",
|
2021-10-04 11:05:33 +02:00
|
|
|
|
|
|
|
"MODULE_CONFIG_CHANGED": "모듈 {MODULE_NAME}의 설정값이 바뀌었습니다.\n매뉴얼을 참고하세요.",
|
|
|
|
"MODULE_CONFIG_ERROR": "에러 : {MODULE_NAME} - {ERROR}",
|
|
|
|
"MODULE_ERROR_MALFORMED_URL": "잘못된 URL 형식입니다.",
|
|
|
|
"MODULE_ERROR_NO_CONNECTION": "인터넷이 연결되지 않았습니다.",
|
|
|
|
"MODULE_ERROR_UNAUTHORIZED": "인증이 실패했습니다.",
|
|
|
|
"MODULE_ERROR_UNSPECIFIED": "상세 내용은 로그를 확인하세요.",
|
|
|
|
|
|
|
|
"UPDATE_NOTIFICATION": "새로운 MagicMirror² 업데이트가 있습니다.",
|
|
|
|
"UPDATE_NOTIFICATION_MODULE": "{MODULE_NAME} 모듈에서 사용 가능한 업데이트 입니다.",
|
|
|
|
"UPDATE_INFO_SINGLE": "설치할 {COMMIT_COUNT} commit 는 {BRANCH_NAME} 분기에 해당됩니다.",
|
|
|
|
"UPDATE_INFO_MULTIPLE": "설치할 {COMMIT_COUNT} commits 는 {BRANCH_NAME} 분기에 해당됩니다."
|
|
|
|
}
|