function locale_translation_batch_fetch_finished

Batch finished callback: Set result message.

Parameters

boolean $success: TRUE if batch succesfully completed.

array: Batch results.

2 string references to 'locale_translation_batch_fetch_finished'
locale_translation_batch_fetch_build in drupal/core/modules/locale/locale.fetch.inc
Builds a batch to download and import project translations.
locale_translation_batch_update_build in drupal/core/modules/locale/locale.fetch.inc
Builds a batch to check, download and import project translations.

File

drupal/core/modules/locale/locale.batch.inc, line 429
Batch process to check the availability of remote or local po files.

Code

function locale_translation_batch_fetch_finished($success, $results) {
  module_load_include('bulk.inc', 'locale');
  return locale_translate_batch_finished($success, $results);
}