Add Czech language support (#2487)

* Add Czech localization file for i18n

* Add Czech locale support to i18n configuration

* Add Czech language support to nuxt.config.ts

* Update Czech translation for 'hooks' key
This commit is contained in:
Filip Richter
2026-03-03 11:30:06 +01:00
committed by GitHub
parent 059a0ccffc
commit e5b2c3d10b
3 changed files with 294 additions and 0 deletions
+2
View File
@@ -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,
},
}));