From 2cc232588fff837239e784c7dc3a33a02d6fe34a Mon Sep 17 00:00:00 2001 From: Maya Date: Wed, 25 Mar 2026 12:45:19 +0300 Subject: [PATCH] feat: add norwegian, czech, polish languages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Kamiliusz Co-authored-by: TheFrostBunny Co-authored-by: Ömer Faruk Abidinoğlu <66040567+ofadev@users.noreply.github.com> Co-authored-by: wx --- project.inlang/settings.json | 6 +++--- src/lib/store/index.svelte.ts | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/project.inlang/settings.json b/project.inlang/settings.json index 24c5c70..da3aa28 100644 --- a/project.inlang/settings.json +++ b/project.inlang/settings.json @@ -2,7 +2,6 @@ "$schema": "https://inlang.com/schema/project-settings", "baseLocale": "en", "locales": [ - "cs", "en", "es", "fr", @@ -13,13 +12,14 @@ "tr", "ja", "ko", + "pl", + "cs", "no", "el", "id", "zh-Hans", "zh-Hant", - "pt-BR", - "pl" + "pt-BR" ], "modules": [ "https://cdn.jsdelivr.net/npm/@inlang/plugin-message-format@4/dist/index.js", diff --git a/src/lib/store/index.svelte.ts b/src/lib/store/index.svelte.ts index 4b2746b..55b40b5 100644 --- a/src/lib/store/index.svelte.ts +++ b/src/lib/store/index.svelte.ts @@ -514,7 +514,6 @@ export const effects = writable(true); export const theme = writable<"light" | "dark">("light"); export const locale = writable(getLocale()); export const availableLocales = { - cs: "Čeština", en: "English", es: "Español", fr: "Français", @@ -526,12 +525,13 @@ export const availableLocales = { tr: "Türkçe", ja: "日本語", ko: "한국어", + pl: "Polski", + cs: "Čeština", no: "Norsk", el: "Ελληνικά", "zh-Hans": "简体中文", "zh-Hant": "繁體中文", "pt-BR": "Português (Brasil)", - pl: "Polski", }; export function updateLocale(newLocale: string) {