From 7d4f2836ba303c3ac2657eb019419c04471fb034 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 30 Apr 2007 17:03:29 +0000 Subject: - Patch #128082 by Goba et al: Allow localization of built-in menu items. --- modules/drupal/drupal.module | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'modules/drupal/drupal.module') 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, -- cgit v1.2.3