Multilingual texts
Locale allows you to change the language of your app based on the selected locale.
Last updated
Locale allows you to change the language of your app based on the selected locale.
To use the multilingual text features of the Locale 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.sqlfile you'll find in the Cherrycake skeleton repository, under theinstall/databasedirectory.
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.
To retrieve a text based on the current locale language, use the Locale::getText method. Imagine the cherrycake_locale_textcategories like this:
id
code
description
1
general
General texts used throughout the site.
And the cherrycake_locale_texts tables like this:
id
textCategories_id
code
description
text_en
text_es
1
1
test
The typical test text used as an example.
Hello world
Hola mundo
You would access the text like this:
See this example working in the Cherrycake documentation examples site.
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:
textCategories_id
code
text_en
text_es
1
newMessages
You have {numberOfMessages} new messages.
Tienes {numberOfMessages} mensajes nuevos.
See this example working in the Cherrycake documentation examples site.
Last updated
echo $e->Locale->getText("general/test");
$e->Locale->setLocale("spain");
echo $e->Locale->getText("general/test");Hello world
Hola mundoecho $e->Locale->getText("general/newMessages", [
"variables" => [
"numberOfMessages" => 5
]
]);You have 5 new messages.