diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f719ad4..d7fe1729 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added - Add max newsitems parameter to the newsfeed module. - Translations for Simplified Chinese, Traditional Chinese and Japanese. +- Polish Translation ### Fixed diff --git a/translations/pl.json b/translations/pl.json new file mode 100644 index 00000000..bc6753ac --- /dev/null +++ b/translations/pl.json @@ -0,0 +1,28 @@ +{ + /* GENERAL */ + "LOADING": "Ładowanie …", + + /* CALENDAR */ + "TODAY": "Dziś", + "TOMORROW": "Jutro", + "RUNNING": "Koniec za", + "EMPTY": "Brak wydarzeń.", + + /* WEATHER */ + "N": "N", + "NNE": "NNE", + "NE": "NE", + "ENE": "ENE", + "E": "E", + "ESE": "ESE", + "SE": "SE", + "SSE": "SSE", + "S": "S", + "SSW": "SSW", + "SW": "SW", + "WSW": "WSW", + "W": "W", + "WNW": "WNW", + "NW": "NW", + "NNW": "NNW" +} diff --git a/translations/translations.js b/translations/translations.js index 6360a23a..1f541c45 100644 --- a/translations/translations.js +++ b/translations/translations.js @@ -20,5 +20,6 @@ var translations = { "zh_cn" : "translations/zh_cn.json", // Simplified Chinese "zh_tw" : "translations/zh_tw.json", // Traditional Chinese "ja" : "translations/ja.json", // Japanese + "pl" : "translations/pl.json", // Polish };