Internationalization
Designing so the product can be adapted to other languages and regions without being rebuilt.
Definition
Internationalization is the preparation work that makes localisation possible: flexible layout, externalised strings, locale-aware formatting and correct bidirectional support. Localisation is the adaptation itself.
Craft convention. True because the industry converged on it. Breaking it costs familiarity, not correctness.
What breaks first
| Assumption | Reality |
|---|---|
| Text length is stable | German and Finnish commonly run 30 percent longer than English. Short UI labels can double. |
| Text runs left to right | Arabic, Hebrew, Persian and Urdu are right to left, and the whole layout mirrors. |
| Names have two parts | Name structure varies enormously. A single free text field is safer. |
| Dates are numeric | Order varies by locale. 03/04 is ambiguous worldwide. |
| Addresses have a fixed shape | Field order, presence and naming differ by country. |
| One space-separated word order | Concatenating translated fragments produces broken grammar. Use full sentences with placeholders. |
| Colour meanings are shared | Red and green carry different meanings in different markets. |
Design and build practices
- Design with the longest plausible translation, not the English string.
- Use logical CSS properties, such as margin-inline-start, so layouts mirror automatically under RTL.
- Never concatenate sentence fragments. Provide the full sentence with named placeholders.
- Use the platform's formatting APIs, such as Intl in JavaScript, for dates, numbers, currency and plurals.
- Support locale plural rules rather than a simple singular and plural pair.
- Give translators context: where the string appears and what it means.
- Test with pseudo-localisation, which expands strings and adds accents, before any real translation exists.
Sources
Where a source establishes something narrower than the popular reading of it, the note says so.
MDN Web Docs
Personal names around the world
W3C Internationalization
Continue from here
Each link says what the connection is, so you can tell a principle from an alternative from a thing people mix this up with.
Applies when you are designing
Principles behind this
The reasoning this solution is an application of.
- Match Between System and the Real WorldHeuristic
- Postel's LawLaw
- Natural MappingPrinciple
Short definition
The one-paragraph version, for when that is all you need.
Related concept
Connected closely enough to change how you apply this.
- UI to UX WritingAI workflow
- AvatarComponent
- Date PickerComponent
- Text InputComponent
- Activity TimelinesPattern
- AlignmentUI foundation
- Font SelectionUI foundation
- HueUI foundation
- ReadabilityUI foundation
- Spacing SystemsUI foundation
- Content DesignUX writing
- Inclusive LanguageUX writing
- Design HandoffWorkflow
- Prototyping FidelityWorkflow