Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use when reviewing a codebase for internationalisation readiness, setting up an i18n library, or preparing strings for a new locale.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-08 | ✗→✓ | ▲ Improved | 3% | 0% |
| case-13 | ✗→✓ | ▲ Improved | -19% | 0% |
| case-11 | ✓→✓ | = Same ✓ | 11% | 0% |
| case-01 | ✓→✓ | = Same ✓ | -31% | 0% |
| case-02 | ✓→✓ | = Same ✓ | -23% | 0% |
Naive string concatenation produces untranslatable sentences because word order varies dramatically across languages. A pattern like "Found " + count + " results" cannot be translated correctly into languages where the number appears in a different position or where the noun form changes depending on the count. Bad i18n strings force translators to work around developer mistakes — or simply leave content untranslated.
Check whether translation strings use proper message formatting with placeholders rather than string concatenation.
Replace concatenated translation strings with ICU message format patterns and ensure pluralisation is handled via the library, not conditionals.
Explain why string concatenation breaks translations and how ICU MessageFormat handles variable word order, pluralisation, and gender.
Review components and utility functions for hardcoded user-visible strings, string concatenation involving translated text, and missing plural forms.
For full implementation details, code examples, and framework-specific guidance, see references/rule.md.
Rule page: https://frontendchecklist.io/en/rules/javascript/translation-strings
Other measured skills in the registry, with their headline benchmark lift.