diff --git a/CHANGELOG.md b/CHANGELOG.md index f1abd8a4..b3706195 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Append endpoints of weather modules with `/` to retreive the correct data. (Issue [#337](https://github.com/MichMich/MagicMirror/issues/337)) - Corrected grammer in `module.js` from 'suspend' to 'suspended'. - Added ability to turn off the date display in `clock.js` when in analog mode. +- Greek Translation ## [2.0.3] - 2016-07-12 ### Added diff --git a/translations/gr.json b/translations/gr.json new file mode 100644 index 00000000..6b9c92ac --- /dev/null +++ b/translations/gr.json @@ -0,0 +1,28 @@ +{ + /* GENERAL */ + "LOADING": "Φόρτωση …", + + /* CALENDAR */ + "TODAY": "Σήμερα", + "TOMORROW": "Αύριο", + "RUNNING": "Λήγει σε", + "EMPTY": "Δεν υπάρχουν προσεχείς εκδηλώσεις.", + + /* WEATHER */ + "N": "B", + "NNE": "BBA", + "NE": "BA", + "ENE": "ABA", + "E": "A", + "ESE": "ANA", + "SE": "NA", + "SSE": "NNA", + "S": "N", + "SSW": "NNΔ", + "SW": "NΔ", + "WSW": "ΔNΔ", + "W": "Δ", + "WNW": "ΔΒΔ", + "NW": "ΒΔ", + "NNW": "ΒΒΔ" +} diff --git a/translations/translations.js b/translations/translations.js index 1f541c45..c7e40357 100644 --- a/translations/translations.js +++ b/translations/translations.js @@ -21,5 +21,5 @@ var translations = { "zh_tw" : "translations/zh_tw.json", // Traditional Chinese "ja" : "translations/ja.json", // Japanese "pl" : "translations/pl.json", // Polish - + "gr" : "translations/gr.json", // Greek };