summaryrefslogtreecommitdiff
path: root/modules/locale
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-14 18:08:50 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-14 18:08:50 +0000
commitb6532a4fdbb5e32f2ab3bd7250aedd435313e52e (patch)
tree9859cf173b9c7bc75ddd1901fd77d05d9b3a28a1 /modules/locale
parent4f2b77bcd99584b2a31cb9900620f376a7707b2f (diff)
downloadbrdo-b6532a4fdbb5e32f2ab3bd7250aedd435313e52e.tar.gz
brdo-b6532a4fdbb5e32f2ab3bd7250aedd435313e52e.tar.bz2
#200069 by keith.smith: new standard for 'more information' links in module help texts, as the handbook we referred to before was renamed
Diffstat (limited to 'modules/locale')
-rw-r--r--modules/locale/locale.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/locale/locale.module b/modules/locale/locale.module
index d6a94a0d6..45d2a8ebf 100644
--- a/modules/locale/locale.module
+++ b/modules/locale/locale.module
@@ -35,7 +35,7 @@ function locale_help($path, $arg) {
$output = '<p>'. t('The locale module allows you to present your Drupal site in a language other than the default English. You can use it to set up a multi-lingual website or replace given <em>built-in</em> text with text which has been customized for your site. Whenever the locale module encounters text which needs to be displayed, it tries to translate it into the currently selected language. If a translation is not available, then the string is remembered, so you can look up untranslated strings easily.') .'</p>';
$output .= '<p>'. t('The locale module provides two options for providing translations. The first is the integrated web interface, via which you can search for untranslated strings, and specify their translations. An easier and less time-consuming method is to import existing translations for your language. These translations are available as <em>GNU gettext Portable Object files</em> (<em>.po</em> files for short). Translations for many languages are available for download from the translation page.') .'</p>';
$output .= '<p>'. t("If an existing translation does not meet your needs, the <em>.po</em> files are easily edited with special editing tools. The locale module's import feature allows you to add strings from such files into your site's database. The export functionality enables you to share your translations with others, generating Portable Object files from your site strings.") .'</p>';
- $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@locale">Locale page</a>.', array('@locale' => 'http://drupal.org/handbook/modules/locale/')) .'</p>';
+ $output .= '<p>'. t('For more information, see the online handbook entry for <a href="@locale">Locale module</a>.', array('@locale' => 'http://drupal.org/handbook/modules/locale/')) .'</p>';
return $output;
case 'admin/settings/language':
$output = '<p>'. t('Drupal provides support for the translation of its interface text into different languages. This page provides an overview of the installed languages. You can add a language on the <a href="@add-language">add language page</a>, or directly by <a href="@import">importing a translation</a>. If multiple languages are enabled, registered users will be able to set their preferred language. The site default will be used for anonymous visitors and for users without their own settings.', array('@add-language' => url('admin/settings/language/add'), '@import' => url('admin/build/translate/import'))) .'</p>';