Update supportedLanguages.ts

tr language support added
This commit is contained in:
memcos
2026-05-02 13:52:48 +03:00
committed by GitHub
parent a30a4c4868
commit ee158f3c53
+1
View File
@@ -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']