Make WordPress Core

Changeset 10564


Ignore:
Timestamp:
02/12/2009 08:42:04 PM (15 years ago)
Author:
ryan
Message:

Disambiguate 'Approved' translation. Props nbachiyski. fixes #8638

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/dashboard.php

    r10479 r10564  
    230230    // Approved Comments
    231231    $num = number_format_i18n($num_comm->approved);
    232     $text = __ngettext( 'Approved', 'Approved', $num_comm->approved );
     232    $text = _nc( 'Approved|Right Now', 'Approved', $num_comm->approved );
    233233    if ( current_user_can( 'moderate_comments' ) ) {
    234234        $num = "<a href='edit-comments.php?comment_status=approved'>$num</a>";
  • trunk/wp-includes/comment.php

    r10536 r10564  
    253253    $status = array(
    254254        'hold'      => __('Unapproved'),
    255         'approve'   => __('Approved'),
     255        'approve'   => _c('Approved|adjective'),
    256256        'spam'      => _c('Spam|adjective'),
    257257    );
Note: See TracChangeset for help on using the changeset viewer.