Changeset 45932 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r45915 r45932 564 564 'items_list_navigation' => array( __( 'Tags list navigation' ), __( 'Categories list navigation' ) ), 565 565 'items_list' => array( __( 'Tags list' ), __( 'Categories list' ) ), 566 /* translators: Tab heading when selecting from the most used terms */566 /* translators: Tab heading when selecting from the most used terms. */ 567 567 'most_used' => array( _x( 'Most Used', 'tags' ), _x( 'Most Used', 'categories' ) ), 568 568 'back_to_items' => array( __( '← Back to Tags' ), __( '← Back to Categories' ) ), … … 2918 2918 $slug = wp_unique_term_slug( $slug, (object) $args ); 2919 2919 } else { 2920 /* translators: %s: taxonomy term slug*/2920 /* translators: %s: Taxonomy term slug. */ 2921 2921 return new WP_Error( 'duplicate_term_slug', sprintf( __( 'The slug “%s” is already in use by another term.' ), $slug ) ); 2922 2922 } … … 4332 4332 $args, 4333 4333 array( 4334 /* translators: %s: taxonomy label, %l: list of terms formatted as per $term_template*/4334 /* translators: %s: Taxonomy label, %l: List of terms formatted as per $term_template. */ 4335 4335 'template' => __( '%s: %l.' ), 4336 4336 'term_template' => '<a href="%1$s">%2$s</a>',
Note: See TracChangeset
for help on using the changeset viewer.