? INSTALL_5.txt ? admin-theme_5.patch ? admin_theme_default.patch ? administration.patch ? big_validate_submit.patch ? big_validate_submit_0.patch ? capitalize.patch ? categorise_tracker_0.patch ? categorise_tracker_1.patch ? comment-new.patch ? comment_validate_submit.patch ? contact_13.patch ? contact_validate_submit.patch ? default-date-format.patch ? dependencies.patch ? dependencies_2.patch ? fix_signatures_5.patch ? form.inc.patch ? forum_22.patch ? help_message.patch ? jquery_changelog.txt ? node_validate_submit.patch ? path_validate_submit.patch ? required.patch ? search_validate_submit.patch ? system_validate_submit.patch ? taxonomy.module.diff.txt ? tracker_restrict_by_type.patch ? tracker_restrict_by_type_1.patch ? tracker_restrict_by_type_2.patch ? update_php-no_bogus_warning.patch.txt ? user.patch ? user_66.patch ? user_access_1.patch ? user_validate_submit.patch ? watchdog_validate_submit.patch ? sites/localhost Index: modules/node/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.module,v retrieving revision 1.700 diff -u -p -r1.700 node.module --- modules/node/node.module 8 Sep 2006 16:33:02 -0000 1.700 +++ modules/node/node.module 14 Sep 2006 16:15:17 -0000 @@ -71,7 +71,7 @@ function node_cron() { */ function node_title_list($result, $title = NULL) { while ($node = db_fetch_object($result)) { - $items[] = l($node->title, 'node/'. $node->nid, $node->comment_count ? array('title' => format_plural($node->comment_count, '1 comment', '@count comments')) : ''); + $items[] = l($node->title, 'node/'. $node->nid, $node->comment_count ? array('title' => format_plural($node->comment_count, '1 Comment', '@count Comments')) : ''); } return theme('node_list', $items, $title); @@ -970,7 +970,7 @@ function node_link($type, $node = NULL, if ($type == 'node') { if ($teaser == 1 && $node->teaser && $node->readmore) { $links['node_read_more'] = array( - 'title' => t('read more'), + 'title' => t('Read More'), 'href' => "node/$node->nid", 'attributes' => array('title' => t('Read the rest of this posting.')) ); @@ -987,7 +987,7 @@ function node_menu($may_cache) { $items = array(); if ($may_cache) { $items[] = array('path' => 'admin/content', - 'title' => t('content management'), + 'title' => t('Content Management'), 'description' => t('Manage your site\'s content.'), 'position' => 'left', 'weight' => -10, @@ -997,17 +997,17 @@ function node_menu($may_cache) { $items[] = array( 'path' => 'admin/content/node', - 'title' => t('posts'), + 'title' => t('Posts'), 'description' => t('View, edit, and delete your site\'s content.'), 'callback' => 'node_admin_content', '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'), @@ -1016,7 +1016,7 @@ function node_menu($may_cache) { $items[] = array( 'path' => 'admin/content/node-settings', - 'title' => t('post settings'), + 'title' => t('Post Settings'), 'description' => t('Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('node_configure'), @@ -1025,36 +1025,36 @@ function node_menu($may_cache) { $items[] = array( 'path' => 'admin/content/types', - 'title' => t('content types'), + 'title' => t('Content Types'), 'description' => t('Manage posts by content type, including default status, front page promotion, etc.'), 'callback' => 'node_overview_types', 'access' => user_access('administer nodes'), ); $items[] = array( 'path' => 'admin/content/types/list', - 'title' => t('list'), + 'title' => t('List'), 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); $items[] = array( 'path' => 'admin/content/types/add', - 'title' => t('add content type'), + 'title' => t('Add Content Type'), 'callback' => 'drupal_get_form', 'callback arguments' => array('node_type_form'), 'type' => MENU_LOCAL_TASK, ); $items[] = array('path' => 'node', - 'title' => t('content'), + 'title' => t('Content'), 'callback' => 'node_page_default', 'access' => user_access('access content'), 'type' => MENU_MODIFIABLE_BY_ADMIN); $items[] = array('path' => 'node/add', - 'title' => t('create content'), + 'title' => t('Create Content'), 'callback' => 'node_add', 'access' => user_access('access content'), 'type' => MENU_ITEM_GROUPING, 'weight' => 1); - $items[] = array('path' => 'rss.xml', 'title' => t('rss feed'), + $items[] = array('path' => 'rss.xml', 'title' => t('RSS Feed'), 'callback' => 'node_feed', 'access' => user_access('access content'), 'type' => MENU_CALLBACK); @@ -1079,28 +1079,28 @@ function node_menu($may_cache) { if (arg(0) == 'node' && is_numeric(arg(1))) { $node = node_load(arg(1)); if ($node->nid) { - $items[] = array('path' => 'node/'. arg(1), 'title' => t('view'), + $items[] = array('path' => 'node/'. arg(1), 'title' => t('View'), 'callback' => 'node_page_view', 'callback arguments' => array($node), 'access' => node_access('view', $node), 'type' => MENU_CALLBACK); - $items[] = array('path' => 'node/'. arg(1) .'/view', 'title' => t('view'), + $items[] = array('path' => 'node/'. arg(1) .'/view', 'title' => t('View'), 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10); - $items[] = array('path' => 'node/'. arg(1) .'/edit', 'title' => t('edit'), + $items[] = array('path' => 'node/'. arg(1) .'/edit', 'title' => t('Edit'), 'callback' => 'node_page_edit', 'callback arguments' => array($node), 'access' => node_access('update', $node), 'weight' => 1, 'type' => MENU_LOCAL_TASK); - $items[] = array('path' => 'node/'. arg(1) .'/delete', 'title' => t('delete'), + $items[] = array('path' => 'node/'. arg(1) .'/delete', 'title' => t('Delete'), 'callback' => 'drupal_get_form', 'callback arguments' => array('node_delete_confirm'), 'access' => node_access('delete', $node), 'weight' => 1, 'type' => MENU_CALLBACK); $revisions_access = ((user_access('view revisions') || user_access('administer nodes')) && node_access('view', $node) && db_result(db_query('SELECT COUNT(vid) FROM {node_revisions} WHERE nid = %d', arg(1))) > 1); - $items[] = array('path' => 'node/'. arg(1) .'/revisions', 'title' => t('revisions'), + $items[] = array('path' => 'node/'. arg(1) .'/revisions', 'title' => t('Revisions'), 'callback' => 'node_revisions', 'access' => $revisions_access, 'weight' => 2, @@ -1130,7 +1130,7 @@ function node_menu($may_cache) { ); $items[] = array( 'path' => 'admin/content/types/'. $type_url_str .'/delete', - 'title' => t('delete'), + 'title' => t('Delete'), 'callback' => 'drupal_get_form', 'callback arguments' => array('node_type_delete_confirm', $type), 'type' => MENU_CALLBACK, @@ -1141,7 +1141,7 @@ function node_menu($may_cache) { // There is no need to rebuild node_access if there is only 1 record in the table (the default configuration). if (db_result(db_query('SELECT COUNT(*) FROM {node_access}')) > 1) { - $items[] = array('path' => 'admin/settings/node-access', 'title' => t('node access'), + $items[] = array('path' => 'admin/settings/node-access', 'title' => t('Node Access'), 'callback' => 'node_access_rebuild', 'access' => user_access('administer nodes')); } @@ -1227,14 +1227,14 @@ function node_operations_unpublish($node */ function node_filters() { // Regular filters - $filters['status'] = array('title' => t('status'), + $filters['status'] = array('title' => t('Status'), 'options' => array('status-1' => t('published'), 'status-0' => t('not published'), 'promote-1' => t('promoted'), 'promote-0' => t('not promoted'), 'sticky-1' => t('sticky'), 'sticky-0' => t('not sticky'))); - $filters['type'] = array('title' => t('type'), 'options' => node_get_types('names')); + $filters['type'] = array('title' => t('Type'), 'options' => node_get_types('names')); // The taxonomy filter if ($taxonomy = module_invoke('taxonomy', 'form_all', 1)) { - $filters['category'] = array('title' => t('category'), 'options' => $taxonomy); + $filters['category'] = array('title' => t('Category'), 'options' => $taxonomy); } return $filters; Index: modules/system/system.module =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.module,v retrieving revision 1.369 diff -u -p -r1.369 system.module --- modules/system/system.module 8 Sep 2006 23:13:00 -0000 1.369 +++ modules/system/system.module 14 Sep 2006 16:15:18 -0000 @@ -96,18 +96,18 @@ function system_menu($may_cache) { $items = array(); if ($may_cache) { - $items[] = array('path' => 'system/files', 'title' => t('file download'), + $items[] = array('path' => 'system/files', 'title' => t('File Download'), 'callback' => 'file_download', 'access' => TRUE, 'type' => MENU_CALLBACK); $access = user_access('administer site configuration'); - $items[] = array('path' => 'admin', 'title' => t('administer'), + $items[] = array('path' => 'admin', 'title' => t('Administer'), 'access' => user_access('access administration pages'), 'callback' => 'system_main_admin_page', 'weight' => 9); - $items[] = array('path' => 'admin/compact', 'title' => t('compact mode'), + $items[] = array('path' => 'admin/compact', 'title' => t('Compact Mode'), 'access' => user_access('access administration pages'), 'callback' => 'system_admin_compact_page', 'type' => MENU_CALLBACK); @@ -115,7 +115,7 @@ function system_menu($may_cache) { // menu items that are basically just menu blocks $items[] = array( 'path' => 'admin/settings', - 'title' => t('site configuration'), + 'title' => t('Site Configuration'), 'description' => t('Adjust basic site configuration options.'), 'position' => 'right', 'weight' => -5, @@ -123,7 +123,7 @@ function system_menu($may_cache) { 'access' => $access); $items[] = array('path' => 'admin/build', - 'title' => t('site building'), + 'title' => t('Site Building'), 'description' => t('Control how your site looks and feels.'), 'position' => 'right', 'weight' => -10, @@ -132,7 +132,7 @@ function system_menu($may_cache) { $items[] = array( 'path' => 'admin/settings/admin', - 'title' => t('administration theme'), + 'title' => t('Administration Theme'), 'description' => t('Settings for how your administrative pages should look.'), 'position' => 'left', 'callback' => 'drupal_get_form', @@ -143,7 +143,7 @@ function system_menu($may_cache) { // Themes: $items[] = array( 'path' => 'admin/build/themes', - 'title' => t('themes'), + 'title' => t('Themes'), 'description' => t('Change which theme your site uses or allows users to set.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_themes'), @@ -151,7 +151,7 @@ function system_menu($may_cache) { $items[] = array( 'path' => 'admin/build/themes/select', - 'title' => t('list'), + 'title' => t('List'), 'description' => t('Select the default theme.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_themes'), @@ -160,14 +160,14 @@ function system_menu($may_cache) { 'weight' => -1); $items[] = array('path' => 'admin/build/themes/settings', - 'title' => t('configure'), + 'title' => t('Configure'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_theme_settings'), 'access' => $access, 'type' => MENU_LOCAL_TASK); // Theme configuration subtabs - $items[] = array('path' => 'admin/build/themes/settings/global', 'title' => t('global settings'), + $items[] = array('path' => 'admin/build/themes/settings/global', 'title' => t('Global Settings'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_theme_settings'), 'access' => $access, @@ -184,7 +184,7 @@ function system_menu($may_cache) { // Modules: $items[] = array('path' => 'admin/settings/modules', - 'title' => t('modules'), + 'title' => t('Modules'), 'description' => t('Enable or disable add-on modules for your site.'), 'weight' => -10, 'callback' => 'drupal_get_form', @@ -194,55 +194,55 @@ function system_menu($may_cache) { // Settings: $items[] = array( 'path' => 'admin/settings/site-information', - 'title' => t('site information'), + 'title' => t('Site Information'), 'description' => t('Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_site_information_settings')); $items[] = array( 'path' => 'admin/settings/error-reporting', - 'title' => t('error reporting'), + 'title' => t('Error Reporting'), 'description' => t('Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_error_reporting_settings')); $items[] = array( 'path' => 'admin/settings/page-caching', - 'title' => t('page caching'), + 'title' => t('Page Caching'), 'description' => t('Enable or disable page caching for anonymous users.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_page_caching_settings')); $items[] = array( 'path' => 'admin/settings/file-system', - 'title' => t('file system'), + 'title' => t('File System'), 'description' => t('Tell Drupal where to store uploaded files and how they are accessed.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_file_system_settings')); $items[] = array( 'path' => 'admin/settings/image-toolkit', - 'title' => t('image toolkit'), + 'title' => t('Image Toolkit'), 'description' => t('Choose which image toolkit to use if you have installed optional toolkits.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_image_toolkit_settings')); $items[] = array( 'path' => 'admin/content/rss-feed', - 'title' => t('RSS feeds'), + 'title' => t('RSS Feeds'), 'description' => t('Configure the number of items per feed and whether feeds should be titles/teasers/full-text.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_rss_feeds_settings')); $items[] = array( 'path' => 'admin/settings/date-time', - 'title' => t('date and time'), + 'title' => t('Date and Time'), 'description' => t('Settings for how Drupal displays date and time, as well as the system\'s default timezone.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_date_time_settings')); $items[] = array( 'path' => 'admin/settings/site-maintenance', - 'title' => t('site maintenance'), + 'title' => t('Site Maintenance'), 'description' => t('Take the site off-line for maintenance or bring it back online.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_site_maintenance_settings')); $items[] = array( 'path' => 'admin/settings/clean-urls', - 'title' => t('clean URLs'), + 'title' => t('Clean URLs'), 'description' => t('Enable or disable clean URLs for your site.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('system_clean_url_settings')); @@ -251,21 +251,21 @@ function system_menu($may_cache) { // Logs: $items[] = array( 'path' => 'admin/logs', - 'title' => t('logs'), + 'title' => t('Logs'), 'description' => t('View system logs and other status information.'), 'callback' => 'system_admin_menu_block_page', 'weight' => 5, 'position' => 'left'); $items[] = array( 'path' => 'admin/logs/status', - 'title' => t('status report'), + 'title' => t('Status Report'), 'description' => t('Get a status report about your site\'s operation and any detected problems.'), 'callback' => 'system_status', 'weight' => 10, 'access' => $access); $items[] = array( 'path' => 'admin/logs/status/run-cron', - 'title' => t('run cron'), + 'title' => t('Run Cron'), 'callback' => 'system_run_cron', 'type' => MENU_CALLBACK); $items[] = array(