Changeset 9591 for trunk/wp-admin/edit-pages.php
- Timestamp:
- 11/10/2008 05:47:41 PM (17 years ago)
- File:
-
- 1 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 } ?>
Note: See TracChangeset
for help on using the changeset viewer.