Make WordPress Core

Ticket #22451: 22451-ms-sites.diff

File 22451-ms-sites.diff, 2.4 KB (added by DrewAPicture, 12 years ago)
  • wp-admin/network/sites.php

     
    3030        'content' =>
    3131                '<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>' .
    3232                '<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>'
     33                '<p>' . __( 'Clicking on bold column headings can re-sort this table.' ) . '</p>'
    4134) );
    4235
     36get_current_screen()->add_help_tab( array(
     37        'id' => 'actions',
     38        'title' => __( 'Actions' ),
     39        'content' =>
     40                '<p>' . __( 'Hovering over each site reveals seven options (three for the primary site):' ) . '</p>' .
     41                '<ul><li>' . __( 'An Edit link to a separate Edit Site screen.' ) . '</li>' .
     42                '<li>' . __( 'Dashboard leads to the Dashboard for that site.' ) . '</li>' .
     43                '<li>' . __( 'Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.' ) . '</li>' .
     44                '<li>' . __( 'Delete which is a permanent action after the confirmation screens.' ) . '</li>' .
     45                '<li>' . __( 'Visit takes you to the front end of that site.' ) . '</li></ul>'
     46) );
     47
    4348get_current_screen()->set_help_sidebar(
    4449        '<p><strong>' . __('For more information:') . '</strong></p>' .
    4550        '<p>' . __('<a href="http://codex.wordpress.org/Network_Admin_Sites_Screen" target="_blank">Documentation on Site Management</a>') . '</p>' .