From e66c357055b4195046a2a95203b6d5b102463e04 Mon Sep 17 00:00:00 2001 From: karol1985 Date: Tue, 21 Jan 2020 20:56:02 +0100 Subject: [PATCH] Polish locale (#263) * Polish localization * Polish locale * Update locales.js --- docs/timeline/index.html | 7 +++++++ lib/timeline/locales.js | 13 ++++++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/timeline/index.html b/docs/timeline/index.html index fa9e8a4d6f..990e69e6b7 100644 --- a/docs/timeline/index.html +++ b/docs/timeline/index.html @@ -2209,6 +2209,13 @@

Available locales

ru_RU + + Polish + + pl
+ pl_PL + + diff --git a/lib/timeline/locales.js b/lib/timeline/locales.js index 82119c9bc8..76bced31bf 100644 --- a/lib/timeline/locales.js +++ b/lib/timeline/locales.js @@ -75,6 +75,15 @@ const ru = { }; const ru_RU = ru; +// Polish +import 'moment/locale/pl'; +const pl = { + current: 'aktualny', + time: 'czas', + deleteSelected: 'UsuĊ„ wybrane', +}; +const pl_PL = pl; + // Japanese import 'moment/locale/ja'; const ja = { @@ -106,8 +115,10 @@ const locales = { uk_UA, ru, ru_RU, + pl, + pl_PL, ja, ja_JP, } -export default locales \ No newline at end of file +export default locales