Changeset 6430 for trunk/wp-admin/moderation.php
- Timestamp:
- 12/20/2007 05:05:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/moderation.php
r6298 r6430 83 83 84 84 if ( $approved > 0 ) { 85 printf( __ngettext( '%s comment approved .', '%s comments approved.', $approved ), $approved );85 printf( __ngettext( '%s comment approved', '%s comments approved', $approved ), $approved ); 86 86 echo '<br />'; 87 87 } 88 88 89 89 if ( $deleted > 0 ) { 90 printf( __ngettext( '%s comment deleted', '%s comments deleted .', $deleted ), $deleted );90 printf( __ngettext( '%s comment deleted', '%s comments deleted', $deleted ), $deleted ); 91 91 echo '<br />'; 92 92 }
Note: See TracChangeset
for help on using the changeset viewer.