From 8e860ec5a6d6b334b126ecfc4a48c79aed7f5d4c Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 24 Apr 2023 16:22:31 +0200 Subject: [PATCH] :tada: Add Indonesian lang to the supported languages --- CHANGES.md | 1 + frontend/gulpfile.js | 2 +- frontend/src/app/util/i18n.cljs | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index ea4ee017e7..850c51337a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,7 @@ - Fix page context menu [Taiga #5145](https://tree.taiga.io/project/penpot/issue/5145) - Fix project file count [Taiga #5148](https://tree.taiga.io/project/penpot/issue/5148) - Fix OIDC roles checking mechanism [GH #3152](https://github.com/penpot/penpot/issues/3152) +- Import updated translation strings from weblate ### :arrow_up: Deps updates diff --git a/frontend/gulpfile.js b/frontend/gulpfile.js index a445e1bf62..1326239c35 100644 --- a/frontend/gulpfile.js +++ b/frontend/gulpfile.js @@ -47,7 +47,7 @@ marked.use({renderer}); function readLocales() { const langs = ["ar", "ca", "de", "el", "en", "eu", "it", "es", - "fa", "fr", "he", "nb_NO", "pl", "pt_BR", "ro", + "fa", "fr", "he", "nb_NO", "pl", "pt_BR", "ro", "id", "ru", "tr", "zh_CN", "zh_Hant", "hr", "gl", "pt_PT", // this happens when file does not matches correct // iso code for the language. diff --git a/frontend/src/app/util/i18n.cljs b/frontend/src/app/util/i18n.cljs index 97bfedd937..47e9eb88b3 100644 --- a/frontend/src/app/util/i18n.cljs +++ b/frontend/src/app/util/i18n.cljs @@ -34,6 +34,7 @@ {:label "Polski (community)" :value "pl"} {:label "Portuguese - Brazil (community)" :value "pt_br"} {:label "Portuguese - Portugal (community)" :value "pt_pt"} + {:label "Bahasa Indonesia (community)" :value "id"} {:label "Rumanian (community)" :value "ro"} {:label "Türkçe (community)" :value "tr"} {:label "Ελληνική γλώσσα (community)" :value "el"}