원클릭으로
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 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.
| 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.
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 where applicable.
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