- Notifications
You must be signed in to change notification settings - Fork4.1k
Add i18n support for German, Ukrainian, Russian, and Japanese languages#2547
Merged
danielaskdd merged 1 commit intoHKUDS:mainfromDec 28, 2025
Merged
Conversation
Add translation files and update i18n configuration to support de, uk, ru, and ja locales
Collaborator
danielaskdd commentedDec 28, 2025
@codex review |
Codex Review: Didn't find any major issues. Another round soon, please! ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
ad198cb intoHKUDS:main 3 checks passed
Uh oh!
There was an error while loading.Please reload this page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add i18n support for German, Ukrainian, Russian, and Japanese languages
Description
This PR adds internationalization (i18n) support for four additional languages:German (de),Ukrainian (uk),Russian (ru), andJapanese (ja). The changes include complete translation files for all UI components and updates to the i18n configuration to make these languages available in the language selector.
Related Issues
N/A - This is a feature addition to expand language support for the LightRAG WebUI interface.
Changes Made
Added four new translation files:
lightrag_webui/src/locales/de.json- Complete German translations (465 lines)lightrag_webui/src/locales/uk.json- Complete Ukrainian translations (465 lines)lightrag_webui/src/locales/ru.json- Complete Russian translations (465 lines)lightrag_webui/src/locales/ja.json- Complete Japanese translations (465 lines)Updated i18n configuration files:
lightrag_webui/src/i18n.ts- Added imports for new locale files and registered them in i18next resourceslightrag_webui/src/stores/settings.ts- Extended Language type union to include'de' | 'uk' | 'ru' | 'ja'lightrag_webui/src/components/AppSettings.tsx- Added language selector options with native language names (Deutsch, Українська, Русский, 日本語)All translation files follow the same structure as existing locales (en, zh, fr, ar, zh_TW) and provide complete translations for:
Checklist
Additional Notes