Changeset 13771
- Timestamp:
- 03/19/2010 10:09:34 PM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/ms-options.php
r13713 r13771 5 5 wp_die( __('Multisite support is not enabled.') ); 6 6 7 $title = __(' Options');7 $title = __('Network Options'); 8 8 $parent_file = 'ms-admin.php'; 9 9 … … 41 41 <input name="admin_email" type="text" id="admin_email" style="width: 95%" value="<?php echo esc_attr( get_site_option('admin_email') ) ?>" size="45" /> 42 42 <br /> 43 <?php printf( __( 'Registration and support mails will come from this address. Make it generic like "support@%s"' ), $current_site->domain ); ?>43 <?php printf( __( 'Registration and support emails will come from this address. An address such as "support@%s" is recommended.' ), $current_site->domain ); ?> 44 44 </td> 45 45 </tr> … … 68 68 <input name="dashboard_blog" type="text" id="dashboard_blog" value="<?php echo esc_attr($blogname); ?>" size="30" /> 69 69 <br /> 70 <?php _e( "Blogname ('dashboard', 'control', 'manager', etc) or blog id.<br />New users are added to this site as subscribers (or the user role defined below) if they don't have a site. Leave blank for the main site. 'Subscriber' users on old site will be moved to the new site if changed. New site will be created if it does not exist." ); ?>70 <?php _e( "Blogname ('dashboard', 'control', 'manager', etc) or blog id.<br />New users are added to this site as subscribers (or the user role defined below) if they don't have a site. Leave blank for the main site. 'Subscriber' users on old site will be moved to the new site if changed. The new site will be created if it does not exist." ); ?> 71 71 </td> 72 72 </tr> … … 79 79 </select> 80 80 <br /> 81 <?php _e( "The default role for new users on the Dashboard site. This should probably be 'Subscriber' or maybe 'Contributor'." ); ?>81 <?php _e( "The default role for new users on the Dashboard site. 'Subscriber' or 'Contributor' roles are recommended." ); ?> 82 82 </td> 83 83 </tr> … … 129 129 <input name="add_new_users" type="radio" id="add_new_users1" value='1' <?php checked( get_site_option('add_new_users'), 1 ) ?> /> <?php _e('Yes'); ?><br /> 130 130 <input name="add_new_users" type="radio" id="add_new_users2" value='0' <?php checked( get_site_option('add_new_users'), 0 ) ?> /> <?php _e('No'); ?><br /> 131 <?php _e('Allow site administrators to add new users to their site via the Users->Add Newpage.') ?>131 <?php _e('Allow site administrators to add new users to their site via the "Users->Add New" page.') ?> 132 132 </td> 133 133 </tr> … … 149 149 <textarea name="limited_email_domains" id="limited_email_domains" cols='40' rows='5'><?php echo $limited_email_domains == '' ? '' : @implode( "\n", $limited_email_domains ); ?></textarea> 150 150 <br /> 151 <?php _e('If you want to limit site registrations to certain domains. One domain per line.') ?>151 <?php _e('If you want to limit site registrations to certain domains. Enter one domain per line.') ?> 152 152 </td> 153 153 </tr> … … 158 158 <textarea name="banned_email_domains" id="banned_email_domains" cols='40' rows='5'><?php echo get_site_option('banned_email_domains') == '' ? '' : @implode( "\n", get_site_option('banned_email_domains') ); ?></textarea> 159 159 <br /> 160 <?php _e('If you want to ban certain email domains from site registrations. One domain per line.') ?>160 <?php _e('If you want to ban domains from site registrations. Enter one domain per line.') ?> 161 161 </td> 162 162 </tr> … … 187 187 <textarea name="first_post" id="first_post" rows='5' cols='45' style="width: 95%"><?php echo stripslashes( get_site_option('first_post') ) ?></textarea> 188 188 <br /> 189 <?php _e(' First post on a new site.') ?>189 <?php _e('The first post on a new site.') ?> 190 190 </td> 191 191 </tr> … … 195 195 <textarea name="first_page" id="first_page" rows='5' cols='45' style="width: 95%"><?php echo stripslashes( get_site_option('first_page') ) ?></textarea> 196 196 <br /> 197 <?php _e(' First page on a new site.') ?>197 <?php _e('The first page on a new site.') ?> 198 198 </td> 199 199 </tr> … … 203 203 <textarea name="first_comment" id="first_comment" rows='5' cols='45' style="width: 95%"><?php echo stripslashes( get_site_option('first_comment') ) ?></textarea> 204 204 <br /> 205 <?php _e(' First comment on a new site.') ?>205 <?php _e('The first comment on a new site.') ?> 206 206 </td> 207 207 </tr> … … 211 211 <input type="text" size='40' name="first_comment_author" id="first_comment_author" value="<?php echo get_site_option('first_comment_author') ?>" /> 212 212 <br /> 213 <?php _e(' Author offirst comment on a new site.') ?>213 <?php _e('The author of the first comment on a new site.') ?> 214 214 </td> 215 215 </tr> … … 219 219 <input type="text" size='40' name="first_comment_url" id="first_comment_url" value="<?php echo esc_attr(get_site_option('first_comment_url')) ?>" /> 220 220 <br /> 221 <?php _e(' URL onfirst comment on a new site.') ?>221 <?php _e('The URL for the first comment on a new site.') ?> 222 222 </td> 223 223 </tr> -
trunk/wp-admin/ms-themes.php
r13301 r13771 2 2 require_once('admin.php'); 3 3 4 $title = __(' WordPress › Admin ›Themes');4 $title = __('Network Themes'); 5 5 $parent_file = 'ms-admin.php'; 6 6 require_once('admin-header.php'); … … 21 21 <form action='ms-edit.php?action=updatethemes' method='post'> 22 22 <?php screen_icon(); ?> 23 <h2><?php _e(' SiteThemes') ?></h2>24 <p><?php _e('Disable themes site-wide. You can enable themes on a site by site basis.') ?></p>23 <h2><?php _e('Network Themes') ?></h2> 24 <p><?php _e('Disable themes network-wide. You can enable themes on a site by site basis.') ?></p> 25 25 <table class="widefat"> 26 26 <thead>
Note: See TracChangeset
for help on using the changeset viewer.