Changeset 5963
- Timestamp:
- 08/28/2007 09:04:17 PM (19 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
-
edit-pages.php (modified) (1 diff)
-
edit.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-pages.php
r5700 r5963 7 7 8 8 $post_stati = array( // array( adj, noun ) 9 'publish' => array(__('Published'), __('Published pages')), 9 10 'draft' => array(__('Draft'), __('Draft pages')), 10 'private' => array(__('Private'), __('Private pages')), 11 'publish' => array(__('Published'), __('Published pages')) 11 'private' => array(__('Private'), __('Private pages')) 12 12 ); 13 13 -
trunk/wp-admin/edit.php
r5903 r5963 10 10 $_GET['cat'] = (int) $_GET['cat']; 11 11 $post_stati = array( // array( adj, noun ) 12 ' draft' => array(__('Draft'), _c('Drafts|manage posts header')),12 'publish' => array(__('Published'), __('Published posts')), 13 13 'future' => array(__('Scheduled'), __('Scheduled posts')), 14 14 'pending' => array(__('Pending Review'), __('Pending posts')), 15 ' private' => array(__('Private'), __('Private posts')),16 'p ublish' => array(__('Published'), __('Publishedposts'))15 'draft' => array(__('Draft'), _c('Drafts|manage posts header')), 16 'private' => array(__('Private'), __('Private posts')) 17 17 ); 18 18
Note: See TracChangeset
for help on using the changeset viewer.