Skip to content
Snippets Groups Projects
Commit af1a0db7 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #312982 by hass: fix for one untranslatable string.

parent fb39167d
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment