Make WordPress Core


Ignore:
Timestamp:
02/20/2009 07:35:16 PM (16 years ago)
Author:
ryan
Message:

Use _n(). Props nbachiyski. fixes #9111

File:
1 edited

Legend:

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

    r9903 r10606  
    8484        } else {
    8585            $count = count($metakeys);
    86             echo '<p>' . sprintf( __ngettext('Done! <strong>%s</strong> post with tags were read.', 'Done! <strong>%s</strong> posts with tags were read.', $count), $count ) . '<br /></p>';
     86            echo '<p>' . sprintf( _n('Done! <strong>%s</strong> post with tags were read.', 'Done! <strong>%s</strong> posts with tags were read.', $count), $count ) . '<br /></p>';
    8787            echo '<ul>';
    8888            foreach ( $metakeys as $post_meta ) {
Note: See TracChangeset for help on using the changeset viewer.