Disambiguate 'Approved' translation. Props nbachiyski. fixes #8638
git-svn-id: http://svn.automattic.com/wordpress/trunk@10564 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a114c10ca9
commit
e18f062b92
|
@ -229,7 +229,7 @@ function wp_dashboard_right_now() {
|
|||
|
||||
// Approved Comments
|
||||
$num = number_format_i18n($num_comm->approved);
|
||||
$text = __ngettext( 'Approved', 'Approved', $num_comm->approved );
|
||||
$text = _nc( 'Approved|Right Now', 'Approved', $num_comm->approved );
|
||||
if ( current_user_can( 'moderate_comments' ) ) {
|
||||
$num = "<a href='edit-comments.php?comment_status=approved'>$num</a>";
|
||||
$text = "<a class='approved' href='edit-comments.php?comment_status=approved'>$text</a>";
|
||||
|
|
|
@ -252,7 +252,7 @@ function get_comments( $args = '' ) {
|
|||
function get_comment_statuses( ) {
|
||||
$status = array(
|
||||
'hold' => __('Unapproved'),
|
||||
'approve' => __('Approved'),
|
||||
'approve' => _c('Approved|adjective'),
|
||||
'spam' => _c('Spam|adjective'),
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue