| 124 | Internationalization of localflavor |
| 125 | =================================== |
| 126 | |
| 127 | Localflavor has its own catalog of translations, in the directory |
| 128 | ``django/contrib/localflavor/locale``, and it's not loaded automatically like |
| 129 | Django's general catalog in ``django/conf/locale``. If you want localflavor's |
| 130 | texts to be translated, like form fields error messages, you must include |
| 131 | :mod:`django.contrib.localflavor` in the :setting:`INSTALLED_APPS` setting, so |
| 132 | the internationalization system can find the catalog, as explained in |
| 133 | :ref:`using-translations-in-your-own-projects`. |
| 134 | |