Add new languages to resources (#650)

This commit is contained in:
schroda
2024-03-09 01:56:13 +01:00
committed by GitHub
parent f6f1993928
commit 5e6c1c1c1b
2 changed files with 11 additions and 1 deletions

View File

@@ -65,6 +65,12 @@ export const ISOLanguages = [
{ dayjsImport: () => import('dayjs/locale/bg.js'), code: 'bg', name: 'Bulgarian', nativeName: 'български' },
{ dayjsImport: () => import('dayjs/locale/cs.js'), code: 'cs', name: 'Czech', nativeName: 'čeština' },
{ dayjsImport: () => import('dayjs/locale/pl.js'), code: 'pl', name: 'Polish', nativeName: 'polski' },
{
dayjsImport: () => import('dayjs/locale/nb.js'),
code: 'nb',
name: 'Norwegian Bokmål',
nativeName: 'Norsk bokmål',
},
{ dayjsImport: () => import('dayjs/locale/nb.js'), code: 'no', name: 'Norwegian', nativeName: 'Norsk' },
{ dayjsImport: () => import('dayjs/locale/nl.js'), code: 'nl', name: 'Dutch', nativeName: 'Nederlands' },
{ dayjsImport: () => import('dayjs/locale/my.js'), code: 'my', name: 'Burmese', nativeName: 'ဗမာစာ' },