Issue #2250841 by andypost, thechanceg, Buratino42 | vijaycs85: Fixed Adding a inline template for content translation status.

8.0.x
webchick 2014-08-25 22:06:04 -07:00
parent 2b24e72116
commit a4b6e3b10f
1 changed files with 8 additions and 3 deletions

View File

@ -147,9 +147,14 @@ class ContentTranslationController extends ControllerBase {
$links['edit']['title'] = $this->t('Edit');
}
$translation = $entity->translation[$langcode];
$status = !empty($translation['status']) ? $this->t('Published') : $this->t('Not published');
// @todo Remove as part of https://drupal.org/node/2250841.
$status = '<span class="status">' . $status . '</span>' . (!empty($translation['outdated']) ? ' <span class="marker">' . $this->t('outdated') . '</span>' : '');
$status = array('data' => array(
'#type' => 'inline_template',
'#template' => '<span class="status">{% if status %}{{ "Published"|t }}{% else %}{{ "Not published"|t }}{% endif %}</span>{% if outdated %} <span class="marker">{{ "outdated"|t }}</span>{% endif %}',
'#context' => array(
'status' => $translation['status'],
'outdated' => $translation['outdated'],
),
));
if ($is_original) {
$language_name = $this->t('<strong>@language_name (Original language)</strong>', array('@language_name' => $language_name));