| Versionen | |
|---|---|
| drupal6 – drupal7 | _locale_batch_language_finished($success, $results) |
Finished callback of language addition locale import batch. Inform the user of translation files imported.
includes/
<?php
function _locale_batch_language_finished($success, $results) {
if ($success) {
drupal_set_message(format_plural(count($results), 'One translation file imported for the enabled modules.', '@count translation files imported for the enabled modules.'));
}
}
?>
Kommentare
Kommentar hinzufügen