Make WordPress Core

Changeset 18554


Ignore:
Timestamp:
08/16/2011 06:53:19 AM (13 years ago)
Author:
nacin
Message:

First pass on clarifying Settings > Privacy. props designsimply, markjaquith. see #16416.

File:
1 edited

Legend:

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

    r18092 r18554  
    3737<table class="form-table">
    3838<tr valign="top">
    39 <th scope="row"><?php _e('Site Visibility') ?> </th>
    40 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Site Visibility') ?> </span></legend>
     39<th scope="row"><?php _e( 'Site Visibility' ); ?> </th>
     40<td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Site Visibility' ); ?> </span></legend>
    4141<input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> />
    42 <label for="blog-public"><?php _e('I would like my site to be visible to everyone, including search engines (like Google, Bing, Technorati) and archivers');?></label><br/>
     42<label for="blog-public"><?php _e( 'Allow search engines to index this site.' );?></label><br/>
    4343<input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked('0', get_option('blog_public')); ?> />
    44 <label for="blog-norobots"><?php _e('I would like to block search engines, but allow normal visitors'); ?></label>
     44<label for="blog-norobots"><?php _e( 'Ask search engines not to index this site.' ); ?></label>
     45<p class="description"><?php _e( 'Note: Neither of these options blocks access to your site &mdash; it is up to search engines to honor your request.' ); ?></p>
    4546<?php do_action('blog_privacy_selector'); ?>
    4647</fieldset></td>
Note: See TracChangeset for help on using the changeset viewer.