fix(i18n): quote <name> placeholder in OMNIROUTE_AUTO_SYNC_CLAUDE_PROFILES description (#12505) - #12769
Merged
diegosouzapw merged 1 commit intoSep 5, 2026
Conversation
…FILES description (diegosouzapw#12505) ICU MessageFormat parses literal '<name>' as the start of a plural/select placeholder in several locales (ar, ja, ko, zh, vi, ru). Since the rest of the sentence has no valid expression for the slot, the parser errors silently and the entire description renders as the English fallback. Apostrophe-escaping '<name>' tells ICU the angle-brackets are a literal string, not a placeholder. Now all 43 locale catalogs render the description correctly. Single-character-class fix. Fixes diegosouzapw#12505 (cherry picked from commit 1cd86f4)
diegosouzapw
force-pushed
the
pr/12505-icu-name-escape
branch
from
September 5, 2026 05:32
1cd86f4 to
d07863e
Compare
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
Fixes #12505
ICU MessageFormat parses literal
<name>as the start of a plural/select placeholder in several locales (ar, ja, ko, zh, vi, ru). Since the rest of the sentence has no valid expression for the slot, the parser errors silently and the entire description renders as the English fallback.Apostrophe-escaping
<name>tells ICU the angle-brackets are a literal string, not a placeholder. Now all 43 locale catalogs render the description correctly.Diff
Single-character-class fix, no schema/dependency/permission impact.
Fixes #12505