Fixes 21300: Add Turkish language (#21303)

* Create tr-tr.json

turkish language support json file

* turkish language support

---------

Co-authored-by: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com>
(cherry picked from commit ef9c2575e599b8ce380882f21f7a4e7633cfdb83)
This commit is contained in:
ozgunakalin 2025-05-21 07:26:41 +03:00 committed by shrushti2000
parent 2f6384ecd2
commit ff5d8ed16a
2 changed files with 2253 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -29,6 +29,7 @@ import ptPT from '../../locale/languages/pt-pt.json';
import ruRU from '../../locale/languages/ru-ru.json';
import thTH from '../../locale/languages/th-th.json';
import zhCN from '../../locale/languages/zh-cn.json';
import trTR from '../../locale/languages/tr-tr.json';
export enum SupportedLocales {
English = 'en-US',
@ -47,6 +48,7 @@ export enum SupportedLocales {
Persian = 'pr-PR',
Thai = 'th-TH',
= 'mr-IN',
Türkçe = 'tr-TR',
}
export const languageSelectOptions = map(SupportedLocales, (value, key) => ({
@ -75,6 +77,7 @@ export const getInitOptions = (): InitOptions => {
'pr-PR': { translation: prPR },
'th-TH': { translation: thTH },
'mr-IN': { translation: mrIN },
'tr-TR': { translation: trTR },
},
fallbackLng: ['en-US'],
detection: {