diff --git a/core/modules/content_translation/src/Controller/ContentTranslationController.php b/core/modules/content_translation/src/Controller/ContentTranslationController.php
index b956422b0931c3696fd2636b4383c291c713afbf..5f2c4602165f332460d69f052fb4850dabc9b512 100644
--- a/core/modules/content_translation/src/Controller/ContentTranslationController.php
+++ b/core/modules/content_translation/src/Controller/ContentTranslationController.php
@@ -147,9 +147,14 @@ public function overview(Request $request, $entity_type_id = NULL) {
             $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));