translate
Installation
SKILL.md
Translate Skill
Manages translation files in apps/frontend/src/i18n/languages/.
Translation Files
- 15 languages: en (source), de, es, fr, hi, it, ja, ko, nl, pt, sv, tr, tw, vi, zh
- Format: flat JSON key-value pairs (keys = English phrases)
- Interpolation:
{{variableName}} - Library:
react-i18nextconfigured inapps/frontend/src/i18n/index.tsx - Language list defined in
apps/frontend/src/i18n/index.tsx(languagesarray)
When Adding New Translation Keys
- Add the new key to
en.jsonwith the English value - Add the same key to ALL other language files with the correct translation for the language of the file
- After adding to all files, sort ALL translation files alphabetically by key (case-insensitive)