diff options
Diffstat (limited to 'modules/drupal')
-rw-r--r-- | modules/drupal/drupal.module | 10 |
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, |