Browse Source
Add Czech locale support to i18n configuration
pull/2487/head
Filip Richter
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
0 deletions
-
src/i18n/i18n.config.ts
|
|
|
@ -18,6 +18,7 @@ import nl from './locales/nl.json'; |
|
|
|
import nb from './locales/nb.json'; |
|
|
|
import bg from './locales/bg.json'; |
|
|
|
import gl from './locales/gl.json'; |
|
|
|
import cs from './locales/cs.json'; |
|
|
|
|
|
|
|
export default defineI18nConfig(() => ({ |
|
|
|
legacy: false, |
|
|
|
@ -43,5 +44,6 @@ export default defineI18nConfig(() => ({ |
|
|
|
nb, |
|
|
|
bg, |
|
|
|
gl, |
|
|
|
cs, |
|
|
|
}, |
|
|
|
})); |
|
|
|
|