Make WordPress Core


Ignore:
Timestamp:
03/18/2010 05:46:25 PM (15 years ago)
Author:
nacin
Message:

Change "Blog" to "Site" in the Settings panels.

File:
1 edited

Legend:

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

    r11855 r13750  
    1010require_once('./admin.php');
    1111
    12 if ( ! current_user_can('manage_options') )
    13     wp_die(__('You do not have sufficient permissions to manage options for this blog.'));
     12if ( ! current_user_can( 'manage_options' ) )
     13    wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
    1414
    1515$title = __('Privacy Settings');
     
    2828<table class="form-table">
    2929<tr valign="top">
    30 <th scope="row"><?php _e('Blog Visibility') ?> </th>
    31 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Blog Visibility') ?> </span></legend>
    32 <p><input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> />
    33 <label for="blog-public"><?php _e('I would like my blog to be visible to everyone, including search engines (like Google, Bing, Technorati) and archivers');?></label></p>
    34 <p><input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked('0', get_option('blog_public')); ?> />
    35 <label for="blog-norobots"><?php _e('I would like to block search engines, but allow normal visitors'); ?></label></p>
     30<th scope="row"><?php _e('Site Visibility') ?> </th>
     31<td><fieldset><legend class="screen-reader-text"><span><?php _e('Site Visibility') ?> </span></legend>
     32<input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> />
     33<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/>
     34<input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked('0', get_option('blog_public')); ?> />
     35<label for="blog-norobots"><?php _e('I would like to block search engines, but allow normal visitors'); ?></label>
    3636<?php do_action('blog_privacy_selector'); ?>
    3737</fieldset></td>
Note: See TracChangeset for help on using the changeset viewer.