Changeset 10564
- Timestamp:
- 02/12/2009 08:42:04 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/dashboard.php
r10479 r10564 230 230 // Approved Comments 231 231 $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 ); 233 233 if ( current_user_can( 'moderate_comments' ) ) { 234 234 $num = "<a href='edit-comments.php?comment_status=approved'>$num</a>"; -
trunk/wp-includes/comment.php
r10536 r10564 253 253 $status = array( 254 254 'hold' => __('Unapproved'), 255 'approve' => _ _('Approved'),255 'approve' => _c('Approved|adjective'), 256 256 'spam' => _c('Spam|adjective'), 257 257 );
Note: See TracChangeset
for help on using the changeset viewer.