function locale_language_init

Implements hook_language_init().

File

drupal/core/modules/locale/locale.module, line 1060
Enables the translation of the user interface to languages other than English.

Code

function locale_language_init() {

  // Add locale helper to configuration subscribers.
  drupal_container()
    ->get('dispatcher')
    ->addSubscriber(new LocaleConfigSubscriber());
}