summaryrefslogtreecommitdiff
path: root/modules/translation
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2011-05-04 21:03:59 -0700
committerDries Buytaert <dries@buytaert.net>2011-05-04 21:03:59 -0700
commit25f8da3ff59287fbdc363d21277659ae48a95fbb (patch)
treea9271a8f3bd60497419a1828fae1be877b395239 /modules/translation
parentc7f534a77e40413bd7f27b05d7bddd27691a7e3b (diff)
downloadbrdo-25f8da3ff59287fbdc363d21277659ae48a95fbb.tar.gz
brdo-25f8da3ff59287fbdc363d21277659ae48a95fbb.tar.bz2
- Patch #1060304 by plach: misleading help text for the translation support settings.
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 9bb0b43bc..e0ee18ff7 100644
--- a/modules/translation/translation.module
+++ b/modules/translation/translation.module
@@ -113,7 +113,7 @@ function translation_form_node_type_form_alter(&$form, &$form_state) {
// Add translation option to content type form.
$form['workflow']['language_content_type']['#options'][TRANSLATION_ENABLED] = t('Enabled, with translation');
// Description based on text from locale.module.
- $form['workflow']['language_content_type']['#description'] = t('Enable multilingual support for this content type. If enabled, a language selection field will be added to the editing form, allowing you to select from one of the <a href="!languages">enabled languages</a>. You can also turn on translation for this content type, which lets you have content translated to any of the enabled languages. If disabled, new posts are saved with the default language. Existing content will not be affected by changing this option.', array('!languages' => url('admin/config/regional/language')));
+ $form['workflow']['language_content_type']['#description'] = t('Enable multilingual support for this content type. If enabled, a language selection field will be added to the editing form, allowing you to select from one of the <a href="!languages">enabled languages</a>. You can also turn on translation for this content type, which lets you have content translated to any of the installed languages. If disabled, new posts are saved with the default language. Existing content will not be affected by changing this option.', array('!languages' => url('admin/config/regional/language')));
}
/**