locale_system_update

6 locale.module locale_system_update($components)
7 locale.module locale_system_update($components)
8 locale.module locale_system_update($components)

Imports translations when new modules or themes are installed.

This function will either import translation for the component change right away, or start a batch if more files need to be imported.

Parameters

$components: An array of component (theme and/or module) names to import translations for.

2 calls to locale_system_update()

File

modules/locale/locale.module, line 850
Add language handling functionality and enables the translation of the user interface to languages other than English.

Code

function locale_system_update($components) {
  include_once DRUPAL_ROOT . '/includes/locale.inc';
  if ($batch = locale_batch_by_component($components)) {
    batch_set($batch);
  }
}
Login or register to post comments