Changeset 6430 for trunk/wp-admin/import/utw.php
- Timestamp:
- 12/20/2007 05:05:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/utw.php
r6423 r6430 85 85 $count = count($tags); 86 86 87 echo '<p>' . sprintf( __ ('Done! <strong>%s</strong> tags were read.'), $count ) . '<br /></p>';87 echo '<p>' . sprintf( __ngettext('Done! <strong>%s</strong> tag were read.', 'Done! <strong>%s</strong> tags were read.', $count), $count ) . '<br /></p>'; 88 88 echo '<p>' . __('The following tags were found:') . '</p>'; 89 89 … … 137 137 $count = count($posts); 138 138 139 echo '<p>' . sprintf( __ ('Done! <strong>%s</strong> tag to post relationships were read.'), $count ) . '<br /></p>';139 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>'; 140 140 141 141 } … … 158 158 $tags_added = $this->tag2post(); 159 159 160 echo '<p>' . sprintf( __ ('Done! <strong>%s</strong> tags were added!'), $tags_added ) . '<br /></p>';160 echo '<p>' . sprintf( __ngettext( 'Done! <strong>%s</strong> tag were added!', 'Done! <strong>%s</strong> tags were added!', $tags_added ), $tags_added ) . '<br /></p>'; 161 161 162 162 echo '<form action="admin.php?import=utw&step=4" method="post">';
Note: See TracChangeset
for help on using the changeset viewer.