Make WordPress Core

Changeset 15131


Ignore:
Timestamp:
06/03/2010 07:52:54 PM (14 years ago)
Author:
nacin
Message:

Help fixes. props kpdesign, fixes #13467.

Location:
trunk/wp-admin
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/ms-admin.php

    r15116 r15131  
    2525    '<p>' . __('This screen provides the network administrator with links to the screens for Sites and Users to either create a new site or user, or to search existing users and sites. Those screens are also accessible through the left-hand navigation in the Super Admin section.') . '</p>' .
    2626    '<p><strong>' . __('For more information:') . '</strong></p>' .
    27     '<p>' . __('<a href="http://codex.wordpress.org/Super_Admin_Super_Admin_Menu">Network Admin Documentation</a>') . '</p>' .
    28     '<p>' . __('<a href="http://wordpress.org/support/">Support Forums</a>') . '</p>'
     27    '<p>' . __('<a target="_blank" href="http://codex.wordpress.org/Super_Admin_Super_Admin_Menu">Documentation on Super Admin Menu</a>') . '</p>' .
     28    '<p>' . __('<a target="_blank" href="http://wordpress.org/support/">Support Forums</a>') . '</p>'
    2929);
    3030
  • trunk/wp-admin/ms-options.php

    r15129 r15131  
    1414
    1515if ( ! current_user_can( 'manage_network_options' ) )
    16     wp_die( __( 'You do not have permission to access this page.' ) );
     16    wp_die( __( 'You do not have permission to access this page.' ) );
    1717
    1818$title = __( 'Network Options' );
     
    2222    '<p>' . __('This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site&#8217;s options.') . '</p>' .
    2323    '<p>' . __('Operational settings has fields for the network&#8217;s name and admin email.') . '</p>' .
    24     '<p>' . __('Dashboard Site is an option to give a site to users who do not have a site on the system. Their default role is subscribed but that default can be changed. The Admin Notice Feed can provide a notice on all dashboards of the latest post via RSS or Atom, or provide no such notice if left blank.') . '</p>' .
     24    '<p>' . __('Dashboard Site is an option to give a site to users who do not have a site on the system. Their default role is Subscriber, but that default can be changed. The Admin Notice Feed can provide a notice on all dashboards of the latest post via RSS or Atom, or provide no such notice if left blank.') . '</p>' .
    2525    '<p>' . __('Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.') . '</p>' .
    2626    '<p>' . __('New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what&#8127;s put in the first post, page, comment, comment author, and comment URL.') . '</p>' .
     
    8383                    <input name="dashboard_blog" type="text" id="dashboard_blog" value="<?php echo esc_attr( $blogname ); ?>" class="regular-text" />
    8484                    <br />
    85                     <?php _e( 'Site path (&#8220;dashboard&#8221;, &#8220;control&#8221;, &#8220;manager&#8221;, etc.) or blog ID.<br />New users are added to this site as the user role defined below if they don&#8217;t have a site. Leave blank for the main site. Users with the subscriber role on old site will be moved to the new site if changed. The new site will be created if it does not exist.' ); ?>
     85                    <?php _e( 'Site path (&#8220;dashboard&#8221;, &#8220;control&#8221;, &#8220;manager&#8221;, etc.) or blog ID.<br />New users are added to this site as the user role defined below if they don&#8217;t have a site. Leave blank for the main site. Users with the Subscriber role on the old site will be moved to the new site if changed. The new site will be created if it does not exist.' ); ?>
    8686                </td>
    8787            </tr>
     
    192192                <th scope="row"><label for="welcome_user_email"><?php _e( 'Welcome User Email' ) ?></label></th>
    193193                <td>
    194                     <textarea name="welcome_user_email" id="welcome_user_email" rows="5" cols="45" class="large-text">
     194                    <textarea name="welcome_user_email" id="welcome_user_email" rows="5" cols="45" class="large-text">
    195195<?php echo wp_htmledit_pre( stripslashes( get_site_option( 'welcome_user_email' ) ) ) ?></textarea>
    196196                    <br />
  • trunk/wp-admin/ms-sites.php

    r15129 r15131  
    2424        '<p>' . __('Note that some fields in Site Options are grayed out and say Serialized Data. These are stored values in the database which you cannot change from here.') . '</p>' .
    2525        '<p><strong>' . __('For more information:') . '</strong></p>' .
    26         '<p>' . __('<a target="_blank" href="http://codex.wordpress.org/Super_Admin_Sites_Edit_Site">Site Editing Documentation</a>') . '</p>' .
     26        '<p>' . __('<a target="_blank" href="http://codex.wordpress.org/Super_Admin_Sites_Edit_Site">Documentation on Editing Sites</a>') . '</p>' .
    2727        '<p>' . __('<a target="_blank" href="http://wordpress.org/support/">Support Forums</a>') . '</p>'
    2828    );
     
    4242        '<p>' . __('If the admin email for the new site does not exist in the database, a new user will also be created.') . '</p>' .
    4343        '<p><strong>' . __('For more information:') . '</strong></p>' .
    44         '<p>' . __('<a target="_blank" href="http://codex.wordpress.org/Super_Admin_Sites_SubPanel">Sites Documentation</a>') . '</p>' .
     44        '<p>' . __('<a target="_blank" href="http://codex.wordpress.org/Super_Admin_Sites_SubPanel">Documentation on Sites</a>') . '</p>' .
    4545        '<p>' . __('<a target="_blank" href="http://wordpress.org/support/">Support Forums</a>') . '</p>'
    4646    );
  • trunk/wp-admin/ms-themes.php

    r15129 r15131  
    2121    '<p>' . __('Themes can be enabled on a site by site basis by the network admin on the Edit Site screen you go to via the Edit action link on the Sites screen.') . '</p>' .
    2222    '<p><strong>' . __('For more information:') . '</strong></p>' .
    23     '<p>' . __('<a href="http://codex.wordpress.org/Super_Admin_Themes_SubPanel">Network Themes Documentation</a>') . '</p>' .
    24     '<p>' . __('<a href="http://wordpress.org/support/">Support Forums</a>') . '</p>'
     23    '<p>' . __('<a target="_blank" href="http://codex.wordpress.org/Super_Admin_Themes_SubPanel">Documentation on Network Themes</a>') . '</p>' .
     24    '<p>' . __('<a target="_blank" href="http://wordpress.org/support/">Support Forums</a>') . '</p>'
    2525);
    2626
Note: See TracChangeset for help on using the changeset viewer.