From 89eb0d77965f442b113bb871493226ecc09e6a59 Mon Sep 17 00:00:00 2001 From: Ahmed Sbai <30757139+sbaiahmed1@users.noreply.github.com> Date: Wed, 5 Mar 2025 08:14:34 +0100 Subject: [PATCH] fix(https://github.com/streamyfin/streamyfin/issues/566): add Turkish (#583) --- i18n.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/i18n.ts b/i18n.ts index 973b1268..2480e384 100644 --- a/i18n.ts +++ b/i18n.ts @@ -7,6 +7,7 @@ import es from "./translations/es.json"; import fr from "./translations/fr.json"; 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 sv from "./translations/sv.json"; import zhCN from './translations/zh-CN.json'; @@ -20,6 +21,7 @@ export const APP_LANGUAGES = [ { label: "Français", value: "fr" }, { label: "Italiano", value: "it" }, { label: "日本語", value: "ja" }, + { label: "Türkçe", value: "tr" }, { label: "Nederlands", value: "nl" }, { label: "Svenska", value: "sv" }, { label: "简体中文", value: "zh-CN" }, @@ -37,6 +39,7 @@ i18n.use(initReactI18next).init({ ja: { translation: ja }, nl: { translation: nl }, sv: { translation: sv }, + tr: { translation: tr }, "zh-CN": { translation: zhCN }, "zh-TW": { translation: zhTW }, },