Make WordPress Core


Ignore:
Timestamp:
11/13/2008 08:59:32 PM (15 years ago)
Author:
ryan
Message:

i18n plurals fixes from nbachiyski. fixes #8142

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/plugin-install.php

    r9664 r9668  
    464464            <li><strong><?php _e('Compatible up to:') ?></strong> <?php echo $api->tested ?></li>
    465465<?php endif; if ( ! empty($api->downloaded) ) : ?>
    466             <li><strong><?php _e('Downloaded:') ?></strong> <?php printf('%s times', number_format_i18n($api->downloaded)) ?></li>
     466            <li><strong><?php _e('Downloaded:') ?></strong> <?php printf(__ngettext('%s time', '%s times', $api->downloaded), number_format_i18n($api->downloaded)) ?></li>
    467467<?php endif; if ( ! empty($api->slug) ) : ?>
    468468            <li><a target="_blank" href="http://wordpress.org/extend/plugins/<?php echo $api->slug ?>/"><?php _e('WordPress.org Plugin Page &#187;') ?></a></li>
Note: See TracChangeset for help on using the changeset viewer.