summaryrefslogtreecommitdiff
path: root/modules/legacy/legacy.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-10-22 08:28:47 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-10-22 08:28:47 +0000
commit36d44fbfb07e4682f219368e1424c58fc61315a1 (patch)
treed6a5363c6ec34a5b81aac6fee283ee7479d45ea4 /modules/legacy/legacy.module
parentc93c0fc7000f5cbb78ac2715ace58c28b789dc81 (diff)
downloadbrdo-36d44fbfb07e4682f219368e1424c58fc61315a1.tar.gz
brdo-36d44fbfb07e4682f219368e1424c58fc61315a1.tar.bz2
#84146: Use 'Sentence capitalization' for menu items, page titles, form items, etc
Diffstat (limited to 'modules/legacy/legacy.module')
-rw-r--r--modules/legacy/legacy.module12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/legacy/legacy.module b/modules/legacy/legacy.module
index 8fef686fb..9eb6da437 100644
--- a/modules/legacy/legacy.module
+++ b/modules/legacy/legacy.module
@@ -40,35 +40,35 @@ function legacy_menu($may_cache) {
if ($may_cache) {
// Map "taxonomy/page/or/52,97" to "taxonomy/term/52+97".
- $items[] = array('path' => 'taxonomy/page', 'title' => t('taxonomy'),
+ $items[] = array('path' => 'taxonomy/page', 'title' => t('Taxonomy'),
'callback' => 'legacy_taxonomy_page',
'access' => TRUE, 'type' => MENU_CALLBACK);
// Map "taxonomy/feed/or/52,97" to "taxonomy/term/52+97/0/feed".
- $items[] = array('path' => 'taxonomy/feed', 'title' => t('taxonomy'),
+ $items[] = array('path' => 'taxonomy/feed', 'title' => t('Taxonomy'),
'callback' => 'legacy_taxonomy_feed',
'access' => TRUE, 'type' => MENU_CALLBACK);
// Map "blog/feed/52" to "blog/52/feed".
- $items[] = array('path' => 'blog/feed', 'title' => t('blog'),
+ $items[] = array('path' => 'blog/feed', 'title' => t('Blog'),
'callback' => 'legacy_blog_feed',
'access' => TRUE, 'type' => MENU_CALLBACK);
}
else {
// Map "node/view/52" to "node/52".
- $items[] = array('path' => 'node/view', 'title' => t('view'),
+ $items[] = array('path' => 'node/view', 'title' => t('View'),
'callback' => 'drupal_goto',
'callback arguments' => array('node/'. arg(2), NULL, NULL),
'access' => TRUE, 'type' => MENU_CALLBACK);
// Map "book/view/52" to "node/52".
- $items[] = array('path' => 'book/view', 'title' => t('view'),
+ $items[] = array('path' => 'book/view', 'title' => t('View'),
'callback' => 'drupal_goto',
'callback arguments' => array('node/'. arg(2), NULL, NULL),
'access' => TRUE, 'type' => MENU_CALLBACK);
// Map "user/view/52" to "user/52".
- $items[] = array('path' => 'user/view', 'title' => t('view'),
+ $items[] = array('path' => 'user/view', 'title' => t('View'),
'callback' => 'drupal_goto',
'callback arguments' => array('user/'. arg(2), NULL, NULL),
'access' => TRUE, 'type' => MENU_CALLBACK);