From ee158f3c53a36591f12e55dce522335d986f95ae Mon Sep 17 00:00:00 2001 From: memcos <61847929+memcos@users.noreply.github.com> Date: Sat, 2 May 2026 13:52:48 +0300 Subject: [PATCH] Update supportedLanguages.ts tr language support added --- client/src/i18n/supportedLanguages.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/i18n/supportedLanguages.ts b/client/src/i18n/supportedLanguages.ts index 458a9fff..0f3fe7f1 100644 --- a/client/src/i18n/supportedLanguages.ts +++ b/client/src/i18n/supportedLanguages.ts @@ -14,6 +14,7 @@ export const SUPPORTED_LANGUAGES = [ { value: 'it', label: 'Italiano', locale: 'it-IT' }, { value: 'ar', label: 'العربية', locale: 'ar-SA' }, { value: 'id', label: 'Bahasa Indonesia', locale: 'id-ID' }, + { value: 'tr', label: 'Turkish', locale: 'tr-TR' }, ] as const export type SupportedLanguageCode = typeof SUPPORTED_LANGUAGES[number]['value']