summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-04 14:54:10 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-04 14:54:10 +0000
commita50d47f9591d240f212b66332e25d7f2ce50369d (patch)
tree89e269d0e24e950534109bf7fead9b4a2e82a2c2
parenta1cbd755458534fb2baf161307ca964ff17f22ca (diff)
downloadbrdo-a50d47f9591d240f212b66332e25d7f2ce50369d.tar.gz
brdo-a50d47f9591d240f212b66332e25d7f2ce50369d.tar.bz2
#928790 by David_Rothstein: Make menu descriptions consistent.
-rw-r--r--modules/comment/comment.module2
-rw-r--r--modules/help/help.module2
-rw-r--r--modules/system/system.module8
-rw-r--r--modules/user/user.module2
4 files changed, 7 insertions, 7 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index eb6d624dc..10df685fe 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -292,7 +292,7 @@ function comment_menu() {
*/
function comment_menu_alter(&$items) {
// Add comments to the description for admin/content.
- $items['admin/content']['description'] = "Administer content and comments";
+ $items['admin/content']['description'] = 'Administer content and comments.';
// Adjust the Field UI tabs on admin/structure/types/manage/[node-type].
// See comment_entity_info().
diff --git a/modules/help/help.module b/modules/help/help.module
index d6b06e888..73ebc9315 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -12,7 +12,7 @@
function help_menu() {
$items['admin/help'] = array(
'title' => 'Help',
- 'description' => 'Reference for usage, configuration, and modules',
+ 'description' => 'Reference for usage, configuration, and modules.',
'page callback' => 'help_main',
'access arguments' => array('access administration pages'),
'weight' => 9,
diff --git a/modules/system/system.module b/modules/system/system.module
index 815383bcb..44e97e9d4 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -569,7 +569,7 @@ function system_menu() {
// Appearance.
$items['admin/appearance'] = array(
'title' => 'Appearance',
- 'description' => 'Select and configure your themes',
+ 'description' => 'Select and configure your themes.',
'page callback' => 'system_themes_page',
'access arguments' => array('administer themes'),
'position' => 'left',
@@ -635,7 +635,7 @@ function system_menu() {
// Modules.
$items['admin/modules'] = array(
'title' => 'Modules',
- 'description' => 'Enable or disable modules',
+ 'description' => 'Enable or disable modules.',
'page callback' => 'drupal_get_form',
'page arguments' => array('system_modules'),
'access arguments' => array('administer modules'),
@@ -669,7 +669,7 @@ function system_menu() {
// Configuration.
$items['admin/config'] = array(
'title' => 'Configuration',
- 'description' => 'Administer settings',
+ 'description' => 'Administer settings.',
'page callback' => 'system_admin_config_page',
'access arguments' => array('access administration pages'),
'file' => 'system.admin.inc',
@@ -1003,7 +1003,7 @@ function system_menu() {
// Reports.
$items['admin/reports'] = array(
'title' => 'Reports',
- 'description' => 'View reports, updates, and errors',
+ 'description' => 'View reports, updates, and errors.',
'page callback' => 'system_admin_menu_block_page',
'access arguments' => array('access site reports'),
'weight' => 5,
diff --git a/modules/user/user.module b/modules/user/user.module
index e5b9fa26f..941c56c8e 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -1574,7 +1574,7 @@ function user_menu() {
// User listing pages.
$items['admin/people'] = array(
'title' => 'People',
- 'description' => 'Manage user accounts, roles, and permissions',
+ 'description' => 'Manage user accounts, roles, and permissions.',
'page callback' => 'user_admin',
'page arguments' => array('list'),
'access arguments' => array('administer users'),