diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-22 08:28:47 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-22 08:28:47 +0000 |
commit | 36d44fbfb07e4682f219368e1424c58fc61315a1 (patch) | |
tree | d6a5363c6ec34a5b81aac6fee283ee7479d45ea4 /modules/drupal/drupal.module | |
parent | c93c0fc7000f5cbb78ac2715ace58c28b789dc81 (diff) | |
download | brdo-36d44fbfb07e4682f219368e1424c58fc61315a1.tar.gz brdo-36d44fbfb07e4682f219368e1424c58fc61315a1.tar.bz2 |
#84146: Use 'Sentence capitalization' for menu items, page titles, form items, etc
Diffstat (limited to 'modules/drupal/drupal.module')
-rw-r--r-- | modules/drupal/drupal.module | 6 |
1 files changed, 3 insertions, 3 deletions
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 <a href="@url">administer » settings » site information</a> 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'), |