Changeset 6033 for trunk/wp-admin/edit.php
- Timestamp:
- 09/04/2007 08:56:08 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit.php
r6026 r6033 20 20 21 21 $post_status_q = ''; 22 $post_status_label = _ c('Posts|manage posts header');22 $post_status_label = __('Posts'); 23 23 if ( isset($_GET['post_status']) && in_array( $_GET['post_status'], array_keys($post_stati) ) ) { 24 24 $post_status_label = $post_stati[$_GET['post_status']][1]; … … 90 90 $h2_cat = isset($_GET['cat']) && $_GET['cat'] ? ' ' . sprintf( __('in “%s”'), single_cat_title('', false) ) : ''; 91 91 $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 ); 93 93 } 94 94 ?></h2>
Note: See TracChangeset
for help on using the changeset viewer.