Make WordPress Core


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

Use _n(). Props nbachiyski. fixes #9111

File:
1 edited

Legend:

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

    r9933 r10606  
    313313            // Store category translation for future use
    314314            add_option('dccat2wpcat',$dccat2wpcat);
    315             echo '<p>'.sprintf(__ngettext('Done! <strong>%1$s</strong> category imported.', 'Done! <strong>%1$s</strong> categories imported.', $count), $count).'<br /><br /></p>';
     315            echo '<p>'.sprintf(_n('Done! <strong>%1$s</strong> category imported.', 'Done! <strong>%1$s</strong> categories imported.', $count), $count).'<br /><br /></p>';
    316316            return true;
    317317        }
     
    614614            add_option('dclinks2wplinks',$dclinks2wplinks);
    615615            echo '<p>';
    616             printf(__ngettext('Done! <strong>%s</strong> link or link category imported.', 'Done! <strong>%s</strong> links or link categories imported.', $count), $count);
     616            printf(_n('Done! <strong>%s</strong> link or link category imported.', 'Done! <strong>%s</strong> links or link categories imported.', $count), $count);
    617617            echo '<br /><br /></p>';
    618618            return true;
Note: See TracChangeset for help on using the changeset viewer.