File tree Expand file tree Collapse file tree 3 files changed +376
-3
lines changed Expand file tree Collapse file tree 3 files changed +376
-3
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ const LangMap: Record<keyof Resources, string> = {
2626 de : 'Deutsch' ,
2727 zh : '中文' ,
2828 es : 'Español' ,
29+ tr : 'Türkçe' ,
2930} ;
3031
3132const TranslationProgress = ( { lang } : { lang : string } ) => {
Original file line number Diff line number Diff line change @@ -19,8 +19,9 @@ import { initReactI18next } from 'react-i18next';
1919
2020import de_common from '@/locales/de/common.json' ;
2121import en_common from '@/locales/en/common.json' ;
22- import zh_common from '@/locales/zh/common.json' ;
23- import es_common from '@/locales/es/common.json' ;
22+ import es_common from '@/locales/es/common.json' ;
23+ import tr_common from '@/locales/tr/common.json' ;
24+ import zh_common from '@/locales/zh/common.json' ;
2425
2526export const resources = {
2627 en : {
@@ -33,7 +34,10 @@ export const resources = {
3334 common : zh_common ,
3435 } ,
3536 es : {
36- common : es_common ,
37+ common : es_common ,
38+ } ,
39+ tr : {
40+ common : tr_common ,
3741 } ,
3842} as const ;
3943
You can’t perform that action at this time.
0 commit comments