Add i18n support to profile page#29
Merged
YannickFuereder merged 3 commits intomainfrom Mar 11, 2026
Merged
Conversation
Co-authored-by: YannickFuereder <64203572+YannickFuereder@users.noreply.github.com>
…pe key Co-authored-by: YannickFuereder <64203572+YannickFuereder@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add translations to the profile page
Add i18n support to profile page
Mar 11, 2026
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 free
to 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.
The profile page had all UI strings hardcoded in English with no translation support, unlike the main page which already used i18next.
Changes
Bug fix —
localization.jsapplyLocalization()was concatenating translations onto existinginnerTextinstead of replacing it, causing doubled text on language switches:Translation keys —
en.json/de.jsonprofile_*) for all UI strings: navigation, section headings, buttons, input placeholders, status labels, empty states, and dynamic contentprofile/index.htmli18nattributes to all static text elements; cleared hardcoded text contenti18n-placeholderattributes to all inputs<span i18n="...">wrapper for "Back" text (SVG sibling prevents directinnerTextreplacement on parent<a>)i18nfrom the 2FA toggle button since its text is state-driven in JSprofile.js/settings/device.jsapplyLocalization(item)on dynamically cloned SSO template nodesi18next.t('profile_*')— passkeys, API keys, devices, trusted apps, SSO entries, 2FA status, and the double-click confirm buttonOriginal prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.