Make WordPress Core


Ignore:
Timestamp:
08/11/2011 06:17:30 PM (13 years ago)
Author:
ryan
Message:

Use title case. Props trepmal. fixes #17773

File:
1 edited

Legend:

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

    r18386 r18533  
    9393<?php if ( !is_multisite() ) { ?>
    9494<tr valign="top">
    95 <th scope="row"><label for="siteurl"><?php _e('WordPress address (URL)') ?></label></th>
     95<th scope="row"><label for="siteurl"><?php _e('WordPress Address (URL)') ?></label></th>
    9696<td><input name="siteurl" type="text" id="siteurl" value="<?php form_option('siteurl'); ?>"<?php disabled( defined( 'WP_SITEURL' ) ); ?> class="regular-text code<?php if ( defined( 'WP_SITEURL' ) ) echo ' disabled' ?>" /></td>
    9797</tr>
    9898<tr valign="top">
    99 <th scope="row"><label for="home"><?php _e('Site address (URL)') ?></label></th>
     99<th scope="row"><label for="home"><?php _e('Site Address (URL)') ?></label></th>
    100100<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' ?>" />
    101101<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>
    102102</tr>
    103103<tr valign="top">
    104 <th scope="row"><label for="admin_email"><?php _e('E-mail address') ?> </label></th>
     104<th scope="row"><label for="admin_email"><?php _e('E-mail Address') ?> </label></th>
    105105<td><input name="admin_email" type="text" id="admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text" />
    106106<span class="description"><?php _e('This address is used for admin purposes, like new user notification.') ?></span></td>
     
    121121<?php } else { ?>
    122122<tr valign="top">
    123 <th scope="row"><label for="new_admin_email"><?php _e('E-mail address') ?> </label></th>
     123<th scope="row"><label for="new_admin_email"><?php _e('E-mail Address') ?> </label></th>
    124124<td><input name="new_admin_email" type="text" id="new_admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text code" />
    125125<span class="description"><?php _e('This address is used for admin purposes. If you change this we will send you an e-mail at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>') ?></span>
     
    297297?>
    298298    <tr valign="top">
    299         <th width="33%" scope="row"><?php _e('Site language:') ?></th>
     299        <th width="33%" scope="row"><?php _e('Site Language') ?></th>
    300300        <td>
    301301            <select name="WPLANG" id="WPLANG">
Note: See TracChangeset for help on using the changeset viewer.