Add french translation (#2945)

* Add french translation

* Remove outdated instruction

* Fix missing instructions
This commit is contained in:
nbxl21
2025-05-18 02:10:24 +02:00
committed by GitHub
parent 54b5a4ae55
commit 100695c262
8 changed files with 523 additions and 5 deletions

View File

@@ -27,6 +27,8 @@ export const I18N_PROVIDERS = [
return import('@taiga-ui/i18n/languages/polish')
case 'german':
return import('@taiga-ui/i18n/languages/german')
case 'french':
return import('@taiga-ui/i18n/languages/french')
default:
return import('@taiga-ui/i18n/languages/english')
}
@@ -41,6 +43,8 @@ export const I18N_PROVIDERS = [
return import('./dictionaries/pl').then(v => v.default)
case 'german':
return import('./dictionaries/de').then(v => v.default)
case 'french':
return import('./dictionaries/fr').then(v => v.default)
default:
return null
}