fix(app): complete translation coverage - #40981
Merged
Merged
Conversation
Hona
enabled auto-merge (squash)
August 7, 2026 02:55
HQ123-BOOP
pushed a commit
to HQ123-BOOP/LibreCode
that referenced
this pull request
Aug 7, 2026
Co-authored-by: Hona <10430890+Hona@users.noreply.github.com>
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.
Summary
CIis sett/plural/ native-bundle APIsAudit evidence
The audit compared all app, UI, and desktop dictionaries against English on
devatb7f9363393c4and scanned production TS/TSX for user-visible literals.Before this change:
DialogUsageExceededrendered “Don't show again” directly in Englishtitlebar.update/titlebar.updateVersionvalues but still rendered a literalUpdatedescribe.skipIf(!!process.env.CI), allowing dictionary drift through CIAfter this change:
CI=trueTranslation method
Translations were researched in independent locale groups and reconciled against:
The English source remains unchanged except for the new key that captures the existing hardcoded “Don't show again” copy.
{{filename}}is preserved exactly in every locale. Arabic, Urdu, and Shahmukhi Punjabi wrap the interpolated filename with Unicode FSI/PDI isolates to keep unknown-direction filenames readable in RTL sentences.Locale coverage
Updated
ar,az,br(pt-BR),bs,da,de,es,fi,fr,hi,id,it,ja,ko,nl,no(nb-NO),pa(Shahmukhi Punjabi),pl,ru,sv,th,tr,uk,ur,vi,zh, andzht(Traditional Chinese/Taiwan).Checks
CI=true bun test ./src/i18n/parity.test.ts ./src/i18n/desktop-native.test.ts— 8 passed, 0 failed, 442 assertionsbun typecheckfrompackages/app— passedoxlint— 0 errors (existing warnings remain outside this change)git diff --check— passedRequested by: @Hona (Hona via Slack)