Changeset 14070 for trunk/wp-admin/ms-options.php
- Timestamp:
- 04/11/2010 10:41:54 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/ms-options.php
r14039 r14070 75 75 <input name="dashboard_blog" type="text" id="dashboard_blog" value="<?php echo esc_attr( $blogname ); ?>" class="regular-text" /> 76 76 <br /> 77 <?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 old site will be moved to the new site if changed. The new site will be created if it does not exist."); ?>77 <?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 old site will be moved to the new site if changed. The new site will be created if it does not exist.' ); ?> 78 78 </td> 79 79 </tr> … … 86 86 </select> 87 87 <br /> 88 <?php _e( "The default role for new users on the Dashboard site. 'Subscriber' or 'Contributor' roles are recommended."); ?>88 <?php _e( 'The default role for new users on the Dashboard site. “Subscriber” or “Contributor” roles are recommended.' ); ?> 89 89 </td> 90 90 </tr> … … 114 114 <p><?php _e( 'Disable or enable registration and who or what can be registered. (Default is disabled.)' ); ?></p> 115 115 <?php if ( is_subdomain_install() ) { 116 echo '<p>' . __( 'If registration is disabled, please set <code>NOBLOGREDIRECT</code> in <code>wp-config.php</code> to a urlyou will redirect visitors to if they visit a non-existent site.' ) . '</p>';116 echo '<p>' . __( 'If registration is disabled, please set <code>NOBLOGREDIRECT</code> in <code>wp-config.php</code> to a URL you will redirect visitors to if they visit a non-existent site.' ) . '</p>'; 117 117 } ?> 118 118 </td> … … 153 153 <textarea name="limited_email_domains" id="limited_email_domains" cols="45" rows="5"><?php echo wp_htmledit_pre( $limited_email_domains == '' ? '' : implode( "\n", (array) $limited_email_domains ) ); ?></textarea> 154 154 <br /> 155 <?php _e( 'If you want to limit site registrations to certain domains. Enter one domain per line.' ) ?>155 <?php _e( 'If you want to limit site registrations to certain domains. One domain per line.' ) ?> 156 156 </td> 157 157 </tr> … … 162 162 <textarea name="banned_email_domains" id="banned_email_domains" cols="45" rows="5"><?php echo wp_htmledit_pre( get_site_option( 'banned_email_domains' ) == '' ? '' : implode( "\n", (array) get_site_option( 'banned_email_domains' ) ) ); ?></textarea> 163 163 <br /> 164 <?php _e( 'If you want to ban domains from site registrations. Enter one domain per line.') ?>164 <?php _e( 'If you want to ban domains from site registrations. One domain per line.' ) ?> 165 165 </td> 166 166 </tr> … … 235 235 <label><input type="checkbox" id="mu_media_buttons_video" name="mu_media_buttons[video]" value="1"<?php checked( ! empty( $mu_media_buttons['video'] ) ) ?>/> <?php _e( 'Videos' ); ?></label><br /> 236 236 <label><input type="checkbox" id="mu_media_buttons_audio" name="mu_media_buttons[audio]" value="1"<?php checked( ! empty( $mu_media_buttons['audio'] ) ) ?>/> <?php _e( 'Music' ); ?></label><br /> 237 <?php _e( 'The media upload buttons to display on the "Write Post"page. Make sure you update the allowed upload file types below as well.' ); ?></td>237 <?php _e( 'The media upload buttons to display on the “Write Post” page. Make sure you update the allowed upload file types below as well.' ); ?></td> 238 238 </tr> 239 239
Note: See TracChangeset
for help on using the changeset viewer.