Browse Source

Add Czech locale support to i18n configuration

pull/2487/head
Filip Richter 5 months ago
committed by GitHub
parent
commit
9d219543cf
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/i18n/i18n.config.ts

2
src/i18n/i18n.config.ts

@ -18,6 +18,7 @@ import nl from './locales/nl.json';
import nb from './locales/nb.json'; import nb from './locales/nb.json';
import bg from './locales/bg.json'; import bg from './locales/bg.json';
import gl from './locales/gl.json'; import gl from './locales/gl.json';
import cs from './locales/cs.json';
export default defineI18nConfig(() => ({ export default defineI18nConfig(() => ({
legacy: false, legacy: false,
@ -43,5 +44,6 @@ export default defineI18nConfig(() => ({
nb, nb,
bg, bg,
gl, gl,
cs,
}, },
})); }));

Loading…
Cancel
Save