diff --git a/CHANGELOG.md b/CHANGELOG.md index 709bc1f6..cc4a76e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added - Finnish translation. - Danish translation. +- Turkish translation. - Option to limit access to certain IP addresses based on the value of `ipWhitelist` in the `config.js`, default is access from localhost only (Issue [#456](https://github.com/MichMich/MagicMirror/issues/456)). - Added ability to change the point of time when calendar events get relative. - Add Splash screen on boot. diff --git a/translations/tr.json b/translations/tr.json new file mode 100644 index 00000000..9a488bf8 --- /dev/null +++ b/translations/tr.json @@ -0,0 +1,26 @@ +{ + /* GENERAL */ + "LOADING": "Yükleniyor …", + /* CALENDAR */ + "TODAY": "Bugün", + "TOMORROW": "Yarın", + "RUNNING": "Biten", + "EMPTY": "Yakında etkinlik yok.", + /* WEATHER */ + "N": "K", + "NNE": "KKD", + "NE": "KD", + "ENE": "DKD", + "E": "D", + "ESE": "DGD", + "SE": "GD", + "SSE": "GGD", + "S": "G", + "SSW": "GGB", + "SW": "GB", + "WSW": "BGB", + "W": "B", + "WNW": "BKB", + "NW": "KB", + "NNW": "KKB" +} \ No newline at end of file diff --git a/translations/translations.js b/translations/translations.js index 81cf25a6..d572c803 100644 --- a/translations/translations.js +++ b/translations/translations.js @@ -25,4 +25,5 @@ var translations = { "pl" : "translations/pl.json", // Polish "gr" : "translations/gr.json", // Greek "da" : "translations/da.json", // Danish + "tr" : "translations/tr.json", // Turkish };