mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-16 23:00:21 +00:00
Change "Blog" to "Site" in the Settings panels.
git-svn-id: https://develop.svn.wordpress.org/trunk@13750 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
require_once( 'admin.php' );
|
||||
|
||||
if ( ! current_user_can( 'manage_options' ) )
|
||||
wp_die( __( 'You do not have sufficient permissions to manage options for this blog.' ) );
|
||||
wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
|
||||
|
||||
$title = __( 'Reading Settings' );
|
||||
$parent_file = 'options-general.php';
|
||||
@@ -75,7 +75,7 @@ include( 'admin-header.php' );
|
||||
<tr valign="top">
|
||||
<th scope="row"><label for="blog_charset"><?php _e( 'Encoding for pages and feeds' ); ?></label></th>
|
||||
<td><input name="blog_charset" type="text" id="blog_charset" value="<?php form_option( 'blog_charset' ); ?>" class="regular-text" />
|
||||
<span class="description"><?php _e( 'The <a href="http://codex.wordpress.org/Glossary#Character_set">character encoding</a> of your blog (UTF-8 is recommended, if you are adventurous there are some <a href="http://en.wikipedia.org/wiki/Character_set">other encodings</a>)' ); ?></span></td>
|
||||
<span class="description"><?php _e( 'The <a href="http://codex.wordpress.org/Glossary#Character_set">character encoding</a> of your site (UTF-8 is recommended, if you are adventurous there are some <a href="http://en.wikipedia.org/wiki/Character_set">other encodings</a>)' ); ?></span></td>
|
||||
</tr>
|
||||
<?php do_settings_fields( 'reading', 'default' ); ?>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user