From eccb7b76d661b965bd1a14c8f1a3911a0010ba54 Mon Sep 17 00:00:00 2001 From: milicevicivan Date: Thu, 5 Feb 2026 18:55:20 +0100 Subject: [PATCH] Add Polish language support to resources --- src/i18n/resources.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/i18n/resources.ts b/src/i18n/resources.ts index 82aa6691..8dec2f8c 100644 --- a/src/i18n/resources.ts +++ b/src/i18n/resources.ts @@ -13,6 +13,7 @@ import zhCN from './locales/zh-CN.json'; import sr from './locales/sr.json'; import he from './locales/he.json'; import bg from './locales/bg.json'; +import pl from './locales/pl.json'; export const resources = { en: { translation: en }, @@ -28,5 +29,6 @@ export const resources = { hi: { translation: hi }, sr: { translation: sr }, he: { translation: he }, - bg: { translation: bg }, + bg: { translation: bg }, + pl: { translation: pl }, };