diff options
Diffstat (limited to 'modules/locale')
-rw-r--r-- | modules/locale/locale.info | 4 | ||||
-rw-r--r-- | modules/locale/locale.module | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/modules/locale/locale.info b/modules/locale/locale.info new file mode 100644 index 000000000..56f4ab2c0 --- /dev/null +++ b/modules/locale/locale.info @@ -0,0 +1,4 @@ +; $Id$ +name = Locale +description = Enables the translation of the user interface to languages other than English. + diff --git a/modules/locale/locale.module b/modules/locale/locale.module index abe3db056..157551094 100644 --- a/modules/locale/locale.module +++ b/modules/locale/locale.module @@ -33,8 +33,6 @@ function locale_help($section) { ', array('@admin-locale' => url('admin/settings/locale'), '@admin-locale-string-search' => url('admin/settings/locale/string/search'), '@admin-locale-language-add' => url('admin/settings/locale/language/add'), '@external-http-drupal-org-project-Translations' => 'http://drupal.org/project/Translations')); $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>'; return $output; - case 'admin/settings/modules#description': - return t('Enables the translation of the user interface to languages other than English.'); case 'admin/settings/locale': case 'admin/settings/locale/language/overview': return t("<p>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.</p><p>Drupal interface translations may be added or extended by several courses: by <a href=\"@import\">importing</a> an existing translation, by <a href=\"@search\">translating everything</a> from scratch, or by a combination of these approaches.</p>", array("@search" => url("admin/settings/locale/string/search"), "@import" => url("admin/settings/locale/language/import"), "@add-language" => url("admin/settings/locale/language/add"))); |