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:
parent
6c9e82de0a
commit
c59f813e32
|
@ -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" />';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue