Locale guide
The Locale module provides a mechanism to build apps that adapt to users using different languages, timezones, currencies and other local unit standards.
Last updated
Was this helpful?
The Locale module provides a mechanism to build apps that adapt to users using different languages, timezones, currencies and other local unit standards.
Last updated
Was this helpful?
To allow your app to work with different languages and localization settings, you must at least set up the availableLocales
, defaultLocale
, canonicalLocale
and availableLanguages
in the config/Locale.config.php
file like this:
defaultLocale
The name of the locale to use as default.
canonicalLocale
The name of the locale to be considered the main locale of the app.
If your app supports multiple localized versions with different languages or localization configurations, you just add more locales to your Locale.config.php
file. Imagine we have a web site with a global version in english, and a local version for Spain:
Now, we can switch the working locale whenever we need, and Locale will act accordingly:
availableLocales
The different localizations your app will support. See the for an explanation of the available options.
availableLanguages
An array of the languages that will be available in the app, from the available constants.
If you don't setup your own availableLocales
, or if you don't create a configuration file at all, a default locale named main
will be used with the .
Once your availableLocales
are in place, you can choose the locale to use by calling the method. From that point on, all the texts, dates, timezones and other localized data will be retrieved using that locale's setup. For example:
See this example working in the site.