Make WordPress Core


Ignore:
Timestamp:
03/19/2010 10:09:34 PM (15 years ago)
Author:
nacin
Message:

MS admin string improvements. fixes #12436, props mrmist.

File:
1 edited

Legend:

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

    r13713 r13771  
    55    wp_die( __('Multisite support is not enabled.') );
    66
    7 $title = __('Options');
     7$title = __('Network Options');
    88$parent_file = 'ms-admin.php';
    99
     
    4141                    <input name="admin_email" type="text" id="admin_email" style="width: 95%" value="<?php echo esc_attr( get_site_option('admin_email') ) ?>" size="45" />
    4242                    <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 ); ?>
    4444                </td>
    4545            </tr>
     
    6868                    <input name="dashboard_blog" type="text" id="dashboard_blog" value="<?php echo esc_attr($blogname); ?>" size="30" />
    6969                    <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." ); ?>
    7171                </td>
    7272            </tr>
     
    7979                    </select>
    8080                    <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." ); ?>
    8282                </td>
    8383            </tr>
     
    129129                    <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 />
    130130                    <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 New page.') ?>
     131                    <?php _e('Allow site administrators to add new users to their site via the "Users->Add New" page.') ?>
    132132                </td>
    133133            </tr>
     
    149149                    <textarea name="limited_email_domains" id="limited_email_domains" cols='40' rows='5'><?php echo $limited_email_domains == '' ? '' : @implode( "\n", $limited_email_domains ); ?></textarea>
    150150                    <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.') ?>
    152152                </td>
    153153            </tr>
     
    158158                    <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>
    159159                    <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.') ?>
    161161                </td>
    162162            </tr>
     
    187187                    <textarea name="first_post" id="first_post" rows='5' cols='45' style="width: 95%"><?php echo stripslashes( get_site_option('first_post') ) ?></textarea>
    188188                    <br />
    189                     <?php _e('First post on a new site.') ?>
     189                    <?php _e('The first post on a new site.') ?>
    190190                </td>
    191191            </tr>
     
    195195                    <textarea name="first_page" id="first_page" rows='5' cols='45' style="width: 95%"><?php echo stripslashes( get_site_option('first_page') ) ?></textarea>
    196196                    <br />
    197                     <?php _e('First page on a new site.') ?>
     197                    <?php _e('The first page on a new site.') ?>
    198198                </td>
    199199            </tr>
     
    203203                    <textarea name="first_comment" id="first_comment" rows='5' cols='45' style="width: 95%"><?php echo stripslashes( get_site_option('first_comment') ) ?></textarea>
    204204                    <br />
    205                     <?php _e('First comment on a new site.') ?>
     205                    <?php _e('The first comment on a new site.') ?>
    206206                </td>
    207207            </tr>
     
    211211                    <input type="text" size='40' name="first_comment_author" id="first_comment_author" value="<?php echo get_site_option('first_comment_author') ?>" />
    212212                    <br />
    213                     <?php _e('Author of first comment on a new site.') ?>
     213                    <?php _e('The author of the first comment on a new site.') ?>
    214214                </td>
    215215            </tr>
     
    219219                    <input type="text" size='40' name="first_comment_url" id="first_comment_url" value="<?php echo esc_attr(get_site_option('first_comment_url')) ?>" />
    220220                    <br />
    221                     <?php _e('URL on first comment on a new site.') ?>
     221                    <?php _e('The URL for the first comment on a new site.') ?>
    222222                </td>
    223223            </tr>
Note: See TracChangeset for help on using the changeset viewer.