summaryrefslogtreecommitdiff
path: root/modules/translation/translation.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-09-05 08:42:02 +0000
committerDries Buytaert <dries@buytaert.net>2007-09-05 08:42:02 +0000
commitab1715750a9aa2157cd117fa6b98399bb3bf6512 (patch)
treeb7287d0c047febac5de50db36868d06c5aee32d9 /modules/translation/translation.module
parentf655adcf9785376c760dea3ae681653e26ebf0fe (diff)
downloadbrdo-ab1715750a9aa2157cd117fa6b98399bb3bf6512.tar.gz
brdo-ab1715750a9aa2157cd117fa6b98399bb3bf6512.tar.bz2
- Patch #172961 by webernet: code style cleanup.
Diffstat (limited to 'modules/translation/translation.module')
-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;
}
/**