Add Polish language support to resources

This commit is contained in:
milicevicivan 2026-02-05 18:55:20 +01:00 committed by GitHub
parent de5a17dd9f
commit eccb7b76d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 },
};