ワンクリックで
add-language
Add or update localization strings. Use when adding new user-facing text, translations, or a new language to the app.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Add or update localization strings. Use when adding new user-facing text, translations, or a new language to the app.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Add a new API endpoint integration end-to-end — from endpoint definition through data source, model, repository, use case, and BLoC wiring. Use when connecting a new backend endpoint.
Scaffold a new Clean Architecture feature with all layers (domain, data, presentation), DI registration, routing, and translations. Use when creating a new feature module.
Add or update localization strings. Use when adding new user-facing text, translations, or a new language to the app.
Add a new API endpoint integration end-to-end — from endpoint definition through data source, model, repository, use case, and BLoC wiring. Use when connecting a new backend endpoint.
Scaffold a new Clean Architecture feature with all layers (domain, data, presentation), DI registration, routing, and translations. Use when creating a new feature module.
| name | add-language |
| description | Add or update localization strings. Use when adding new user-facing text, translations, or a new language to the app. |
Manage ARB-based internationalization for Family-Link (family_link).
Edit lib/l10n/arb/app_en.arb:
"featureTitle": "Feature Title",
"featureDescription": "Description text here"
Edit lib/l10n/arb/app_ar.arb:
"featureTitle": "عنوان الميزة",
"featureDescription": "نص الوصف هنا"
Run: flutter gen-l10n
Access via the context.l10n extension:
Text(context.l10n.featureTitle)
Reference tech_readme_files/2_development/LOCALIZATION_IMPLEMENTATION.md and TECH_README files under tech_readme_files/3_features/ for localization notes.
lib/l10n/arb/app_<locale>.arbapp_en.arb and translate valuesl10n.yaml if neededflutter gen-l10napp.dart to include new locale in supportedLocalesapp_en.arb and app_ar.arb)camelCase, descriptive, prefixed by feature when ambiguousflutter gen-l10n after every ARB change