function lingotek_sync_download_target_finished in Lingotek Translation 7.7
Same name and namespace in other branches
- 7.4 lingotek.batch.inc \lingotek_sync_download_target_finished()
- 7.5 lingotek.batch.inc \lingotek_sync_download_target_finished()
- 7.6 lingotek.batch.inc \lingotek_sync_download_target_finished()
2 string references to 'lingotek_sync_download_target_finished'
File
- ./
lingotek.batch.inc, line 497 - Central location for batch create functions, before control is handed off to individual batch command files.
Code
function lingotek_sync_download_target_finished($success, $results, $operations) {
if ($success) {
$count = isset($results['downloads']) ? $results['downloads'] : 0;
$message = format_plural($count, 'One translation downloaded.', '@count translations downloaded.');
}
else {
$message = t('Finished with an error.');
}
drupal_set_message($message);
}