Make WordPress Core

Ticket #22451: 22451.9.sites.diff

File 22451.9.sites.diff, 3.0 KB (added by Ipstenu, 12 years ago)

Fixing the sites page. Bold columns doesn't exist. Also bad verbiage that was wrong.

  • wp-admin/network/sites.php

     
    2828        'id'      => 'overview',
    2929        'title'   => __('Overview'),
    3030        'content' =>
    31                 '<p>' . __('Add New takes you to the Add New Site screen. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.') . '</p>' .
    32                 '<p>' . __('This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.') . '</p>' .
    33                 '<p>' . __('Hovering over each site reveals seven options (three for the primary site):') . '</p>' .
    34                 '<ul><li>' . __('An Edit link to a separate Edit Site screen.') . '</li>' .
    35                 '<li>' . __('Dashboard leads to the Dashboard for that site.') . '</li>' .
    36                 '<li>' . __('Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.') . '</li>' .
    37                 '<li>' . __('Delete which is a permanent action after the confirmation screens.') . '</li>' .
    38                 '<li>' . __('Visit to go to the frontend site live.') . '</li></ul>' .
    39                 '<p>' . __('The site ID is used internally, and is not shown on the front end of the site or to users/viewers.') . '</p>' .
    40                 '<p>' . __('Clicking on bold headings can re-sort this table.') . '</p>'
     31                '<p>' . __('This is the main table of all sites on this network.') . '</p>' .
     32                '<p>' . __('Add New takes you to the Add New Site screen. Screen Options allows you to choose how many sites to display on one page as well as what columns display.') . '</p>' .
     33                '<p>' . __('You can search for a site by Name, ID number, or IP address. Wildcard values are accepted at the end of a search term (i.e. you can search for "um*" and both "umbrella" and "umberto" will be shown). You can not use a wildcard in the middle or at the begining of your search terms.'). '</p>' .
     34                '<p>' . __('Clicking on blue headings will re-sort this table.') . '</p>'
    4135) );
    4236
     37get_current_screen()->add_help_tab( array(
     38                'id' => 'actions',
     39                'title' => __( 'Actions' ),
     40                'content' =>
     41                        '<p>' . __( 'Hovering over each site reveals seven options (three for the primary site):' ) . '</p>' .
     42                        '<ul><li>' . __( 'An Edit link to a separate Edit Site screen.' ) . '</li>' .
     43                        '<li>' . __( 'Dashboard leads to the Dashboard for that site.' ) . '</li>' .
     44                        '<li>' . __( 'Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.' ) . '</li>' .
     45                        '<li>' . __( 'Delete which is a permanent action after the confirmation screens.' ) . '</li>' .
     46                        '<li>' . __( 'Visit takes you to the front end of that site.' ) . '</li></ul>'
     47) );
     48
    4349get_current_screen()->set_help_sidebar(
    4450        '<p><strong>' . __('For more information:') . '</strong></p>' .
    4551        '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .