Changeset 4658 for trunk/wp-admin/edit-comments.php
- Timestamp:
- 12/21/2006 11:06:18 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-comments.php
r4656 r4658 68 68 endforeach; 69 69 echo '<div style="background-color: rgb(207, 235, 247);" id="message" class="updated fade"><p>'; 70 if ( !empty( $_POST['spam_button'] ) ) 71 printf(__('%s comments marked as spam.'), $i); 72 else 73 printf(__('%s comments deleted.'), $i); 70 if ( !empty( $_POST['spam_button'] ) ) { 71 printf(__ngettext('%s comment marked as spam', '%s comments marked as spam.', $i), $i); 72 } else { 73 printf(__ngettext('%s comment deleted.', '%s comments deleted.', $i), $i); 74 } 74 75 echo '</p></div>'; 75 76 endif;
Note: See TracChangeset
for help on using the changeset viewer.