Make WordPress Core

Ticket #22119: 22119.diff

File 22119.diff, 1.5 KB (added by bradparbs, 12 years ago)

Patch to rename QuickPress to Quick Post

  • wp-admin/includes/dashboard.php

     
    7676
    7777        // QuickPress Widget
    7878        if ( is_blog_admin() && current_user_can('edit_posts') )
    79                 wp_add_dashboard_widget( 'dashboard_quick_press', __( 'QuickPress' ), 'wp_dashboard_quick_press' );
     79                wp_add_dashboard_widget( 'dashboard_quick_press', __( 'Quick Post' ), 'wp_dashboard_quick_press' );
    8080
    8181        // Recent Drafts
    8282        if ( is_blog_admin() && current_user_can('edit_posts') )
  • wp-admin/index.php

     
    7777if ( current_user_can( 'publish_posts' ) )
    7878        $help .= '<p>' . __('<strong>Incoming Links</strong> - Shows links to your site found by Google Blog Search.') . '</p>';
    7979if ( current_user_can( 'edit_posts' ) ) {
    80         $help .= '<p>' . __('<strong>QuickPress</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>';
    8181        $help .= '<p>' . __('<strong>Recent Drafts</strong> - Displays links to the 5 most recent draft posts you&#8217;ve started.') . '</p>';
    8282}
    8383$help .= '<p>' . __('<strong>WordPress Blog</strong> - Latest news from the official WordPress project.') . '</p>';