tessl install github:daymade/claude-code-skills --skill i18n-expertgithub.com/daymade/claude-code-skills
This skill should be used when setting up, auditing, or enforcing internationalization/localization in UI codebases (React/TS, i18next or similar, JSON locales), including installing/configuring the i18n framework, replacing hard-coded strings, ensuring en-US/zh-CN coverage, mapping error codes to localized messages, and validating key parity, pluralization, and formatting.
Review Score
87%
Validation Score
12/16
Implementation Score
77%
Activation Score
100%
Deliver a complete i18n setup + audit pass: configure the i18n framework, replace user-facing strings with keys, ensure locale parity, and validate pluralization/formatting for en-US and zh-CN.
python scripts/i18n_audit.py --src <src-root> --locale <path/to/en-US.json> --locale <path/to/zh-CN.json>t(var)).rg -n --glob '<src>/**/*.{ts,tsx,js,jsx}' "<[^>]+>[^<{]*[A-Za-z][^<{]*<"
rg -n --glob '<src>/**/*.{ts,tsx,js,jsx}' "aria-label=\"[^\"]+\"|title=\"[^\"]+\"|placeholder=\"[^\"]+\""t('namespace.key') for UI text.t('key', { count }) + _one/_other keys.python -m json.tool <file>).error.message to UI; show localized strings only.errors.*, buttons.*, workspace.*).common.buttons.save, pricing.tier.pro).{name}/{{name}} exactly; validate plurals by locale rules.scripts/i18n_audit.py: Extracts t('key') usage and compares against locale JSON files.