From 830fc0977413a7476b91868d075dc41afee10a07 Mon Sep 17 00:00:00 2001 From: milicevicivan Date: Thu, 5 Feb 2026 19:49:23 +0100 Subject: [PATCH] Add Czech language support to resources --- src/i18n/resources.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/i18n/resources.ts b/src/i18n/resources.ts index 8dec2f8c..92372bb0 100644 --- a/src/i18n/resources.ts +++ b/src/i18n/resources.ts @@ -14,6 +14,7 @@ import sr from './locales/sr.json'; import he from './locales/he.json'; import bg from './locales/bg.json'; import pl from './locales/pl.json'; +import cs from './locales/cs.json'; export const resources = { en: { translation: en }, @@ -31,4 +32,5 @@ export const resources = { he: { translation: he }, bg: { translation: bg }, pl: { translation: pl }, + cs: { translation: cs }, };