Internationalization
Four project-specific i18n patterns — RTL flip, text overflow strategy, pluralization, and the lang attribute.
RTL — layout flips automatically
English (ltr)
Kim Park
#9 · captain
Arabic (rtl)
كيم بارك
#9 · القائد
Long-text overflow
Chips — ellipsis at 160px
Forward
Defender
Mittelfeldspieler
Aanvallende middenvelder
Body — wraps freely
Speeleranzahl ist begrenzt auf maximal 24 Spieler pro Kader; Ersatzspieler werden separat geführt.
Pluralization (0 / 1 / N)
Empty: No players in this squad — invite some.
One: 1 player on the bench.
Many: 7 players on the bench.
lang attribute
Set on <html> globally; override per section when content language differs. Browsers + screen readers use this for hyphenation, quotation marks, and pronunciation.
<html lang="en">
<blockquote lang="fr">
Le football est un jeu simple.
</blockquote>
</html>