Changeset 9591
- Timestamp:
- 11/10/2008 05:47:41 PM (16 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-pages.php
r9589 r9591 109 109 <div id="message" class="updated fade"><p> 110 110 <?php if ( (int) $_GET['updated'] ) { 111 printf( __ngettext( '% d page updated.', '%dpages updated.', $_GET['updated'] ), number_format_i18n( $_GET['updated'] ) );111 printf( __ngettext( '%s page updated.', '%s pages updated.', $_GET['updated'] ), number_format_i18n( $_GET['updated'] ) ); 112 112 unset($_GET['updated']); 113 113 } 114 114 115 115 if ( (int) $_GET['skipped'] ) { 116 printf( __ngettext( ' %d page not updated, invalid parent page specified.', ' %dpages not updated, invalid parent page specified.', $_GET['skipped'] ), number_format_i18n( $_GET['skipped'] ) );116 printf( __ngettext( '%s page not updated, invalid parent page specified.', '%s pages not updated, invalid parent page specified.', $_GET['skipped'] ), number_format_i18n( $_GET['skipped'] ) ); 117 117 unset($_GET['skipped']); 118 118 } 119 119 120 120 if ( (int) $_GET['locked'] ) { 121 printf( __ngettext( ' %d page not updated, somebody is editing it.', ' %dpages not updated, somebody is editing them.', $_GET['locked'] ), number_format_i18n( $_GET['skipped'] ) );121 printf( __ngettext( '%s page not updated, somebody is editing it.', '%s pages not updated, somebody is editing them.', $_GET['locked'] ), number_format_i18n( $_GET['skipped'] ) ); 122 122 unset($_GET['locked']); 123 123 } ?> -
trunk/wp-admin/edit.php
r9589 r9591 105 105 <div id="message" class="updated fade"><p> 106 106 <?php if ( (int) $_GET['updated'] ) { 107 printf( __ngettext( '% d post updated.', '%dposts updated.', $_GET['updated'] ), number_format_i18n( $_GET['updated'] ) );107 printf( __ngettext( '%s post updated.', '%s posts updated.', $_GET['updated'] ), number_format_i18n( $_GET['updated'] ) ); 108 108 unset($_GET['updated']); 109 109 } … … 113 113 114 114 if ( (int) $_GET['locked'] ) { 115 printf( __ngettext( ' %d post not updated, somebody is editing it.', ' %dposts not updated, somebody is editing them.', $_GET['locked'] ), number_format_i18n( $_GET['locked'] ) );115 printf( __ngettext( '%s post not updated, somebody is editing it.', '%s posts not updated, somebody is editing them.', $_GET['locked'] ), number_format_i18n( $_GET['locked'] ) ); 116 116 unset($_GET['locked']); 117 117 } ?> -
trunk/wp-admin/includes/plugin-install.php
r9527 r9591 339 339 <td class="vers"><?php echo $version; ?></td> 340 340 <td class="vers"> 341 <div class="star-holder" title="<?php printf(__ngettext('(based on % d rating)', '(based on %dratings)', $plugin['num_ratings']), number_format_i18n($plugin['num_ratings'])) ?>">341 <div class="star-holder" title="<?php printf(__ngettext('(based on %s rating)', '(based on %s ratings)', $plugin['num_ratings']), number_format_i18n($plugin['num_ratings'])) ?>"> 342 342 <div class="star star-rating" style="width: <?php echo attribute_escape($plugin['rating']) ?>px"></div> 343 343 <div class="star star5"><img src="<?php echo admin_url('images/star.gif'); ?>" alt="<?php _e('5 stars') ?>" /></div>
Note: See TracChangeset
for help on using the changeset viewer.