Make WordPress Core


Ignore:
Timestamp:
04/30/2009 04:22:14 PM (17 years ago)
Author:
ryan
Message:

Plural contexts. Props nbachiyski. fixes #8128

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/upload.php

    r11110 r11137  
    188188
    189189$class = empty($_GET['post_mime_type']) && ! isset($_GET['detached']) ? ' class="current"' : '';
    190 $type_links[] = "<li><a href='upload.php'$class>" . sprintf( _n( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $_total_posts ), number_format_i18n( $_total_posts ) ) . '</a>';
     190$type_links[] = "<li><a href='upload.php'$class>" . sprintf( _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $_total_posts, 'uploaded files' ), number_format_i18n( $_total_posts ) ) . '</a>';
    191191foreach ( $post_mime_types as $mime_type => $label ) {
    192192    $class = '';
Note: See TracChangeset for help on using the changeset viewer.