A locale is a language the project supports. The locale catalog lives at the project level — it’s the list every region can pick from when declaring which languages to serve. A locale is identified by a short key (Documentation Index
Fetch the complete documentation index at: https://docs.frontic.com/llms.txt
Use this file to discover all available pages before exploring further.
en, de, fr-CA) used in API responses and translation lookups.
Translatable fields on Data Storages and Blocks store one value per locale. When a request resolves to a specific locale, the matching translation comes back; if the translation is missing, the region’s default locale applies as a fallback.
Configuring locales
Open Settings → Locales and add the languages your project supports. Each locale has:- Name — human-readable label like “English” or “German”.
- Key — the stable identifier (ISO 639-1 codes like
en,de, or BCP-47 tags likefr-CAwhen you need to distinguish regional variants). Set on creation and locked afterwards — translations are stored against the locale’s identity, so renaming would orphan them. To change a locale’s key, delete and re-add the locale.


Catalog vs. region support
The project locale catalog is the master list; regions pick a subset:- Add every language the project might ever serve to the catalog (e.g.
en,de,fr,es). - On each region, enable the locales that region supports and mark one as the default.
- A request bound to a region can only return translations for the locales that region allows.
When to add a new locale
Add a locale when you’re about to ship content in that language. Common triggers:- A new market opens that needs its own language (expanding into France → add
fr). - A regional variant diverges enough to need its own strings (
fr-CAfor Canadian French where the copy reads differently from mainland French). - Your translation team finishes a pass and you’re ready to activate that language on a region.
Related
Regions
Pick which of the catalog locales apply in each market, with a default per region.
Domains
Bind URL paths like
demo-shop.com/de to a specific locale at routing time.Multi-channel & region
The full commerce-native composition of scopes, regions, locales, and domains.