fix: sync locale resources and translations (1/3) - #6024
Merged
2dust merged 8 commits intoAug 6, 2026
Conversation
eliotcougar
marked this pull request as ready for review
August 5, 2026 13:39
Contributor
Author
|
I did multiple rounds of AI review runs and tried to fix as many awkward translations as possible. |
Owner
|
感谢 |
This was referenced Aug 8, 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.
Context
Partially fixes #6005.
This is part 1 of 3 extracted from the broader localization audit in #6021, following the request to split that PR into independently reviewable changes. This part is limited to synchronizing and correcting the Android resource files, completing their translations, and updating the few code references required by corrected resource identifiers or resource behavior.
What changed
Synchronize every maintained locale
Correct identifiers and references
title_pref_mux_concurencytotitle_pref_mux_concurrency.title_pref_mux_xudp_concurencytotitle_pref_mux_xudp_concurrency.connection_runing_task_lefttoconnection_running_task_left.toast_malformed_josntotoast_malformed_jsonand update its call site.toast_fragment_not_availableresource.remarkswhile preserving the literalproxy,direct, andblocktags.Improve translation accuracy
routeOnlybehavior.reject,allow,skip,leastLoad,mldsa65Verify,echConfigList, and other core terms semantically exact.URLandALPNcapitalization.Exclude fixed technical values from translation
TLS,ALPN,SNI,DNS,URL,Logcat,WebDAV,mldsa65Verify,echConfigList, and the raw routing keys.Why
Several locale files lacked identifiers that already existed in the English source, causing Android to fall back to another available resource. Other identifiers were misspelled differently between code and resources, and a few technical labels had drifted away from the Xray fields they describe. Keeping the files structurally identical makes missing resources and future drift visible during review, while the wording corrections ensure the localized UI still describes the code path that actually consumes each string.
Scope
This PR intentionally does not include the other two portions extracted from #6021:
Those changes will be submitted separately.
Validation
upstream/master; this branch is zero commits behind its base.strings.xmlfiles parse and contain exactly 399 named resources.translatableattributes across locales.git diff --checkfor the complete branch.:app:processPlaystoreDebugResourcespasses on the final resources.:app:compilePlaystoreDebugKotlinpasses with the matching upstream AndroidLib AAR.