Make WordPress Core


Ignore:
Timestamp:
02/14/2008 05:19:39 AM (19 years ago)
Author:
ryan
Message:

Styling updates for settings. see #5851

File:
1 edited

Legend:

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

    r6838 r6841  
    1414<table class="niceblue">
    1515<tr valign="top">
    16 <th scope="row"><?php _e('Blog title:') ?></th>
     16<th scope="row"><?php _e('Blog Title') ?></th>
    1717<td><input name="blogname" type="text" id="blogname" value="<?php form_option('blogname'); ?>" size="40" /></td>
    1818</tr>
    1919<tr valign="top">
    20 <th scope="row"><?php _e('Tagline:') ?></th>
     20<th scope="row"><?php _e('Tagline') ?></th>
    2121<td><input name="blogdescription" type="text" id="blogdescription" style="width: 95%" value="<?php form_option('blogdescription'); ?>" size="45" />
    2222<br />
     
    2424</tr>
    2525<tr valign="top">
    26 <th scope="row"><?php _e('WordPress address (URL):') ?></th>
     26<th scope="row"><?php _e('WordPress address (URL)') ?></th>
    2727<td><input name="siteurl" type="text" id="siteurl" value="<?php form_option('siteurl'); ?>" size="40" class="code<?php if ( defined( 'WP_SITEURL' ) ) : ?> disabled" disabled="disabled"<?php else: ?>"<?php endif; ?> /></td>
    2828</tr>
    2929<tr valign="top">
    30 <th scope="row"><?php _e('Blog address (URL):') ?></th>
     30<th scope="row"><?php _e('Blog address (URL)') ?></th>
    3131<td><input name="home" type="text" id="home" value="<?php form_option('home'); ?>" size="40" class="code<?php if ( defined( 'WP_HOME' ) ) : ?> disabled" disabled="disabled"<?php else: ?>"<?php endif; ?> /><br /><?php _e('Enter the address here if you want your blog homepage <a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">to be different from the directory</a> you installed WordPress.'); ?></td>
    3232</tr>
    3333<tr valign="top">
    34 <th scope="row"><?php _e('E-mail address:') ?> </th>
     34<th scope="row"><?php _e('E-mail address') ?> </th>
    3535<td><input name="admin_email" type="text" id="admin_email" value="<?php form_option('admin_email'); ?>" size="40" class="code" />
    3636<br />
     
    3838</tr>
    3939<tr valign="top">
    40 <th scope="row"><?php _e('Membership:') ?></th>
     40<th scope="row"><?php _e('Membership') ?></th>
    4141<td> <label for="users_can_register">
    4242<input name="users_can_register" type="checkbox" id="users_can_register" value="1" <?php checked('1', get_option('users_can_register')); ?> />
     
    4949</tr>
    5050<tr valign="top">
    51 <th scope="row"><?php _e('New User Default Role:') ?></th>
     51<th scope="row"><?php _e('New User Default Role') ?></th>
    5252<td><label for="default_role">
    5353<select name="default_role" id="default_role"><?php wp_dropdown_roles( get_option('default_role') ); ?></select></label>
     
    5555</tr>
    5656<tr>
    57 <th scope="row"><?php _e('<abbr title="Coordinated Universal Time">UTC</abbr> time is:') ?> </th>
     57<th scope="row"><?php _e('<abbr title="Coordinated Universal Time">UTC</abbr> time is') ?> </th>
    5858<td><code><?php echo gmdate(__('Y-m-d g:i:s a')); ?></code></td>
    5959</tr>
    6060<tr>
    61 <th scope="row"><?php _e('Times in the blog should differ by:') ?> </th>
     61<th scope="row"><?php _e('Times in the blog should differ by') ?> </th>
    6262<td><input name="gmt_offset" type="text" id="gmt_offset" size="2" value="<?php form_option('gmt_offset'); ?>" />
    6363<?php _e('hours') ?> (<?php _e('Your timezone offset, for example <code>-6</code> for Central Time.'); ?>)</td>
    6464</tr>
    6565<tr>
    66 <th scope="row"><?php _e('Default date format:') ?></th>
     66<th scope="row"><?php _e('Date Format') ?></th>
    6767<td><input name="date_format" type="text" id="date_format" size="30" value="<?php form_option('date_format'); ?>" /><br />
    6868<?php _e('Output:') ?> <strong><?php echo mysql2date(get_option('date_format'), current_time('mysql')); ?></strong></td>
    6969</tr>
    7070<tr>
    71 <th scope="row"><?php _e('Default time format:') ?></th>
     71<th scope="row"><?php _e('Time Format') ?></th>
    7272<td><input name="time_format" type="text" id="time_format" size="30" value="<?php form_option('time_format'); ?>" /><br />
    7373<?php _e('Output:') ?> <strong><?php echo gmdate(get_option('time_format'), current_time('timestamp')); ?></strong></td>
     
    7878</tr>
    7979<tr>
    80 <th scope="row"><?php _e('Weeks in the calendar should start on:') ?></th>
     80<th scope="row"><?php _e('Week Starts On') ?></th>
    8181<td><select name="start_of_week" id="start_of_week">
    8282<?php
Note: See TracChangeset for help on using the changeset viewer.