Make WordPress Core


Ignore:
Timestamp:
12/20/2007 05:05:06 PM (18 years ago)
Author:
ryan
Message:

Use ngettext() for plurals. Props darkdragon. see #4865

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/import/livejournal.php

    r6125 r6430  
    120120            if ( $num_comments ) {
    121121                echo ' ';
    122                 printf(__('(%s comments)'), $num_comments);
     122                printf(__ngettext('(%s comment)', '(%s comments)', $num_comments), $num_comments);
    123123            }
    124124            echo '</li>';
Note: See TracChangeset for help on using the changeset viewer.