summaryrefslogtreecommitdiff
path: root/modules/drupal/drupal.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-04-30 17:03:29 +0000
committerDries Buytaert <dries@buytaert.net>2007-04-30 17:03:29 +0000
commit7d4f2836ba303c3ac2657eb019419c04471fb034 (patch)
treed0e6024a791b6d00e16d60284de879d9deae7156 /modules/drupal/drupal.module
parentb93ce19a9c04870647eb4567b94d3a894ba280e7 (diff)
downloadbrdo-7d4f2836ba303c3ac2657eb019419c04471fb034.tar.gz
brdo-7d4f2836ba303c3ac2657eb019419c04471fb034.tar.bz2
- Patch #128082 by Goba et al: Allow localization of built-in menu items.
Diffstat (limited to 'modules/drupal/drupal.module')
-rw-r--r--modules/drupal/drupal.module10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module
index a75b48478..67d526d5e 100644
--- a/modules/drupal/drupal.module
+++ b/modules/drupal/drupal.module
@@ -349,22 +349,22 @@ function drupal_auth($username, $password, $server = FALSE) {
*/
function drupal_menu() {
$items['admin/settings/sites-registry'] = array(
- 'title' => t('Sites registry'),
- 'description' => t('Register with another Drupal site (drupal.org by default) for statistics sharing, or set up your server to be a central server for registrations.'),
+ 'title' => 'Sites registry',
+ 'description' => 'Register with another Drupal site (drupal.org by default) for statistics sharing, or set up your server to be a central server for registrations.',
'page callback' => 'drupal_get_form',
'page arguments' => array('drupal_sites_registry_settings'),
'access arguments' => array('administer site configuration'),
);
$items['admin/settings/distributed-authentication'] = array(
- 'title' => t('Distributed authentication'),
- 'description' => t('Allow your site to accept logins from other Drupal sites such as drupal.org.'),
+ 'title' => 'Distributed authentication',
+ 'description' => 'Allow your site to accept logins from other Drupal sites such as drupal.org.',
'page callback' => 'drupal_get_form',
'page arguments' => array('drupal_distributed_authentication_settings'),
'access arguments' => array('administer site configuration'),
);
if (variable_get('drupal_authentication_service', 0)) {
$items['drupal'] = array(
- 'title' => t('Drupal'),
+ 'title' => 'Drupal',
'page callback' => 'drupal_page_help',
'access callback' => TRUE,
'type' => MENU_SUGGESTED_ITEM,