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

git-svn-id: http://svn.automattic.com/wordpress/trunk@19109 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2011-11-02 02:36:18 +00:00
parent 6c9e82de0a
commit c59f813e32
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<?php
ulti<?php
/**
* WordPress Plugin Install Administration API
*
@ -105,7 +105,7 @@ function install_dashboard() {
'name' => $tag['name'],
'id' => sanitize_title_with_dashes($tag['name']),
'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" />';
}