i18n fixes. Props nbachiyski. fixes #11954

git-svn-id: http://svn.automattic.com/wordpress/trunk@12789 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2010-01-21 21:37:43 +00:00
parent 9559d58e67
commit 94859834fc
43 changed files with 183 additions and 160 deletions

View File

@@ -183,7 +183,8 @@ if ( !empty($action) ) {
<ul class="ul-disc">
<?php
foreach ( $plugin_info as $plugin )
echo '<li>', sprintf(__('<strong>%s</strong> by <em>%s</em>'), $plugin['Name'], $plugin['Author']), '</li>';
/* translators: 1: plugin name, 2: plugin author */
echo '<li>', sprintf(__('<strong>%1$s</strong> by <em>%2$s</em>'), $plugin['Name'], $plugin['Author']), '</li>';
?>
</ul>
<p><?php _e('Are you sure you wish to delete these files?') ?></p>