summaryrefslogtreecommitdiff
path: root/modules/translation/translation.module
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-18 16:27:44 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-18 16:27:44 +0000
commit4c990fb7cc7c1aa1d07d5106fe3c371a56818942 (patch)
tree912dcd94ce0c580aa8c13815ea01170211754c50 /modules/translation/translation.module
parente7fc2383df8922eef9edd7406370e57bc0808a8d (diff)
downloadbrdo-4c990fb7cc7c1aa1d07d5106fe3c371a56818942.tar.gz
brdo-4c990fb7cc7c1aa1d07d5106fe3c371a56818942.tar.bz2
#189880 by keith.smith based on initial suggestions from O Govinda: much better help texts and descriptions for locale module, actually explaining its extended feature set in Drupal 6.
Diffstat (limited to 'modules/translation/translation.module')
-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 9d7e701c6..a4c736de1 100644
--- a/modules/translation/translation.module
+++ b/modules/translation/translation.module
@@ -31,7 +31,7 @@ define ('TRANSLATION_ENABLED', 2);
function translation_help($path, $arg) {
switch ($path) {
case 'admin/help#translation':
- $output = '<p>'. t('The content translation module allows content to be translated into different languages. Working with the locale module (which manages enabled languages and provides translation for the site interface), the content translation module is key to creating and maintaining translated site content.') .'</p>';
+ $output = '<p>'. t('The content translation module allows content to be translated into different languages. Working with the <a href="@locale">locale module</a> (which manages enabled languages and provides translation for the site interface), the content translation module is key to creating and maintaining translated site content.', array('@locale' => url('admin/help/locale'))) .'</p>';
$output .= '<p>'. t('Configuring content translation and translation-enabled content types:') .'</p>';
$output .= '<ul><li>'. t('Assign the <em>translate content</em> permission to the appropriate user roles at the <a href="@permissions">Permissions configuration page</a>.', array('@permissions' => url('admin/user/permissions'))) .'</li>';
$output .= '<li>'. t('Add and enable desired languages at the <a href="@languages">Languages configuration page</a>.', array('@languages' => url('admin/settings/language'))) .'</li>';