[DOCS] Translations still encode the old settings.json precedence order (follow-up to #131)
Author: luongnv89Created May 31, 2026Updated May 31, 2026
Labelsbugdocumentation
Summary
PR #131 (Closes #130) corrected the settings.json precedence chain order in the English docs, but the same incorrect order still lives in the translated copies. After #131 merges, the English source and the translations will disagree on a factual point.
Correct order, per official docs and now the English files:
Managed → CLI args → Local → Project → User (lowest)
The translations still encode the old, wrong order where User sits above Project/Local.
Affected files
02-memory/README.md — five-level precedence table (rows 3/4/5)
| Lang | File | Current (wrong) | Should be |
|---|---|---|---|
| vi | vi/02-memory/README.md:313-315 |
3=user, 4=project, 5(lowest)=local | 3=local, 4=project, 5(lowest)=user |
| ja | ja/02-memory/README.md:305-307 |
3=user, 4=project, 5(lowest)=local | 3=local, 4=project, 5(lowest)=user |
| uk | uk/02-memory/README.md:304-306 |
3=user, 4=project, 5(lowest)=local | 3=local, 4=project, 5(lowest)=user |
| zh | zh/02-memory/README.md |
table absent — zh is an older/shorter version that lacks the five-level settings table and the v2.1.119 /config note entirely |
needs the full section ported |
02-memory/README.md — v2.1.119 /config persistence note
| Lang | File | Current (wrong) | Should be |
|---|---|---|---|
| ja | ja/02-memory/README.md:317 |
プロジェクト/ローカル/ポリシー (project/local/policy) |
ポリシー/ローカル/プロジェクト (policy/local/project) |
| vi / uk | — | note appears absent in these files | port the corrected note if/when the section is synced |
10-cli/README.md — v2.1.119 /config persistence note
| Lang | File | Current (wrong) | Should be |
|---|---|---|---|
| ja | ja/10-cli/README.md:252 |
(project → local → policy → user) |
(policy → local → project → user) |
| vi / uk / zh | — | /config persistence note appears absent |
port the corrected note if/when 10-cli is synced |
Acceptance criteria
-
ja,vi,uk02-memory/README.mdprecedence tables showlocal(3) → project(4) → user(5, lowest) -
ja/confignotes in both02-memory/README.mdand10-cli/README.mduse thepolicy → local → project → userphrasing -
zh/02-memory/README.mdsettings section is brought up to date with the English source (or tracked under the broader i18n-sync effort) - No other regressions vs. the current English source files
Context
- Source of truth: PR #131 / issue #130, verified against https://code.claude.com/docs/en/settings
- Related: #63 (i18n infrastructure)
- This is the kind of follow-up the existing translation-sync workflow handles (cf. #128, #124) — filing it so the precedence fix doesn't get lost.
Source: luongnv89/claude-howto