diff --git a/CHANGELOG.md b/CHANGELOG.md index 6356300d..08e08d56 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/translations/he.json b/translations/he.json new file mode 100644 index 00000000..5e1f5f8b --- /dev/null +++ b/translations/he.json @@ -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": "משקעים" +} diff --git a/translations/translations.js b/translations/translations.js index 767590e8..2b6f65bf 100644 --- a/translations/translations.js +++ b/translations/translations.js @@ -36,12 +36,13 @@ var translations = { "kr" : "translations/kr.json", // Korean "ro" : "translations/ro.json", // Romanian "cy" : "translations/cy.json", // Welsh (Cymraeg) - "bg" : "translations/bg.json", // Bulgarian - "cs" : "translations/cs.json", // Czech + "bg" : "translations/bg.json", // Bulgarian + "cs" : "translations/cs.json", // Czech "hr" : "translations/hr.json", // Croatian - "sk" : "translations/sk.json", // Slovak + "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;}