feat: add Polish translation and update language options (#608)

This commit is contained in:
Ahmed Sbai
2025-03-16 17:57:39 +01:00
committed by GitHub
parent 54423a1267
commit 2688e1b981
2 changed files with 480 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import it from "./translations/it.json";
import ja from "./translations/ja.json";
import tr from "./translations/tr.json";
import nl from "./translations/nl.json";
import pl from "./translations/pl.json";
import sv from "./translations/sv.json";
import ua from "./translations/ua.json"
import zhCN from './translations/zh-CN.json';
@@ -24,6 +25,7 @@ export const APP_LANGUAGES = [
{ label: "日本語", value: "ja" },
{ label: "Türkçe", value: "tr" },
{ label: "Nederlands", value: "nl" },
{ label: 'Polski', value: 'pl' },
{ label: "Svenska", value: "sv" },
{ label: "Українська", value: "ua" },
{ label: "简体中文", value: "zh-CN" },
@@ -40,6 +42,7 @@ i18n.use(initReactI18next).init({
it: { translation: it },
ja: { translation: ja },
nl: { translation: nl },
pl: { translation: pl },
sv: { translation: sv },
tr: { translation: tr },
ua: { translation: ua },