Register Czech (cs) locale in i18n config

This commit is contained in:
Martin Zapletal 2026-05-23 13:35:44 +02:00 committed by GitHub
parent d609e83313
commit edcae17b41
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,5 @@
import dayjs from "dayjs" import dayjs from "dayjs"
import "dayjs/locale/cs"
import "dayjs/locale/en" import "dayjs/locale/en"
import "dayjs/locale/pt-br" import "dayjs/locale/pt-br"
import "dayjs/locale/zh-cn" import "dayjs/locale/zh-cn"
@ -11,6 +12,7 @@ import { initReactI18next } from "react-i18next"
import en from "./locales/en.json" import en from "./locales/en.json"
import ptBr from "./locales/pt-br.json" import ptBr from "./locales/pt-br.json"
import zh from "./locales/zh.json" import zh from "./locales/zh.json"
import cs from "./locales/cs.json"
dayjs.extend(relativeTime) dayjs.extend(relativeTime)
dayjs.extend(localizedFormat) dayjs.extend(localizedFormat)
@ -34,6 +36,9 @@ i18n
zh: { zh: {
translation: zh, translation: zh,
}, },
cs: {
translation: cs,
},
}, },
fallbackLng: "en", fallbackLng: "en",
debug: false, debug: false,
@ -48,6 +53,8 @@ i18n.on("languageChanged", (lng) => {
dayjs.locale("zh-cn") dayjs.locale("zh-cn")
} else if (lng.startsWith("pt")) { } else if (lng.startsWith("pt")) {
dayjs.locale("pt-br") dayjs.locale("pt-br")
} else if (lng.startsWith("cs")) {
dayjs.locale("cs")
} else { } else {
dayjs.locale("en") dayjs.locale("en")
} }