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']