Translating configuration
The Configuration translation
module provides an interface for translating configurations with Interface translation and Language as dependencies. This module allows you to translate configuration entities. The ability to translate configuration entities adds an extra level of internationalization.
Interface translation allows you to translate strings provided in your Drupal site’s code base. Configuration translation allows you to translate importable and exportable configuration items that you have created, such as your site title or date formats.
In this recipe, we will translate date format configuration entities. We will provide localized date formats for Danish to provide a more internationalized experience.
Getting ready
Your Drupal site needs to have two languages enabled in order to use Configuration Translation. Install Danish from the Languages interface.
How to do it…
- Go to Extend and install the Configuration...