Make WordPress Core


Ignore:
Timestamp:
09/04/2007 08:56:08 PM (18 years ago)
Author:
westi
Message:

Improve desriptions for I18N strings. Fixes #4906 props nbachiyski

File:
1 edited

Legend:

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

    r6026 r6033  
    2020
    2121$post_status_q = '';
    22 $post_status_label = _c('Posts|manage posts header');
     22$post_status_label = __('Posts');
    2323if ( isset($_GET['post_status']) && in_array( $_GET['post_status'], array_keys($post_stati) ) ) {
    2424    $post_status_label = $post_stati[$_GET['post_status']][1];
     
    9090    $h2_cat    = isset($_GET['cat']) && $_GET['cat'] ? ' ' . sprintf( __('in “%s”'), single_cat_title('', false) ) : '';
    9191    $h2_month  = isset($_GET['m'])   && $_GET['m']   ? ' ' . sprintf( __('during %s'), single_month_title(' ', false) ) : '';
    92     printf( _c( '%1$s%2$s%3$s%4$s%5$s|manage posts header' ), $h2_noun, $h2_author, $h2_search, $h2_cat, $h2_month );
     92    printf( _c( '%1$s%2$s%3$s%4$s%5$s|You can reorder these: 1: Posts, 2: by %s, 3: matching %s, 4: in %s, 5: during %s' ), $h2_noun, $h2_author, $h2_search, $h2_cat, $h2_month );
    9393}
    9494?></h2>
Note: See TracChangeset for help on using the changeset viewer.