UX Localization and Internationalization 2 — Questions and Answers
Question 1: What is the recommended approach for displaying dates in a globally distributed product?
- Always use MM/DD/YYYY format because it is the most widely recognized
- Use locale-aware date formatting based on the user's regional settings (Correct answer)
- Spell out dates in full text (e.g., 'June 15, 2026') universally across all locales
- Display Unix timestamps to avoid regional formatting ambiguity
Correct answer: Use locale-aware date formatting based on the user's regional settings
Locale-aware date formatting (e.g., en-US shows 6/15/2026 while en-GB shows 15/06/2026) aligns with users' expectations and prevents misinterpretation of month and day values.
Question 2: How should a UX writer handle culturally specific sports metaphors—like 'home run' or 'out of bounds'—in content intended for international markets?
- Keep them because they are universally understood through global sports culture
- Translate them literally into each target language
- Replace them with culturally neutral alternatives that convey the same meaning (Correct answer)
- Add inline footnotes to explain the cultural context for non-US users
Correct answer: Replace them with culturally neutral alternatives that convey the same meaning
Culturally specific metaphors often lose meaning or create confusion in translation; replacing them with neutral equivalents ensures the intended message carries across all markets.
Question 3: What is 'translation memory' (TM) in the context of a UX writing and localization workflow?
- A cognitive technique UX writers use to remember approved copy during user testing
- A database that stores previously translated string segments and reuses them for consistency (Correct answer)
- A method for testing whether users recall key UI labels after using a product
- A UX writing principle about making microcopy memorable for users
Correct answer: A database that stores previously translated string segments and reuses them for consistency
Translation memory tools store approved translations so that identical or similar strings are automatically suggested on subsequent projects, improving consistency and reducing translation costs.
Question 4: What problem can arise when engineers concatenate multiple strings at runtime to form a single UI message?
- Increased file size and slower application load times
- Grammar errors because word order varies significantly between languages (Correct answer)
- Inconsistent font rendering across different operating systems
- Difficulty implementing A/B tests on the resulting message
Correct answer: Grammar errors because word order varies significantly between languages
Concatenating strings assumes a fixed word order (e.g., English subject-verb-object), but many languages place verbs, adjectives, or nouns in different positions, causing grammatically incorrect output when translated.
Question 5: In the context of UX writing, what does the term 'locale' most accurately refer to?
- The physical location of the product's hosting servers
- The geographic region where a software product is commercially deployed
- A combination of language and regional preferences, such as en-US versus en-GB (Correct answer)
- The cultural background and demographics of the core product team
Correct answer: A combination of language and regional preferences, such as en-US versus en-GB
A locale combines a language code and a region code (e.g., en-US, fr-CA, pt-BR) to define not just the language but also regional formatting conventions for dates, currency, and punctuation.
Question 6: When localizing UI text for right-to-left (RTL) languages such as Arabic or Hebrew, what special consideration should UX writers keep in mind?
- All text must be rendered in uppercase to improve readability in RTL layouts
- Directional references such as 'swipe right' or 'see the panel on the left' may need revision (Correct answer)
- Shorter strings are unnecessary because RTL languages are inherently more compact than English
- Punctuation rules are identical across RTL and LTR languages and require no changes
Correct answer: Directional references such as 'swipe right' or 'see the panel on the left' may need revision
In RTL interfaces the reading direction and physical layout are mirrored, so directional instructions referencing left, right, forward, or backward must be reviewed to remain accurate for RTL users.
Question 7: Which of the following is a best practice when writing UI strings intended for localization?
- Combining multiple related UI strings into one long string to reduce translator workload
- Setting aggressive character limits so translated strings never exceed the English source length
- Writing strings that are short, atomic, and reusable across similar contexts (Correct answer)
- Using passive voice constructions to make strings easier for translators to restructure
Correct answer: Writing strings that are short, atomic, and reusable across similar contexts
Short, self-contained strings are easier to translate accurately, allow translators to understand context without guessing, and can be reused across the product to maintain consistency.
What is the recommended approach for displaying dates in a globally distributed product?