A method that automatically serves a substitute language or region variant when a translation for the requested locale is missing.
When a user’s device or app requests content in a specific locale, such as Portuguese (Brazil), and that translation does not exist, locale fallback determines what gets shown instead. Without it, the interface could display raw string keys, empty fields, or crash entirely. With it, the app silently steps back to a defined alternative, like Portuguese (Portugal) or English, and keeps the experience intact.
The fallback chain is usually configured by the developer or localization manager and follows a logical hierarchy. A typical chain might go from a regional variant to its parent language, then to the project’s default language. For example, fr-CA (French Canada) falls back to fr (French), which then falls back to en (English).
Fallback logic becomes especially relevant during incremental releases, when some languages are partially translated. Instead of shipping broken UI, teams can define a safe fallback so untranslated strings default to a working language until translations are complete. It also protects against edge cases where a supported language has gaps due to new strings being added mid-cycle.
The behavior can vary depending on the i18n library in use. Some, like i18next or ICU-based systems, have built-in fallback support. Others require manual configuration at the app or platform level.
Be careful, some systems treat an empty string (“”) as a “translated” value. In those cases, the fallback won’t trigger because the system thinks the translation is intentionally blank. Good i18n management (like Localazy) usually filters these out.
These two concepts are related but distinct. The default language is the source of truth for all content, usually English. Fallback is what gets served when a specific locale is unavailable or incomplete. In practice, the default language often sits at the end of the fallback chain, but they serve different roles in the architecture.
pt-BR → pt → en)de → ['fr', 'en'])Localazy handles fallback by defaulting missing strings to the Source Language during the build or delivery process. Through the Language CDN, these fallback strings are served dynamically, so your UI remains functional even if a user’s primary locale is only partially translated.
By using Release Tags, you can safely ship partial translations to a staging environment for testing while keeping a stable, source-filled version live for end-users until the full translation is approved.
Learn more about managing fallback in the Localazy Download Reference.