Changeset 29821 for trunk/src/wp-admin/edit-tags.php
- Timestamp:
- 10/02/2014 08:00:11 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tags.php
r29803 r29821 449 449 450 450 <div class="form-field form-required term-name-wrap"> 451 <label for="tag-name"><?php _ex( 'Name', 'Taxonomy Name'); ?></label>451 <label for="tag-name"><?php _ex( 'Name', 'term name' ); ?></label> 452 452 <input name="tag-name" id="tag-name" type="text" value="" size="40" aria-required="true" /> 453 453 <p><?php _e('The name is how it appears on your site.'); ?></p> … … 455 455 <?php if ( ! global_terms_enabled() ) : ?> 456 456 <div class="form-field term-slug-wrap"> 457 <label for="tag-slug"><?php _e x('Slug', 'Taxonomy Slug'); ?></label>457 <label for="tag-slug"><?php _e( 'Slug' ); ?></label> 458 458 <input name="slug" id="tag-slug" type="text" value="" size="40" /> 459 459 <p><?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p> … … 462 462 <?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?> 463 463 <div class="form-field term-parent-wrap"> 464 <label for="parent"><?php _ex( 'Parent', 'Taxonomy Parent'); ?></label>464 <label for="parent"><?php _ex( 'Parent', 'term parent' ); ?></label> 465 465 <?php 466 466 $dropdown_args = array( … … 502 502 <?php endif; // is_taxonomy_hierarchical() ?> 503 503 <div class="form-field term-description-wrap"> 504 <label for="tag-description"><?php _e x('Description', 'Taxonomy Description'); ?></label>504 <label for="tag-description"><?php _e( 'Description' ); ?></label> 505 505 <textarea name="description" id="tag-description" rows="5" cols="40"></textarea> 506 506 <p><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></p>
Note: See TracChangeset
for help on using the changeset viewer.