Make WordPress Core


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

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

File:
1 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>";
Note: See TracChangeset for help on using the changeset viewer.