Add hebrew translation

This commit is contained in:
adimi 2020-01-22 22:03:34 +02:00
parent 9f4dc1e382
commit 2ca81f965a
3 changed files with 42 additions and 4 deletions

View File

@ -16,6 +16,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Finnish translation for "PRECIP", "UPDATE_INFO_MULTIPLE" and "UPDATE_INFO_SINGLE".
- Added the ability to hide the temp label and weather icon in the `currentweather` module to allow showing only information such as wind and sunset/rise.
- The `clock` module now optionally displays sun and moon data, including rise/set times, remaining daylight, and percent of moon illumination.
- Added Hebrew translation.
### Fixed
- Force declaration of public ip adress in config file (ISSUE #1852)

36
translations/he.json Normal file
View File

@ -0,0 +1,36 @@
{
"LOADING": "טוען...",
"TODAY": "היום",
"TOMORROW": "מחר",
"DAYAFTERTOMORROW": "בעוד יומיים",
"RUNNING": "מסתיים ב",
"EMPTY": "אין ארועים",
"WEEK": "{weekNumber} שבוע",
"N": "צ",
"NNE": "צ-צ-מז",
"NE": "צ-מז",
"ENE": "מז-צ-מז",
"E": "מז",
"ESE": "מז-ד-מז",
"SE": "ד-מז",
"SSE": "ד-ד-מז",
"S": "ד",
"SSW": "ד-ד-מע",
"SW": "ד-מע",
"WSW": "מע-ד-מע",
"W": "מע",
"WNW": "מע-ז-מע",
"NW": "ז-מע",
"NNW": "צ-צ-מע",
"UPDATE_NOTIFICATION": "עדכון זמין ל-MagicMirror",
"UPDATE_NOTIFICATION_MODULE": "עדכון זמין ב-{MODULE_NAME} מודול",
"UPDATE_INFO_SINGLE": "ההתקנה הנוכחית נמצאת מאחור הענף {BRANCH_NAME} ב-{COMMIT_COUNT} מופע",
"UPDATE_INFO_MULTIPLE": "ההתקנה הנוכחית נמצאת מאחור הענף {BRANCH_NAME} ב-{COMMIT_COUNT} מופעים",
"FEELS": "מרגיש כמו",
"PRECIP": "משקעים"
}

View File

@ -41,7 +41,8 @@ var translations = {
"hr" : "translations/hr.json", // Croatian
"sk" : "translations/sk.json", // Slovak
"tlh" : "translations/tlh.json", // Klingon
"ms-my" : "translations/ms-my.json" // Malay
"ms-my" : "translations/ms-my.json", // Malay
"he" : "translations/he.json" // Hebrew
};
if (typeof module !== "undefined") {module.exports = translations;}