Added localization file nl-nl (#14597)

* Added localization file nl-nl

* Update i18nextUtil.ts
This commit is contained in:
Sander van Laar 2024-01-07 04:27:00 +01:00 committed by GitHub
parent a92fedf544
commit 07e9c1a55d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1729 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -21,6 +21,7 @@ import jaJP from '../../locale/languages/ja-jp.json';
import ptBR from '../../locale/languages/pt-br.json';
import ruRU from '../../locale/languages/ru-ru.json';
import zhCN from '../../locale/languages/zh-cn.json';
import nlNL from '../../locale/languages/nl-nl.json';
export enum SupportedLocales {
English = 'en-US',
@ -31,6 +32,7 @@ export enum SupportedLocales {
Español = 'es-ES',
Русский = 'ru-RU',
Deutsh = 'de-DE',
Nederlands = 'nl-NL',
}
export const languageSelectOptions = map(SupportedLocales, (value, key) => ({
@ -51,6 +53,7 @@ export const getInitOptions = (): InitOptions => {
'es-ES': { translation: esES },
'ru-RU': { translation: ruRU },
'de-DE': { translation: deDe },
'nl-NL': { translation: nlNL },
},
fallbackLng: ['en-US'],
detection: {