Changeset 45932 for trunk/src/wp-admin/edit-tags.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tags.php
r45926 r45932 244 244 if ( 'category' == $taxonomy ) { 245 245 $help = '<p>' . sprintf( 246 /* translators: %s: URL to Writing Settings screen */246 /* translators: %s: URL to Writing Settings screen. */ 247 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 248 'options-writing.php' … … 336 336 <?php 337 337 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { 338 /* translators: %s: search keywords*/338 /* translators: %s: Search query. */ 339 339 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ) ); 340 340 } … … 592 592 <?php 593 593 printf( 594 /* translators: %s: default category*/594 /* translators: %s: Default category. */ 595 595 __( 'Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.' ), 596 596 /** This filter is documented in wp-includes/category-template.php */ … … 603 603 <?php 604 604 printf( 605 /* translators: %s: URL to Categories to Tags Converter tool */605 /* translators: %s: URL to Categories to Tags Converter tool. */ 606 606 __( 'Categories can be selectively converted to tags using the <a href="%s">category to tag converter</a>.' ), 607 607 esc_url( $import_link ) … … 616 616 <?php 617 617 printf( 618 /* translators: %s: URL to Categories to Tags Converter tool */618 /* translators: %s: URL to Categories to Tags Converter tool. */ 619 619 __( 'Tags can be selectively converted to categories using the <a href="%s">tag to category converter</a>.' ), 620 620 esc_url( $import_link )
Note: See TracChangeset
for help on using the changeset viewer.