Changeset 13750 for trunk/wp-admin/options-general.php
- Timestamp:
- 03/18/2010 05:46:25 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/options-general.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-general.php
r13705 r13750 10 10 require_once('./admin.php'); 11 11 12 if ( ! current_user_can( 'manage_options') )13 wp_die( __('You do not have sufficient permissions to manage options for this blog.'));12 if ( ! current_user_can( 'manage_options' ) ) 13 wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) ); 14 14 15 15 $title = __('General Settings'); … … 65 65 <table class="form-table"> 66 66 <tr valign="top"> 67 <th scope="row"><label for="blogname"><?php _e(' BlogTitle') ?></label></th>67 <th scope="row"><label for="blogname"><?php _e('Site Title') ?></label></th> 68 68 <td><input name="blogname" type="text" id="blogname" value="<?php form_option('blogname'); ?>" class="regular-text" /></td> 69 69 </tr> … … 71 71 <th scope="row"><label for="blogdescription"><?php _e('Tagline') ?></label></th> 72 72 <td><input name="blogdescription" type="text" id="blogdescription" value="<?php form_option('blogdescription'); ?>" class="regular-text" /> 73 <span class="description"><?php _e('In a few words, explain what this blogis about.') ?></span></td>73 <span class="description"><?php _e('In a few words, explain what this site is about.') ?></span></td> 74 74 </tr> 75 75 <?php if ( !is_multisite() ) { ?> … … 79 79 </tr> 80 80 <tr valign="top"> 81 <th scope="row"><label for="home"><?php _e(' Blogaddress (URL)') ?></label></th>81 <th scope="row"><label for="home"><?php _e('Site address (URL)') ?></label></th> 82 82 <td><input name="home" type="text" id="home" value="<?php form_option('home'); ?>"<?php disabled( defined( 'WP_HOME' ) ); ?> class="regular-text code<?php if ( defined( 'WP_HOME' ) ) echo ' disabled' ?>" /> 83 <span class="description"><?php _e('Enter the address here if you want your bloghomepage <a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">to be different from the directory</a> you installed WordPress.'); ?></span></td>83 <span class="description"><?php _e('Enter the address here if you want your site homepage <a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">to be different from the directory</a> you installed WordPress.'); ?></span></td> 84 84 </tr> 85 85 <tr valign="top"> … … 323 323 ?> 324 324 <tr valign="top"> 325 <th width="33%" scope="row"><?php _e(' Bloglanguage:') ?></th>325 <th width="33%" scope="row"><?php _e('Site language:') ?></th> 326 326 <td> 327 327 <select name="WPLANG" id="WPLANG">
Note: See TracChangeset
for help on using the changeset viewer.