Changeset 4239 for branches/2.0/wp-includes/classes.php
- Timestamp:
- 09/25/2006 02:38:55 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-includes/classes.php
r4232 r4239 823 823 } 824 824 } 825 echo "<div class='updated'><p> $cnt comment";826 if ($cnt != 1 ) echo "s";827 echo " moved to the moderation queue.</p></div>\n";825 echo "<div class='updated'><p> "; 826 printf(__('%d comment(s) moved to the moderation queue.'), $cnt); 827 echo "</p></div>\n"; 828 828 } // End function move_spam 829 829 … … 854 854 $numqueue = $counters[in_queue]; 855 855 856 $body = '<p>' . sprintf(__('Suspected spam comments: <strong>%s</strong>'), $numfound) . '</p>';856 $body = '<p>' . sprintf(__('Suspected spam comments: %s'), "<strong>$numfound</strong>") . '</p>'; 857 857 858 858 if ( count($counters[found]) > 0 ) {
Note: See TracChangeset
for help on using the changeset viewer.