summaryrefslogtreecommitdiff
path: root/modules/taxonomy
diff options
context:
space:
mode:
Diffstat (limited to 'modules/taxonomy')
-rw-r--r--modules/taxonomy/taxonomy.module22
1 files changed, 11 insertions, 11 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index 86795cae5..c1c4372cd 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -63,43 +63,43 @@ function taxonomy_menu($may_cache) {
if ($may_cache) {
$items[] = array('path' => 'admin/content/taxonomy',
- 'title' => t('categories'),
+ 'title' => t('Categories'),
'description' => t('Create vocabularies and terms to categorize your content.'),
'callback' => 'taxonomy_overview_vocabularies',
'access' => user_access('administer taxonomy'));
$items[] = array('path' => 'admin/content/taxonomy/list',
- 'title' => t('list'),
+ 'title' => t('List'),
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -10);
$items[] = array('path' => 'admin/content/taxonomy/add/vocabulary',
- 'title' => t('add vocabulary'),
+ 'title' => t('Add vocabulary'),
'callback' => 'drupal_get_form',
'callback arguments' => array('taxonomy_form_vocabulary'),
'access' => user_access('administer taxonomy'),
'type' => MENU_LOCAL_TASK);
$items[] = array('path' => 'admin/content/taxonomy/edit/vocabulary',
- 'title' => t('edit vocabulary'),
+ 'title' => t('Edit vocabulary'),
'callback' => 'taxonomy_admin_vocabulary_edit',
'access' => user_access('administer taxonomy'),
'type' => MENU_CALLBACK);
$items[] = array('path' => 'admin/content/taxonomy/edit/term',
- 'title' => t('edit term'),
+ 'title' => t('Edit term'),
'callback' => 'taxonomy_admin_term_edit',
'access' => user_access('administer taxonomy'),
'type' => MENU_CALLBACK);
$items[] = array('path' => 'taxonomy/term',
- 'title' => t('taxonomy term'),
+ 'title' => t('Taxonomy term'),
'callback' => 'taxonomy_term_page',
'access' => user_access('access content'),
'type' => MENU_CALLBACK);
$items[] = array('path' => 'taxonomy/autocomplete',
- 'title' => t('autocomplete taxonomy'),
+ 'title' => t('Autocomplete taxonomy'),
'callback' => 'taxonomy_autocomplete',
'access' => user_access('access content'),
'type' => MENU_CALLBACK);
@@ -108,19 +108,19 @@ function taxonomy_menu($may_cache) {
if (is_numeric(arg(3))) {
$vid = arg(3);
$items[] = array('path' => 'admin/content/taxonomy/'. $vid,
- 'title' => t('list terms'),
+ 'title' => t('List terms'),
'callback' => 'taxonomy_overview_terms',
'callback arguments' => array($vid),
'access' => user_access('administer taxonomy'),
'type' => MENU_CALLBACK);
$items[] = array('path' => 'admin/content/taxonomy/'. $vid .'/list',
- 'title' => t('list'),
+ 'title' => t('List'),
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -10);
$items[] = array('path' => 'admin/content/taxonomy/'. $vid .'/add/term',
- 'title' => t('add term'),
+ 'title' => t('Add term'),
'callback' => 'drupal_get_form',
'callback arguments' => array('taxonomy_form_term', $vid),
'access' => user_access('administer taxonomy'),
@@ -1312,7 +1312,7 @@ function taxonomy_term_page($str_tids = '', $depth = 0, $op = 'page') {
case 'feed':
$term = taxonomy_get_term($tids[0]);
$channel['link'] = url('taxonomy/term/'. $str_tids .'/'. $depth, NULL, NULL, TRUE);
- $channel['title'] = variable_get('site_name', 'drupal') .' - '. $title;
+ $channel['title'] = variable_get('site_name', 'Drupal') .' - '. $title;
$channel['description'] = $term->description;
$result = taxonomy_select_nodes($tids, $terms['operator'], $depth, FALSE);