Runar Ingebrigtsen
6 months ago
No known key found for this signature in database
GPG Key ID: 1D0AEA139B8F3C07
2 changed files with
7 additions and
0 deletions
-
src/i18n/i18n.config.ts
-
src/nuxt.config.ts
|
|
|
@ -15,6 +15,7 @@ import tr from './locales/tr.json'; |
|
|
|
import bn from './locales/bn.json'; |
|
|
|
import id from './locales/id.json'; |
|
|
|
import nl from './locales/nl.json'; |
|
|
|
import nb from './locales/nb.json'; |
|
|
|
|
|
|
|
export default defineI18nConfig(() => ({ |
|
|
|
legacy: false, |
|
|
|
@ -37,5 +38,6 @@ export default defineI18nConfig(() => ({ |
|
|
|
bn, |
|
|
|
id, |
|
|
|
nl, |
|
|
|
nb, |
|
|
|
}, |
|
|
|
})); |
|
|
|
|
|
|
|
@ -114,6 +114,11 @@ export default defineNuxtConfig({ |
|
|
|
language: 'nl-NL', |
|
|
|
name: 'Nederlands', |
|
|
|
}, |
|
|
|
{ |
|
|
|
code: 'nb', |
|
|
|
language: 'nb-NO', |
|
|
|
name: 'Norsk bokmål', |
|
|
|
}, |
|
|
|
], |
|
|
|
defaultLocale: 'en', |
|
|
|
vueI18n: './i18n.config.ts', |
|
|
|
|