function locale_system_update
Same name and namespace in other branches
- 6.x drupal-6.x/modules/locale/locale.module \locale_system_update()
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()
- locale_modules_installed in drupal-7.x/
modules/ locale/ locale.module - Implements hook_modules_installed().
- locale_themes_enabled in drupal-7.x/
modules/ locale/ locale.module - Implements hook_themes_enabled().
Archivo
- drupal-7.x/
modules/ locale/ locale.module, line 885 - Add language handling functionality and enables the translation of the user interface to languages other than English.
Código
function locale_system_update($components) {
include_once DRUPAL_ROOT . '/includes/locale.inc';
if ($batch = locale_batch_by_component($components)) {
batch_set($batch);
}
}