Changeset 45926 for trunk/src/wp-admin/edit-tags.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tags.php
r45683 r45926 243 243 $help = ''; 244 244 if ( 'category' == $taxonomy ) { 245 $help = '<p>' . sprintf( __( 'You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your <a href="%s">writing settings</a>.' ), 'options-writing.php' ) . '</p>'; 245 $help = '<p>' . sprintf( 246 /* translators: %s: URL to Writing Settings screen */ 247 __( 'You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your <a href="%s">writing settings</a>.' ), 248 'options-writing.php' 249 ) . '</p>'; 246 250 } elseif ( 'link_category' == $taxonomy ) { 247 251 $help = '<p>' . __( 'You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.' ) . '</p>'; … … 597 601 <?php if ( current_user_can( 'import' ) ) : ?> 598 602 <p> 599 <?php printf( __( 'Categories can be selectively converted to tags using the <a href="%s">category to tag converter</a>.' ), esc_url( $import_link ) ); ?> 603 <?php 604 printf( 605 /* translators: %s: URL to Categories to Tags Converter tool */ 606 __( 'Categories can be selectively converted to tags using the <a href="%s">category to tag converter</a>.' ), 607 esc_url( $import_link ) 608 ); 609 ?> 600 610 </p> 601 611 <?php endif; ?> … … 603 613 <?php elseif ( 'post_tag' == $taxonomy && current_user_can( 'import' ) ) : ?> 604 614 <div class="form-wrap edit-term-notes"> 605 <p><?php printf( __( 'Tags can be selectively converted to categories using the <a href="%s">tag to category converter</a>.' ), esc_url( $import_link ) ); ?></p> 615 <p> 616 <?php 617 printf( 618 /* translators: %s: URL to Categories to Tags Converter tool */ 619 __( 'Tags can be selectively converted to categories using the <a href="%s">tag to category converter</a>.' ), 620 esc_url( $import_link ) 621 ); 622 ?> 623 </p> 606 624 </div> 607 625 <?php
Note: See TracChangeset
for help on using the changeset viewer.