Changeset 10606 for trunk/wp-admin/import/utw.php
- Timestamp:
- 02/20/2009 07:35:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/utw.php
r9903 r10606 99 99 $count = count($tags); 100 100 101 echo '<p>' . sprintf( _ _ngettext('Done! <strong>%s</strong> tag were read.', 'Done! <strong>%s</strong> tags were read.', $count), $count ) . '<br /></p>';101 echo '<p>' . sprintf( _n('Done! <strong>%s</strong> tag were read.', 'Done! <strong>%s</strong> tags were read.', $count), $count ) . '<br /></p>'; 102 102 echo '<p>' . __('The following tags were found:') . '</p>'; 103 103 … … 151 151 $count = count($posts); 152 152 153 echo '<p>' . sprintf( _ _ngettext('Done! <strong>%s</strong> tag to post relationships were read.', 'Done! <strong>%s</strong> tags to post relationships were read.', $count), $count ) . '<br /></p>';153 echo '<p>' . sprintf( _n('Done! <strong>%s</strong> tag to post relationships were read.', 'Done! <strong>%s</strong> tags to post relationships were read.', $count), $count ) . '<br /></p>'; 154 154 155 155 } … … 172 172 $tags_added = $this->tag2post(); 173 173 174 echo '<p>' . sprintf( _ _ngettext( 'Done! <strong>%s</strong> tag were added!', 'Done! <strong>%s</strong> tags were added!', $tags_added ), $tags_added ) . '<br /></p>';174 echo '<p>' . sprintf( _n( 'Done! <strong>%s</strong> tag were added!', 'Done! <strong>%s</strong> tags were added!', $tags_added ), $tags_added ) . '<br /></p>'; 175 175 176 176 echo '<form action="admin.php?import=utw&step=4" method="post">';
Note: See TracChangeset
for help on using the changeset viewer.