Build and maintain internationalized interfaces that feel native in every supported locale, not merely translated.
Localization is more than swapping strings. It is adapting layout, formatting, content, and interaction patterns so that users in every market experience the product as intentional, not as an afterthought.
Consult the language and locale selection reference when designing language selectors, country pickers, currency choosers, or regional-preference controls.
Consult the component accessibility reference when localizing custom components that must remain keyboard-navigable and screen-reader friendly across locales.
Consult the error-recovery reference when localizing validation messages, error states, and recovery flows.
Consult the date-input-ux and date-time-picker-ux references when adapting date, time, and calendar patterns to locale conventions.
MANDATORY PREPARATION
Read frontend-design and follow its Context Gathering Protocol. Reuse available context and ask only about consequential gaps. Additionally gather: which markets and languages are targeted now and next, whether the product is content-heavy or UI-heavy, and whether translation will be done in-house, by agency, or through a TMS.
Assess Localization Scope
Understand what must change and how deep the adaptation goes:
Content surface area:
- Static UI strings (labels, buttons, headings, empty states)
- Dynamic user-generated content (names, descriptions, comments)
- Marketing and legal copy (terms, privacy, compliance)
- Error messages and validation feedback
- Notifications, emails, and off-product messaging
Formatting and conventions:
- Date, time, and calendar formats (ISO vs localized display)
- Number formats (decimal separators, grouping, currency)
- Measurement units (metric vs imperial, currency symbols)
- Address and phone number formats
- Name ordering (given name first vs family name first)
- Sorting and collation rules
Layout and structural adaptation:
- Text expansion and contraction (German +30%, Japanese -10%)
- Right-to-left (RTL) script requirements
- Vertical text or mixed-script layouts
- Reading direction and scanning patterns
Content and legal differences:
- Region-specific features or catalog availability
- Legal requirements (GDPR, CCPA, local tax, age gates)
- Payment methods and currency support
- Cultural imagery, colors, and symbolism
Localization Architecture
String Management Strategy
Key-based extraction:
- Use descriptive, hierarchical keys:
checkout.shipping.title, errors.email.required
- Avoid English sentences as keys; they break when source copy changes
- Include context comments for translators:
// Used as button label on shipping form
- Namespace by feature or route to keep files manageable
Message format:
- Use ICU MessageFormat for interpolation, pluralization, and gender
- Avoid concatenating strings in code; translators need full sentences
// Good: complete sentence with interpolation
{count, plural, =0 {No items} one {# item} other {# items}} in your cart
// Bad: concatenated fragments
t('items_prefix') + count + t('items_suffix')
Source language discipline:
- Treat the source language (usually English) as the development contract
- Write source strings for translation: complete sentences, clear pronoun references, no idioms
- Review source copy for translatability before sending to translators
Locale Negotiation and Routing
URL strategy (choose one and commit):
- Subdirectories:
/en/products, /de/products — SEO-friendly, shareable, clear
- Subdomains:
en.example.com, de.example.com — clean separation, harder to maintain
- Query parameters:
?lang=de — simplest to implement, worst for SEO and sharing
Locale detection order:
- Explicit user preference (stored in account or cookie)
- URL path or subdomain
- Browser
Accept-Language header
- Geolocation (use as soft default only, never hard redirect)
Locale persistence:
- Store explicit choices in user profiles when authenticated
- Use cookies for anonymous visitors; respect them on return
- Never override an explicit choice with auto-detection
Library and Tool Selection
| Need |
Strong options |
When to use |
| React frameworks |
react-i18next, Lingui, FormatJS (react-intl) |
Component-level translations with hooks/context |
| Next.js |
next-intl, next-international, Lingui, FormatJS |
App Router-aware locale routing and server/client boundaries |
| Astro with React islands |
Astro i18n routing plus React i18n inside islands |
Static content stays Astro-native, interactive island copy stays React-compatible |
| Build-time extraction |
Lingui |
Smaller bundles, no runtime parsing |
| Runtime extraction |
i18next, react-i18next |
Dynamic loading, CMS-driven content |
| Translation management |
Phrase, Lokalise, Crowdin, Smartling |
Team collaboration, TMS workflows, in-context editing |
Pragmatic rules:
- Prefer one i18n library per project. Multiple libraries fragment key conventions and loading behavior.
- If the project is small and static, build-time extraction with JSON/PO files is enough.
- If translations change frequently or non-developers edit them, integrate a TMS early.
Implementation Dimensions
Text Expansion and Layout Resilience
Space budget:
- Add 30-40% horizontal space for German, Finnish, and other expansion-heavy languages
- Test shortest languages (Chinese, Japanese) for excessive whitespace or broken visual rhythm
- Use min/max widths, not fixed widths, on buttons, labels, and navigation items
Container behavior:
- Favor flexbox and grid that adapt to content length
- Allow text wrapping; do not force single-line layouts on labels
- Test truncation behavior when expansion exceeds available space
RTL and Bidirectional Text
Tailwind logical spacing and border utilities:
- Prefer logical utilities and direction-aware variants when available
- Use Tailwind arbitrary properties only when the project needs a logical property that is not already covered by its utilities
Direction-aware transforms:
[dir="rtl"] .arrow { transform: scaleX(-1); }
[dir="rtl"] .timeline { flex-direction: row-reverse; }
Mirroring considerations:
- Mirror navigation, breadcrumbs, and back buttons
- Do not mirror icons that represent physical objects (clocks, text cursors)
- Do mirror directional icons (arrows, chevrons, progress indicators)
- Test with native RTL speakers; mechanical mirroring often misses cultural patterns
Formatting and Data Display
Dates and times:
- Use
Intl.DateTimeFormat or library equivalents; never hardcode format strings
- Respect 12-hour vs 24-hour conventions per locale
- Consider calendar systems (Gregorian, Buddhist, Islamic) where relevant
Numbers and currency:
- Use
Intl.NumberFormat for grouping, decimals, and currency symbols
- Currency symbols can prefix or suffix depending on locale (
$1,234.56 vs 1.234,56 €)
- Display currency codes (USD, EUR) alongside symbols for clarity in multi-currency contexts
Pluralization, ordinals, and grammar:
- Use ICU MessageFormat plural rules; do not assume English
one/other
- Arabic has six plural forms; Polish has four; Welsh has six
- Handle gendered grammar and ordinals (1st, 2nd, 3rd) through message format, not code logic
Content Beyond Strings
Images and media:
- Replace text-in-images with live text whenever possible
- Maintain locale-specific image sets when visuals contain culturally specific content
- Use SVG for icons and diagrams; they scale and mirror more cleanly
URLs and SEO:
- Use
hreflang annotations to indicate language/region variants
- Include locale in canonical URLs
- Localize meta titles and descriptions, not just page content
- Avoid locale-inappropriate keywords in URL slugs
Legal and compliance content:
- Maintain region-specific legal copy (terms, privacy, cookie notices)
- Do not auto-translate legal text; use certified legal translators
- Keep compliance content versioned per jurisdiction
Translation Workflow
Developer handoff:
- Extract strings from code into translation files (JSON, PO, YAML)
- Add context comments and screenshot references for ambiguous strings
- Freeze source strings before sending to translation to prevent mid-translation churn
- Version translation files alongside code releases
Quality assurance:
- Review translations for truncation, overflow, and broken layout
- Verify that placeholders and HTML tags are preserved
- Check that gendered translations match the intended context
- Run pseudo-localization (accented expansion) before real translation to catch layout bugs early
Continuous localization:
- Integrate TMS with version control (GitHub/GitLab webhooks)
- Automate extraction on pull requests
- Set up translation memory to reduce cost and improve consistency
- Notify translators of new or changed keys promptly
Testing Localized UI
Layout testing:
- Test with longest and shortest supported languages
- Verify RTL layouts with native browser direction switching
- Check truncation, wrapping, and overflow at minimum and maximum viewport widths
Functional testing:
- Validate that interpolation variables populate correctly in all locales
- Confirm pluralization rules render correctly (0, 1, 2, 5, 11, 21 items)
- Test locale switching without full page reload where applicable
- Verify that persisted locale preferences survive logout and re-login
Content testing:
- Spot-check translations for accuracy and tone consistency
- Verify that legal and compliance copy matches the certified version
- Ensure that localized URLs and SEO metadata are present
Anti-Patterns
- Concatenate translated fragments: Translators need complete sentences.
t('you_have') + count + t('messages') breaks in most languages.
- Hardcode locale assumptions: Do not assume left-to-right, 12-hour time, MM/DD/YYYY, or English plural rules.
- Auto-translate UI without review: Machine translation for UI strings produces inconsistent terminology and broken grammar.
- Ignore text expansion: Fixed-width buttons and labels break in German and other expansion-heavy languages.
- Use flags for languages: A flag represents a country, not a language. Spanish has 20+ countries; English has dozens. Use language names or neutral icons.
- Redirect based on IP alone: Travelers, VPN users, and expats get trapped in wrong locales. Suggest, do not force.
- Skip pseudo-localization: Running pseudo-locale tests before real translation catches layout and truncation bugs when they are still cheap to fix.
- Store translations in version control without versioning: Translation files should be tagged and released alongside code so rollback is possible.
- Forget to localize error messages: Untranslated validation errors are a frequent source of user confusion and abandonment.
- Treat localization as a one-time project: Languages evolve, products add features, and markets change. Localization is continuous maintenance.
Verify Localization Readiness
Before shipping a localized product:
1---2name: localize-103description: Plan, implement, or improve an internationalization and localization strategy for UI content, formatting, and regional adaptation. Use when the user asks to add i18n, localize, translate, support multiple languages, handle regional formats, manage locale switching, or build a multilingual product.4---56Build and maintain internationalized interfaces that feel native in every supported locale, not merely translated.78Localization is more than swapping strings. It is adapting layout, formatting, content, and interaction patterns so that users in every market experience the product as intentional, not as an afterthought.910Consult the [language and locale selection](../frontend-design/reference/language-and-locale-selection.md) reference when designing language selectors, country pickers, currency choosers, or regional-preference controls.11Consult the [component accessibility](../frontend-design/reference/component-accessibility.md) reference when localizing custom components that must remain keyboard-navigable and screen-reader friendly across locales.12Consult the [error-recovery](../frontend-design/reference/error-recovery.md) reference when localizing validation messages, error states, and recovery flows.13Consult the [date-input-ux](../frontend-design/reference/date-input-ux.md) and [date-time-picker-ux](../frontend-design/reference/date-time-picker-ux.md) references when adapting date, time, and calendar patterns to locale conventions.1415## MANDATORY PREPARATION1617Read [frontend-design](../frontend-design/SKILL.md) and follow its Context Gathering Protocol. Reuse available context and ask only about consequential gaps. Additionally gather: which markets and languages are targeted now and next, whether the product is content-heavy or UI-heavy, and whether translation will be done in-house, by agency, or through a TMS.1819## Assess Localization Scope2021Understand what must change and how deep the adaptation goes:22231. **Content surface area**:24 - Static UI strings (labels, buttons, headings, empty states)25 - Dynamic user-generated content (names, descriptions, comments)26 - Marketing and legal copy (terms, privacy, compliance)27 - Error messages and validation feedback28 - Notifications, emails, and off-product messaging29302. **Formatting and conventions**:31 - Date, time, and calendar formats (ISO vs localized display)32 - Number formats (decimal separators, grouping, currency)33 - Measurement units (metric vs imperial, currency symbols)34 - Address and phone number formats35 - Name ordering (given name first vs family name first)36 - Sorting and collation rules37383. **Layout and structural adaptation**:39 - Text expansion and contraction (German +30%, Japanese -10%)40 - Right-to-left (RTL) script requirements41 - Vertical text or mixed-script layouts42 - Reading direction and scanning patterns43444. **Content and legal differences**:45 - Region-specific features or catalog availability46 - Legal requirements (GDPR, CCPA, local tax, age gates)47 - Payment methods and currency support48 - Cultural imagery, colors, and symbolism4950## Localization Architecture5152### String Management Strategy5354**Key-based extraction**:55- Use descriptive, hierarchical keys: `checkout.shipping.title`, `errors.email.required`56- Avoid English sentences as keys; they break when source copy changes57- Include context comments for translators: `// Used as button label on shipping form`58- Namespace by feature or route to keep files manageable5960**Message format**:61- Use ICU MessageFormat for interpolation, pluralization, and gender62- Avoid concatenating strings in code; translators need full sentences6364```icu65// Good: complete sentence with interpolation66{count, plural, =0 {No items} one {# item} other {# items}} in your cart6768// Bad: concatenated fragments69t('items_prefix') + count + t('items_suffix')70```7172**Source language discipline**:73- Treat the source language (usually English) as the development contract74- Write source strings for translation: complete sentences, clear pronoun references, no idioms75- Review source copy for translatability before sending to translators7677### Locale Negotiation and Routing7879**URL strategy** (choose one and commit):80- **Subdirectories**: `/en/products`, `/de/products` — SEO-friendly, shareable, clear81- **Subdomains**: `en.example.com`, `de.example.com` — clean separation, harder to maintain82- **Query parameters**: `?lang=de` — simplest to implement, worst for SEO and sharing8384**Locale detection order**:851. Explicit user preference (stored in account or cookie)862. URL path or subdomain873. Browser `Accept-Language` header884. Geolocation (use as soft default only, never hard redirect)8990**Locale persistence**:91- Store explicit choices in user profiles when authenticated92- Use cookies for anonymous visitors; respect them on return93- Never override an explicit choice with auto-detection9495### Library and Tool Selection9697| Need | Strong options | When to use |98|------|----------------|-------------|99| React frameworks | react-i18next, Lingui, FormatJS (react-intl) | Component-level translations with hooks/context |100| Next.js | next-intl, next-international, Lingui, FormatJS | App Router-aware locale routing and server/client boundaries |101| Astro with React islands | Astro i18n routing plus React i18n inside islands | Static content stays Astro-native, interactive island copy stays React-compatible |102| Build-time extraction | Lingui | Smaller bundles, no runtime parsing |103| Runtime extraction | i18next, react-i18next | Dynamic loading, CMS-driven content |104| Translation management | Phrase, Lokalise, Crowdin, Smartling | Team collaboration, TMS workflows, in-context editing |105106**Pragmatic rules**:107- Prefer one i18n library per project. Multiple libraries fragment key conventions and loading behavior.108- If the project is small and static, build-time extraction with JSON/PO files is enough.109- If translations change frequently or non-developers edit them, integrate a TMS early.110111## Implementation Dimensions112113### Text Expansion and Layout Resilience114115**Space budget**:116- Add 30-40% horizontal space for German, Finnish, and other expansion-heavy languages117- Test shortest languages (Chinese, Japanese) for excessive whitespace or broken visual rhythm118- Use min/max widths, not fixed widths, on buttons, labels, and navigation items119120**Container behavior**:121- Favor flexbox and grid that adapt to content length122- Allow text wrapping; do not force single-line layouts on labels123- Test truncation behavior when expansion exceeds available space124125### RTL and Bidirectional Text126127**Tailwind logical spacing and border utilities**:128- Prefer logical utilities and direction-aware variants when available129- Use Tailwind arbitrary properties only when the project needs a logical property that is not already covered by its utilities130131**Direction-aware transforms**:132```css133[dir="rtl"] .arrow { transform: scaleX(-1); }134[dir="rtl"] .timeline { flex-direction: row-reverse; }135```136137**Mirroring considerations**:138- Mirror navigation, breadcrumbs, and back buttons139- Do not mirror icons that represent physical objects (clocks, text cursors)140- Do mirror directional icons (arrows, chevrons, progress indicators)141- Test with native RTL speakers; mechanical mirroring often misses cultural patterns142143### Formatting and Data Display144145**Dates and times**:146- Use `Intl.DateTimeFormat` or library equivalents; never hardcode format strings147- Respect 12-hour vs 24-hour conventions per locale148- Consider calendar systems (Gregorian, Buddhist, Islamic) where relevant149150**Numbers and currency**:151- Use `Intl.NumberFormat` for grouping, decimals, and currency symbols152- Currency symbols can prefix or suffix depending on locale (`$1,234.56` vs `1.234,56 €`)153- Display currency codes (USD, EUR) alongside symbols for clarity in multi-currency contexts154155**Pluralization, ordinals, and grammar**:156- Use ICU MessageFormat plural rules; do not assume English `one/other`157- Arabic has six plural forms; Polish has four; Welsh has six158- Handle gendered grammar and ordinals (1st, 2nd, 3rd) through message format, not code logic159160### Content Beyond Strings161162**Images and media**:163- Replace text-in-images with live text whenever possible164- Maintain locale-specific image sets when visuals contain culturally specific content165- Use SVG for icons and diagrams; they scale and mirror more cleanly166167**URLs and SEO**:168- Use `hreflang` annotations to indicate language/region variants169- Include locale in canonical URLs170- Localize meta titles and descriptions, not just page content171- Avoid locale-inappropriate keywords in URL slugs172173**Legal and compliance content**:174- Maintain region-specific legal copy (terms, privacy, cookie notices)175- Do not auto-translate legal text; use certified legal translators176- Keep compliance content versioned per jurisdiction177178## Translation Workflow179180**Developer handoff**:1811. Extract strings from code into translation files (JSON, PO, YAML)1822. Add context comments and screenshot references for ambiguous strings1833. Freeze source strings before sending to translation to prevent mid-translation churn1844. Version translation files alongside code releases185186**Quality assurance**:187- Review translations for truncation, overflow, and broken layout188- Verify that placeholders and HTML tags are preserved189- Check that gendered translations match the intended context190- Run pseudo-localization (accented expansion) before real translation to catch layout bugs early191192**Continuous localization**:193- Integrate TMS with version control (GitHub/GitLab webhooks)194- Automate extraction on pull requests195- Set up translation memory to reduce cost and improve consistency196- Notify translators of new or changed keys promptly197198## Testing Localized UI199200**Layout testing**:201- Test with longest and shortest supported languages202- Verify RTL layouts with native browser direction switching203- Check truncation, wrapping, and overflow at minimum and maximum viewport widths204205**Functional testing**:206- Validate that interpolation variables populate correctly in all locales207- Confirm pluralization rules render correctly (0, 1, 2, 5, 11, 21 items)208- Test locale switching without full page reload where applicable209- Verify that persisted locale preferences survive logout and re-login210211**Content testing**:212- Spot-check translations for accuracy and tone consistency213- Verify that legal and compliance copy matches the certified version214- Ensure that localized URLs and SEO metadata are present215216## Anti-Patterns217218- **Concatenate translated fragments**: Translators need complete sentences. `t('you_have') + count + t('messages')` breaks in most languages.219- **Hardcode locale assumptions**: Do not assume left-to-right, 12-hour time, MM/DD/YYYY, or English plural rules.220- **Auto-translate UI without review**: Machine translation for UI strings produces inconsistent terminology and broken grammar.221- **Ignore text expansion**: Fixed-width buttons and labels break in German and other expansion-heavy languages.222- **Use flags for languages**: A flag represents a country, not a language. Spanish has 20+ countries; English has dozens. Use language names or neutral icons.223- **Redirect based on IP alone**: Travelers, VPN users, and expats get trapped in wrong locales. Suggest, do not force.224- **Skip pseudo-localization**: Running pseudo-locale tests before real translation catches layout and truncation bugs when they are still cheap to fix.225- **Store translations in version control without versioning**: Translation files should be tagged and released alongside code so rollback is possible.226- **Forget to localize error messages**: Untranslated validation errors are a frequent source of user confusion and abandonment.227- **Treat localization as a one-time project**: Languages evolve, products add features, and markets change. Localization is continuous maintenance.228229## Verify Localization Readiness230231Before shipping a localized product:232233- [ ] All user-facing strings are extracted and keyed, not hardcoded234- [ ] Source copy is reviewed for translatability (complete sentences, no idioms)235- [ ] Layouts are tested with longest and shortest target languages236- [ ] RTL scripts are supported with logical properties and directional testing237- [ ] Date, number, and currency formatting use locale-aware APIs238- [ ] Pluralization handles all target language plural forms correctly239- [ ] Locale switching preserves user context and state240- [ ] URLs include locale and use `hreflang` annotations241- [ ] Legal and compliance copy is region-specific and certified242- [ ] Translation workflow is documented and integrated with release cadence243- [ ] Pseudo-localization passes layout and truncation checks before real translation begins