Add turkish to app languages

This commit is contained in:
Paul Frazee 2024-04-03 16:50:15 -07:00
parent a4d4562aba
commit 55e4ea84f8
5 changed files with 26 additions and 11 deletions

View file

@ -1,9 +1,9 @@
import {useEffect} from 'react'
import {i18n} from '@lingui/core'
import {useLanguagePrefs} from '#/state/preferences'
import {sanitizeAppLanguageSetting} from '#/locale/helpers'
import {AppLanguage} from '#/locale/languages'
import {useLanguagePrefs} from '#/state/preferences'
/**
* We do a dynamic import of just the catalog that we need
@ -68,6 +68,10 @@ export async function dynamicActivate(locale: AppLanguage) {
mod = await import(`./locales/it/messages`)
break
}
case AppLanguage.tr: {
mod = await import(`./locales/tr/messages`)
break
}
default: {
mod = await import(`./locales/en/messages`)
break