Ticket #12436: ms-options.patch
| File ms-options.patch, 5.4 KB (added by , 16 years ago) |
|---|
-
wp-admin/ms-options.php
40 40 <td> 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> 46 46 … … 67 67 <input name="dashboard_blog_orig" type="hidden" id="dashboard_blog_orig" value="<?php echo esc_attr($blogname); ?>" /> 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> 73 73 <tr valign="top"> … … 78 78 ?> 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> 84 84 <tr valign="top"> … … 128 128 <a name='addnewusers'></a> 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> 134 134 … … 148 148 $limited_email_domains = str_replace( ' ', "\n", $limited_email_domains ); ?> 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> 154 154 … … 157 157 <td> 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> 163 163 … … 186 186 <td> 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> 192 192 <tr valign="top"> … … 194 194 <td> 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> 200 200 <tr valign="top"> … … 202 202 <td> 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> 208 208 <tr valign="top"> … … 210 210 <td> 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> 216 216 <tr valign="top"> … … 218 218 <td> 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> 224 224 </table>