Make WordPress Core


Ignore:
Timestamp:
09/25/2006 02:38:55 AM (17 years ago)
Author:
ryan
Message:

i18n fixes from nbachiyski. fixes #3109

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/wp-includes/classes.php

    r4232 r4239  
    823823            }
    824824        }
    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";
    828828    }   // End function move_spam
    829829
     
    854854        $numqueue = $counters[in_queue];
    855855
    856         $body = '<p>' . sprintf(__('Suspected spam comments: <strong>%s</strong>'), $numfound) . '</p>';
     856        $body = '<p>' . sprintf(__('Suspected spam comments: %s'), "<strong>$numfound</strong>") . '</p>';
    857857
    858858        if ( count($counters[found]) > 0 ) {
Note: See TracChangeset for help on using the changeset viewer.