Changeset 42827 for trunk/src/wp-admin/includes/template.php
- Timestamp:
- 03/11/2018 04:43:59 PM (8 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r42676 r42827 2203 2203 'convert_to_screen(), add_meta_box()', 2204 2204 sprintf( 2205 /* translators: 1: wp-admin/includes/template.php 2: add_meta_box()3: add_meta_boxes */2205 /* translators: 1: wp-admin/includes/template.php, 2: add_meta_box(), 3: add_meta_boxes */ 2206 2206 __( 'Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.' ), 2207 2207 '<code>wp-admin/includes/template.php</code>', … … 2286 2286 2287 2287 if ( $r['number'] ) { 2288 /* translators: 1: The rating, 2: The number of ratings */2288 /* translators: 1: the rating, 2: the number of ratings */ 2289 2289 $format = _n( '%1$s rating based on %2$s rating', '%1$s rating based on %2$s ratings', $r['number'] ); 2290 2290 $title = sprintf( $format, number_format_i18n( $rating, 1 ), number_format_i18n( $r['number'] ) ); 2291 2291 } else { 2292 /* translators: 1: The rating */2292 /* translators: %s: the rating */ 2293 2293 $title = sprintf( __( '%s rating' ), number_format_i18n( $rating, 1 ) ); 2294 2294 }
Note: See TracChangeset
for help on using the changeset viewer.