Internationalization and localization ===================================== Easystart's default language is English, so all text will be in English by default. However, it also has a Spanish translation available since it's the second most spoken language. Don't worry if your preferred language is not available, we'll show you how to add a new language to the system. How to add a new language ------------------------- Backend ~~~~~~~ To practice, let's attempt to add the French language to the system. Firstly, we need to modify the ``settings.py`` file and add the new language to the configuration by updating the ``LANGUAGES`` list. .. code-block:: python LANGUAGES = [ ("fr", "French"), ("es", "Spanish"), ("en-us", "English"), ] To ensure the translation command detects an app's translation files, you need to make sure that the app is included in the ``JS_INFO_DICT`` dictionary. While all apps are included by default, if you want to add a new module, you'll need to add it yourself. You can find this variable in the ``settings.py`` file and it has a specific structure. .. code-block:: python JS_INFO_DICT = { "packages": ( "apps.core", "apps.accounts", "apps.two_factor_auth", "apps.management", "apps.audit", "apps.wallet", ) } Create a directory called ``fr/LC_MESSAGES`` in the ``locale`` folder of each application that doesn't already have one. .. code-block:: bash apps ├── accounts │ ├── locale │ ├── ├── fr/LC_MESSAGES After creating the ``fr/LC_MESSAGES`` directory, we need to create the ``djangojs.po`` file inside it. This file is where we will insert the translation pair from English text to French text. There are two ways to write the translation pair: 1. When the text is static and does not contain any variable attributes: .. code-block:: none msgid "Welcome" msgstr "Bienvenue" 2. When the text contains a value that may vary dynamically: .. code-block:: none msgid "Max. size %(size)s MB" msgstr "Taille maximale %(size)s Mb" In this case, the size will be passed as an argument and inserted into the text. .. admonition:: Note Please note that the text before the ``msgid`` key represents the original text and the ``msgstr`` represents the translated text. If you want to learn more about translation in Django, you can visit https://docs.djangoproject.com/en/4.1/topics/i18n/translation/ Frontend ~~~~~~~~ In the frontend, there are two global methods that can be used to get the translation of a key text (originally in English) based on the selected language. These methods are ``$_`` and ``$i_``. Let's take a look at how they work. To translate a text without a dynamic value, we use the ``$_`` method: .. code-block:: html
{{ $_("Welcome") }}
Bienvenue
{{ $i_($_('Max. size %(size)s MB'), {size: 8 }, true) }}
Taille maximale 8 Mb