Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
a50d47f9
Commit
a50d47f9
authored
Oct 04, 2010
by
Angie Byron
Browse files
#928790
by David_Rothstein: Make menu descriptions consistent.
parent
a1cbd755
Changes
4
Hide whitespace changes
Inline
Side-by-side
modules/comment/comment.module
View file @
a50d47f9
...
...
@@ -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().
...
...
modules/help/help.module
View file @
a50d47f9
...
...
@@ -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
,
...
...
modules/system/system.module
View file @
a50d47f9
...
...
@@ -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
,
...
...
modules/user/user.module
View file @
a50d47f9
...
...
@@ -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'
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment