summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/translation/translation.pages.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/translation/translation.pages.inc b/modules/translation/translation.pages.inc
index 3bbedcfaf..095b581b5 100644
--- a/modules/translation/translation.pages.inc
+++ b/modules/translation/translation.pages.inc
@@ -40,7 +40,7 @@ function translation_node_overview($node) {
$status = $translation_node->status ? t('Published') : t('Not published');
$status .= $translation_node->translate ? ' - <span class="marker">' . t('outdated') . '</span>' : '';
if ($translation_node->nid == $tnid) {
- $language_name = '<strong>' . $language_name . '</strong> (source)';
+ $language_name = t('<strong>@language_name</strong> (source)', array('@language_name' => $language_name));
}
}
else {