Ticket #14585: 14585.3.diff
File 14585.3.diff, 2.5 KB (added by , 13 years ago) |
---|
-
wp-admin/includes/default-list-tables.php
2901 2901 ); 2902 2902 2903 2903 $actions['edit'] = '<span class="edit"><a href="' . esc_url( admin_url( 'ms-sites.php?action=editblog&id=' . $blog['blog_id'] ) ) . '">' . __( 'Edit' ) . '</a></span>'; 2904 $actions['backend'] = "<span class='backend'><a href='" . esc_url( get_admin_url( $blog['blog_id'] ) ) . "' class='edit'>" . __( ' Backend' ) . '</a></span>';2904 $actions['backend'] = "<span class='backend'><a href='" . esc_url( get_admin_url( $blog['blog_id'] ) ) . "' class='edit'>" . __( 'Dashboard' ) . '</a></span>'; 2905 2905 if ( $current_site->blog_id != $blog['blog_id'] ) { 2906 2906 if ( get_blog_status( $blog['blog_id'], 'deleted' ) == '1' ) 2907 2907 $actions['activate'] = '<span class="activate"><a href="' . esc_url( admin_url( 'ms-edit.php?action=confirm&action2=activateblog&id=' . $blog['blog_id'] . '&msg=' . urlencode( sprintf( __( 'You are about to activate the site %s' ), $blogname ) ) ) ) . '">' . __( 'Activate' ) . '</a></span>'; -
wp-admin/network/sites.php
33 33 '<p>' . __('Add New takes you farther down on this same page. 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>' . 34 34 '<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>' . 35 35 '<p>' . __('Hovering over each site reveals seven options (three for the primary site):') . '</p>' . 36 '<ul><li>' . __(' an Edit link to a separate Edit Site screen.') . '</li>' .37 '<li>' . __(' Backend means the Dashboard for that site.') . '</li>' .36 '<ul><li>' . __('An Edit link to a separate Edit Site screen.') . '</li>' . 37 '<li>' . __('Dashboard means the Dashboard for that site.') . '</li>' . 38 38 '<li>' . __('Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.') . '</li>' . 39 39 '<li>' . __('Delete which is a permanent action after the confirmations screen.') . '</li>' . 40 40 '<li>' . __('Visit to go to the frontend site live.') . '</li></ul>' .