Issue #2111887 follow-up by ianthomas_uk: Fix broken HEAD.

8.0.x
webchick 2014-03-26 18:53:27 -07:00
parent 5a0edc309e
commit 51d5481ddd
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class NodeTranslationController extends ContentTranslationController {
if (isset($status_translatable)) {
foreach (array('publish', 'unpublish', 'submit') as $button) {
if (isset($form['actions'][$button])) {
$form['actions'][$button]['#value'] .= ' ' . ($status_translatable ? $this->t('(this translation)') : $this->t('(all translations)'));
$form['actions'][$button]['#value'] .= ' ' . ($status_translatable ? t('(this translation)') : t('(all translations)'));
}
}
}