summaryrefslogtreecommitdiff
path: root/modules/translation
diff options
context:
space:
mode:
Diffstat (limited to 'modules/translation')
-rw-r--r--modules/translation/translation.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/translation/translation.module b/modules/translation/translation.module
index a965b0cad..22b4690f9 100644
--- a/modules/translation/translation.module
+++ b/modules/translation/translation.module
@@ -199,7 +199,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 = '<strong>'. $language_name .'</strong> (source)';
}
}
else {
@@ -334,7 +334,7 @@ function translation_node_get_translations($tnid) {
* Boolean value.
*/
function translation_supported_type($type) {
- return variable_get('language_' . $type, 0) == TRANSLATION_ENABLED;
+ return variable_get('language_'. $type, 0) == TRANSLATION_ENABLED;
}
/**