Ticket #22119: 22119.diff
File 22119.diff, 1.5 KB (added by , 12 years ago) |
---|
-
wp-admin/includes/dashboard.php
76 76 77 77 // QuickPress Widget 78 78 if ( is_blog_admin() && current_user_can('edit_posts') ) 79 wp_add_dashboard_widget( 'dashboard_quick_press', __( 'Quick Press' ), 'wp_dashboard_quick_press' );79 wp_add_dashboard_widget( 'dashboard_quick_press', __( 'Quick Post' ), 'wp_dashboard_quick_press' ); 80 80 81 81 // Recent Drafts 82 82 if ( is_blog_admin() && current_user_can('edit_posts') ) -
wp-admin/index.php
77 77 if ( current_user_can( 'publish_posts' ) ) 78 78 $help .= '<p>' . __('<strong>Incoming Links</strong> - Shows links to your site found by Google Blog Search.') . '</p>'; 79 79 if ( current_user_can( 'edit_posts' ) ) { 80 $help .= '<p>' . __('<strong>Quick Press</strong> - Allows you to create a new post and either publish it or save it as a draft.') . '</p>';80 $help .= '<p>' . __('<strong>Quick Post</strong> - Allows you to create a new post and either publish it or save it as a draft.') . '</p>'; 81 81 $help .= '<p>' . __('<strong>Recent Drafts</strong> - Displays links to the 5 most recent draft posts you’ve started.') . '</p>'; 82 82 } 83 83 $help .= '<p>' . __('<strong>WordPress Blog</strong> - Latest news from the official WordPress project.') . '</p>';