diff options
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index d65d52d7c..92d0139cb 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -83,20 +83,20 @@ function taxonomy_term_path($term) { */ function taxonomy_menu() { $items['admin/content/taxonomy'] = array( - 'title' => t('Categories'), - 'description' => t('Create vocabularies and terms to categorize your content.'), + 'title' => 'Categories', + 'description' => 'Create vocabularies and terms to categorize your content.', 'page callback' => 'taxonomy_overview_vocabularies', 'access arguments' => array('administer taxonomy'), ); $items['admin/content/taxonomy/list'] = array( - 'title' => t('List'), + 'title' => 'List', 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); $items['admin/content/taxonomy/add/vocabulary'] = array( - 'title' => t('Add vocabulary'), + 'title' => 'Add vocabulary', 'page callback' => 'drupal_get_form', 'page arguments' => array('taxonomy_form_vocabulary'), 'type' => MENU_LOCAL_TASK, @@ -104,33 +104,33 @@ function taxonomy_menu() { ); $items['admin/content/taxonomy/edit/vocabulary/%taxonomy_vocabulary'] = array( - 'title' => t('Edit vocabulary'), + 'title' => 'Edit vocabulary', 'page callback' => 'taxonomy_admin_vocabulary_edit', 'page arguments' => array(5), 'type' => MENU_CALLBACK, ); $items['admin/content/taxonomy/edit/term'] = array( - 'title' => t('Edit term'), + 'title' => 'Edit term', 'page callback' => 'taxonomy_admin_term_edit', 'type' => MENU_CALLBACK, ); $items['taxonomy/term'] = array( - 'title' => t('Taxonomy term'), + 'title' => 'Taxonomy term', 'page callback' => 'taxonomy_term_page', 'access arguments' => array('access content'), 'type' => MENU_CALLBACK, ); $items['taxonomy/autocomplete'] = array( - 'title' => t('Autocomplete taxonomy'), + 'title' => 'Autocomplete taxonomy', 'page callback' => 'taxonomy_autocomplete', 'access arguments' => array('access content'), 'type' => MENU_CALLBACK, ); $items['admin/content/taxonomy/%taxonomy_vocabulary'] = array( - 'title' => t('List terms'), + 'title' => 'List terms', 'page callback' => 'taxonomy_overview_terms', 'page arguments' => array(3), 'access arguments' => array('administer taxonomy'), @@ -138,13 +138,13 @@ function taxonomy_menu() { ); $items['admin/content/taxonomy/%taxonomy_vocabulary/list'] = array( - 'title' => t('List'), + 'title' => 'List', 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); $items['admin/content/taxonomy/%taxonomy_vocabulary/add/term'] = array( - 'title' => t('Add term'), + 'title' => 'Add term', 'page callback' => 'drupal_get_form', 'page arguments' => array('taxonomy_form_term', 3), 'type' => MENU_LOCAL_TASK, |