summaryrefslogtreecommitdiff
path: root/modules/translation
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-03-24 09:27:14 +0000
committerDries Buytaert <dries@buytaert.net>2010-03-24 09:27:14 +0000
commit8258959e940d8a73da69f7be7e517588f46531a5 (patch)
treee866a1d1f5f25938c80159ebd41834921d8cc5f2 /modules/translation
parent4f6dab5675b42d9f4ba4f0ad885423342cdce7b0 (diff)
downloadbrdo-8258959e940d8a73da69f7be7e517588f46531a5.tar.gz
brdo-8258959e940d8a73da69f7be7e517588f46531a5.tar.bz2
- Patch #588480 by aspilicious, droplet: fixed interface string space issues.
Diffstat (limited to 'modules/translation')
-rw-r--r--modules/translation/translation.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/translation/translation.module b/modules/translation/translation.module
index 436cdc2d9..c9f709b02 100644
--- a/modules/translation/translation.module
+++ b/modules/translation/translation.module
@@ -229,7 +229,7 @@ function translation_node_prepare($node) {
if (!empty($source_node->tnid)) {
$translations = translation_node_get_translations($source_node->tnid);
if (isset($translations[$_GET['language']])) {
- drupal_set_message(t('A translation of %title in %language already exists, a new %type will be created instead of a translation.', array('%title' => $source_node->title, '%language' => $language_list[$_GET['language']]->name, '%type' => $node->type)), 'error');
+ drupal_set_message(t('A translation of %title in %language already exists, a new %type will be created instead of a translation.', array('%title' => $source_node->title, '%language' => $language_list[$_GET['language']]->name, '%type' => $node->type)), 'error');
return;
}
}