Make WordPress Core

Changeset 13083


Ignore:
Timestamp:
02/13/2010 04:18:33 AM (15 years ago)
Author:
dd32
Message:

Introduce Custom Taxonomies Translation strings, Correctly identifies the taxonomy in the Strings of the edit pages. See #11838

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/taxonomy.php

    r13010 r13083  
    1919                                                    'update_count_callback' => '_update_post_term_count',
    2020                                                    'label' => __('Categories'),
     21                                                    'singular_label' => __('Category'),
    2122                                                    'query_var' => false,
    2223                                                    'rewrite' => false
     
    2728                                                    'update_count_callback' => '_update_post_term_count',
    2829                                                    'label' => __('Post Tags'),
     30                                                    'singular_label' => __('Post Tag'),
    2931                                                    'query_var' => false,
    3032                                                    'rewrite' => false
     
    213215            $args[$cap] = 'manage_categories';
    214216    }
     217   
     218    if ( empty($args['singular_label']) )
     219        $args['singular_label'] = $args['label'];
    215220
    216221    $args['name'] = $taxonomy;
Note: See TracChangeset for help on using the changeset viewer.