Configuration
Global Configuration
The module can be configured by adding a cbi18n
key in the moduleSettings
structure within the config/Coldbox.cfc
WARNING
When specifying resources in a MODULE, you should never specify a defaultResourceBundle
, because it will conflict with your main settings.
If you specify additional resourceBundles
it is wise to choose an aliasname
which will not conflict with other modules or your main settings
A resource bundle can be a .properties
file containing your translations (java resources) OR a .json
file. For instance, using the default settings above, you would need to create a includes/i18n/main_en_US.properties
file with your translations. If you want to use JSON files, you should use an includes/i18n/main_en_US.json
file.
ColdBox will auto-detect the extension of the resource bundle and deal with it appropriately. The supported extension types are:
.properties
- Java resource bundle.json
- JSON resource bundle (flat or nested)
Java Properties
JSON Flat
JSON Nested
Module Configuration
Every ColdBox module has the i18n capabilities available to them as well. They can use it to register their own resource bundles. The previous version allowed for a setting called i18n
this is now called cbi18n
to comply with the same global naming convention. Just update your key root in your Moduleconfig.cfc.
The keys in the resourceBundles
struct represents the bundle
that can be passed to getResource
or appended on the resource
string with an @
sign.
Configuration With No Resource Bundles
You can also use the config declaration for just tracking user locales and no resource bundles support
You eliminate the resource bundle element or leave it blank. The framework will not load the resource bundles.
IMPORTANT All language resource bundles are stored in the configuration structure of your application and are lazy loaded in. So if a language is not used, then it does not get loaded. This is separate from where the user's locale information is stored.
Last updated