From 396cda2fff8eab08e7f6dbb96a94e24c4d3486d3 Mon Sep 17 00:00:00 2001 From: Mord0reK <135718526+Mord0reK@users.noreply.github.com> Date: Wed, 10 Dec 2025 13:12:47 +0100 Subject: [PATCH] feat(i18n): add Polish language support (#14080) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's my first time making a pull request to any repo. If there are any issues, let me know. ## Summary Adds Polish language support. Translation is 98% complete (10,447/10,646 words). ## Changes - Added `pl` to Language type - Added Polish to SUPPORTED_LANGUAGES with lazy loading The `pl.json` file already exists in the repo with good translation coverage. Some AI-related strings are not yet translated but will fall back to English. ## Summary by CodeRabbit * **New Features** * Added Polish language support to the application, including localized language name, native language name, and flag emoji. ✏️ Tip: You can customize this high-level summary in your review settings. --- packages/frontend/i18n/src/resources/index.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/frontend/i18n/src/resources/index.ts b/packages/frontend/i18n/src/resources/index.ts index c3f0f2361..70b6b1fd1 100644 --- a/packages/frontend/i18n/src/resources/index.ts +++ b/packages/frontend/i18n/src/resources/index.ts @@ -8,6 +8,7 @@ export type Language = | 'es' | 'es-AR' | 'es-CL' + | 'pl' | 'de' | 'ru' | 'ja' @@ -89,6 +90,12 @@ export const SUPPORTED_LANGUAGES: Record< flagEmoji: '🇨🇱', resource: () => import('./es-CL.json'), }, + pl: { + name: 'Polish', + originalName: 'Polski', + flagEmoji: '🇵🇱', + resource: () => import('./pl.json'), + }, de: { name: 'German', originalName: 'Deutsch',