Use %s instead of %d in plugin install notice strings. props johnbillion. fixes #19106

git-svn-id: https://develop.svn.wordpress.org/trunk@19109 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2011-11-02 02:36:18 +00:00
parent 45c23f2fcf
commit 41d1ab35f3
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<?php ulti<?php
/** /**
* WordPress Plugin Install Administration API * WordPress Plugin Install Administration API
* *
@ -105,7 +105,7 @@ function install_dashboard() {
'name' => $tag['name'], 'name' => $tag['name'],
'id' => sanitize_title_with_dashes($tag['name']), 'id' => sanitize_title_with_dashes($tag['name']),
'count' => $tag['count'] ); 'count' => $tag['count'] );
echo wp_generate_tag_cloud($tags, array( 'single_text' => __('%d plugin'), 'multiple_text' => __('%d plugins') ) ); echo wp_generate_tag_cloud($tags, array( 'single_text' => __('%s plugin'), 'multiple_text' => __('%s plugins') ) );
} }
echo '</p><br class="clear" />'; echo '</p><br class="clear" />';
} }