Aborts a translation job.
\Drupal\tmgmt\JobInterface $job: The job that should have its translation aborted.
bool TRUE if the job could be aborted, FALSE otherwise.
Overrides TranslatorPluginInterface::abortTranslation
public function abortTranslation(JobInterface $job) {
// Assume that we can abort a translation job at any time.
$job
->aborted();
return TRUE;
}