function _locale_batch_language_finished
Same name and namespace in other branches
- 7.x drupal-7.x/includes/locale.inc \_locale_batch_language_finished()
Finished callback of language addition locale import batch. Inform the user of translation files imported.
Related topics
1 string reference to '_locale_batch_language_finished'
- locale_languages_predefined_form_submit in drupal-6.x/
includes/ locale.inc - Process the language addition form submission.
Archivo
- drupal-6.x/
includes/ locale.inc, line 2650 - Administration functions for locale.module.
Código
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.'));
}
}