From 36d44fbfb07e4682f219368e1424c58fc61315a1 Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Sun, 22 Oct 2006 08:28:47 +0000 Subject: #84146: Use 'Sentence capitalization' for menu items, page titles, form items, etc --- modules/drupal/drupal.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/drupal') diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module index 64b788747..4f5921dd4 100644 --- a/modules/drupal/drupal.module +++ b/modules/drupal/drupal.module @@ -54,7 +54,7 @@ print drupal_client_page(); function drupal_sites_registry_settings() { // Check if all required fields are present - if ((variable_get('site_name', 'drupal') == 'drupal') || (variable_get('site_name', 'drupal') == '')) { + if ((variable_get('site_name', 'Drupal') == 'Drupal') || (variable_get('site_name', 'Drupal') == '')) { form_set_error('drupal_directory', t('You must set the name of your site on the administer » settings » site information page.', array('@url' => url('admin/settings/site-information')))); } else if (variable_get('site_mail', ini_get('sendmail_from')) == '') { @@ -346,13 +346,13 @@ function drupal_menu($may_cache) { $items = array(); if ($may_cache) { $items[] = array('path' => 'admin/settings/sites-registry', - 'title' => t('sites registry'), + '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.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('drupal_sites_registry_settings'), 'access' => user_access('administer site configuration')); $items[] = array('path' => 'admin/settings/distributed-authentication', - 'title' => t('distributed authentication'), + 'title' => t('Distributed authentication'), 'description' => t('Allow your site to accept logins from other Drupal sites such as drupal.org.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('drupal_distributed_authentication_settings'), -- cgit v1.2.3