locale_system_update
modules/locale/locale.module, line 471
- Versions
- 6 – 7
locale_system_update($components)
Imports translations when new modules or themes are installed or enabled.
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.
Code
<?php
function locale_system_update($components) {
include_once 'includes/locale.inc';
if ($batch = locale_batch_by_component($components)) {
batch_set($batch);
}
}
?> 