Changes in trunk/wp-admin/ms-options.php [15004:15132]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/ms-options.php
r15004 r15132 14 14 15 15 if ( ! current_user_can( 'manage_network_options' ) ) 16 16 wp_die( __( 'You do not have permission to access this page.' ) ); 17 17 18 18 $title = __( 'Network Options' ); 19 19 $parent_file = 'ms-admin.php'; 20 20 21 add_contextual_help($current_screen, 21 add_contextual_help($current_screen, 22 22 '<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’s options.') . '</p>' . 23 '<p>' . __('Operational settings has fields for the network’s name , admin email, and whether global terms will be disabled (the default) or maintained across all sites on the network.') . '</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 subscribedbut 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>' .23 '<p>' . __('Operational settings has fields for the network’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 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>' . 25 25 '<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>' . 26 26 '<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᾿s put in the first post, page, comment, comment author, and comment URL.') . '</p>' . 27 '<p>' . __('Upload settings control the size of the uploaded files and the amount of available upload space for each site You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).') . '</p>' .27 '<p>' . __('Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).') . '</p>' . 28 28 '<p>' . __('Checkboxes for media upload buttons set which are shown in the visual editor. If unchecked, a generic upload button is still visible; other media types can still be uploaded if on the allowed file types list.') . '</p>' . 29 29 '<p>' . __('Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.') . '</p>' . 30 '<p>' . __('Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Super Admin > Users and click on Username or the Edit hoverlink below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.') . '</p>' .30 '<p>' . __('Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Super Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.') . '</p>' . 31 31 '<p><strong>' . __('For more information:') . '</strong></p>' . 32 '<p>' . __('<a href="http://codex.wordpress.org/Super_Admin_Options_SubPanel" >Network Options Documentation</a>') . '</p>' .33 '<p>' . __('<a href="http://wordpress.org/support/" >Support Forums</a>') . '</p>'32 '<p>' . __('<a href="http://codex.wordpress.org/Super_Admin_Options_SubPanel" target="_blank">Network Options Documentation</a>') . '</p>' . 33 '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 34 34 ); 35 35 … … 83 83 <input name="dashboard_blog" type="text" id="dashboard_blog" value="<?php echo esc_attr( $blogname ); ?>" class="regular-text" /> 84 84 <br /> 85 <?php _e( 'Site path (“dashboard”, “control”, “manager”, etc.) or blog ID.<br />New users are added to this site as the user role defined below if they don’t have a site. Leave blank for the main site. Users with the subscriber role onold 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 (“dashboard”, “control”, “manager”, etc.) or blog ID.<br />New users are added to this site as the user role defined below if they don’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.' ); ?> 86 86 </td> 87 87 </tr> … … 192 192 <th scope="row"><label for="welcome_user_email"><?php _e( 'Welcome User Email' ) ?></label></th> 193 193 <td> 194 194 <textarea name="welcome_user_email" id="welcome_user_email" rows="5" cols="45" class="large-text"> 195 195 <?php echo wp_htmledit_pre( stripslashes( get_site_option( 'welcome_user_email' ) ) ) ?></textarea> 196 196 <br />
Note: See TracChangeset
for help on using the changeset viewer.