Multilingual texts
Locale allows you to change the language of your app based on the selected locale.
Last updated
Was this helpful?
Locale allows you to change the language of your app based on the selected locale.
Last updated
Was this helpful?
To use the multilingual text features of the module, Cherrycake uses the cherrycake_locale_texts
and cherrycake_locale_textcategories
database tables with the following structure:
You can create this tables in your database by importing the
locale.sql
file you'll find in the , under theinstall/database
directory.
Optionally, texts in the database can be organized in categories, this might come in handy if you have lots of texts.
Add your text categories as rows to the cherrycake_locale_textcategories
table, here's the columns specification:
code
A unique identifier for the category, you'll be using it later to refer to this category in your code.
description
Describe the kind of texts you'll be storing in this category.
Add translated texts as rows to the cherrycake_locale_texts
table, with this column specification:
textCategories_id
The category id assigned in the cherrycake_locale_textcategories
table.
code
A unique identifier for the text, you'll be using it later to refer to this text in your code.
description
Describe this text, and the context where it will be used.
text_en
The text in english.
1
general
General texts used throughout the site.
And the cherrycake_locale_texts
tables like this:
1
1
test
The typical test text used as an example.
Hello world
Hola mundo
You would access the text like this:
To add new languages, just add new columns to the cherrycake_locale_texts table. The column name must follow the syntax text_<language code>
For example, to add a text field for spanish, add the a field named text_es
.
You can use simple variables in localized texts to help you build more complex sentences, like this:
1
newMessages
You have {numberOfMessages} new messages.
Tienes {numberOfMessages} mensajes nuevos.
To retrieve a text based on the current locale language, use the method. Imagine the cherrycake_locale_textcategories
like this:
See this example working in the site.
See this example working in the site.