Localization
When To Use
Use this for localization work in this repository, especially hardcoded UI text in lib/, ARB updates, missing translations, or generated lib/l10n/ output that does not match source ARB values.
Do not use this for README translation sync or manual edits to generated localization Dart.
Workflow
Confirm
pubspec.yamlstill usesflutter_intl, source ARBs underarb/, and generated output underlib/l10n/.Scan user-facing Dart text before opening many files:
rg -n "[\\p{Han}]" lib -g '!lib/l10n/intl/**' -g '!lib/**/generated/**'Inspect the smallest relevant call sites and nearby ARB keys.
Add or update every source ARB:
arb/intl_en.arbarb/intl_zh_CN.arbarb/intl_ja.arbarb/intl_ru.arb
Replace inline strings with existing project accessors:
- Widgets with
BuildContext:context.appLocalizations.keyfromcommon.dart. - Controllers/providers/non-widget code:
currentAppLocalizations.keyfromapp_localizations.dart.
- Widgets with
Regenerate:
dart run intl_utils:generateVerify changed Dart files with
flutter analyzewhen practical.Re-run the Han-text scan for targeted strings.
Pitfalls
- If ja/ru still show English, fix ja/ru source ARB values and regenerate. Do not edit generated Dart.
- Ignore
lib/l10n/intl/**andlib/**/generated/**during text scans. - If generator or analyzer hits local cache permission friction, rerun serially before treating it as a code issue.