Changeset 45932 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r45926 r45932 610 610 selected( $m, $year . $month, false ), 611 611 esc_attr( $arc_row->year . $month ), 612 /* translators: 1: month name, 2: 4-digit year*/612 /* translators: 1: Month name, 2: 4-digit year. */ 613 613 sprintf( __( '%1$s %2$d' ), $wp_locale->get_month( $month ), $year ) 614 614 ); … … 663 663 664 664 $approved_only_phrase = sprintf( 665 /* translators: %s: number of comments*/665 /* translators: %s: Number of comments. */ 666 666 _n( '%s comment', '%s comments', $approved_comments ), 667 667 $approved_comments_number … … 669 669 670 670 $approved_phrase = sprintf( 671 /* translators: %s: number of comments*/671 /* translators: %s: Number of comments. */ 672 672 _n( '%s approved comment', '%s approved comments', $approved_comments ), 673 673 $approved_comments_number … … 675 675 676 676 $pending_phrase = sprintf( 677 /* translators: %s: number of comments*/677 /* translators: %s: Number of comments. */ 678 678 _n( '%s pending comment', '%s pending comments', $pending_comments ), 679 679 $pending_comments_number … … 806 806 807 807 $output = '<span class="displaying-num">' . sprintf( 808 /* translators: %s: number of items*/808 /* translators: %s: Number of items. */ 809 809 _n( '%s item', '%s items', $total_items ), 810 810 number_format_i18n( $total_items ) … … 878 878 $html_total_pages = sprintf( "<span class='total-pages'>%s</span>", number_format_i18n( $total_pages ) ); 879 879 $page_links[] = $total_pages_before . sprintf( 880 /* translators: 1: current page, 2: total pages*/880 /* translators: 1: Current page, 2: Total pages. */ 881 881 _x( '%1$s of %2$s', 'paging' ), 882 882 $html_current_page, … … 1398 1398 if ( isset( $this->_pagination_args['total_items'] ) ) { 1399 1399 $response['total_items_i18n'] = sprintf( 1400 /* translators: number of items*/1400 /* translators: Number of items. */ 1401 1401 _n( '%s item', '%s items', $this->_pagination_args['total_items'] ), 1402 1402 number_format_i18n( $this->_pagination_args['total_items'] )
Note: See TracChangeset
for help on using the changeset viewer.