summaryrefslogtreecommitdiff
path: root/modules/node/node.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/node/node.module')
-rw-r--r--modules/node/node.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index 483b30a2b..de275af30 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -764,7 +764,7 @@ function node_perm() {
function node_search($op = 'search', $keys = NULL) {
switch ($op) {
case 'name':
- return t('content');
+ return t('Content');
case 'reset':
variable_del('node_cron_last');
@@ -1041,11 +1041,11 @@ function node_menu($may_cache) {
'access' => user_access('administer nodes')
);
- $items[] = array('path' => 'admin/content/node/overview', 'title' => t('list'),
+ $items[] = array('path' => 'admin/content/node/overview', 'title' => t('List'),
'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
if (module_exists('search')) {
- $items[] = array('path' => 'admin/content/search', 'title' => t('search posts'),
+ $items[] = array('path' => 'admin/content/search', 'title' => t('Search posts'),
'description' => t('Search posts by keyword.'),
'callback' => 'node_admin_search',
'access' => user_access('administer nodes'),