|
13 | 13 | <?php wp_nonce_field('update-options') ?> |
14 | 14 | <table class="niceblue"> |
15 | 15 | <tr valign="top"> |
16 | | -<th scope="row"><?php _e('Blog title:') ?></th> |
| 16 | +<th scope="row"><?php _e('Blog Title') ?></th> |
17 | 17 | <td><input name="blogname" type="text" id="blogname" value="<?php form_option('blogname'); ?>" size="40" /></td> |
18 | 18 | </tr> |
19 | 19 | <tr valign="top"> |
20 | | -<th scope="row"><?php _e('Tagline:') ?></th> |
| 20 | +<th scope="row"><?php _e('Tagline') ?></th> |
21 | 21 | <td><input name="blogdescription" type="text" id="blogdescription" style="width: 95%" value="<?php form_option('blogdescription'); ?>" size="45" /> |
22 | 22 | <br /> |
23 | 23 | <?php _e('In a few words, explain what this blog is about.') ?></td> |
24 | 24 | </tr> |
25 | 25 | <tr valign="top"> |
26 | | -<th scope="row"><?php _e('WordPress address (URL):') ?></th> |
| 26 | +<th scope="row"><?php _e('WordPress address (URL)') ?></th> |
27 | 27 | <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> |
28 | 28 | </tr> |
29 | 29 | <tr valign="top"> |
30 | | -<th scope="row"><?php _e('Blog address (URL):') ?></th> |
| 30 | +<th scope="row"><?php _e('Blog address (URL)') ?></th> |
31 | 31 | <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> |
32 | 32 | </tr> |
33 | 33 | <tr valign="top"> |
34 | | -<th scope="row"><?php _e('E-mail address:') ?> </th> |
| 34 | +<th scope="row"><?php _e('E-mail address') ?> </th> |
35 | 35 | <td><input name="admin_email" type="text" id="admin_email" value="<?php form_option('admin_email'); ?>" size="40" class="code" /> |
36 | 36 | <br /> |
37 | 37 | <?php _e('This address is used only for admin purposes.') ?></td> |
38 | 38 | </tr> |
39 | 39 | <tr valign="top"> |
40 | | -<th scope="row"><?php _e('Membership:') ?></th> |
| 40 | +<th scope="row"><?php _e('Membership') ?></th> |
41 | 41 | <td> <label for="users_can_register"> |
42 | 42 | <input name="users_can_register" type="checkbox" id="users_can_register" value="1" <?php checked('1', get_option('users_can_register')); ?> /> |
43 | 43 | <?php _e('Anyone can register') ?></label><br /> |
|
48 | 48 | </td> |
49 | 49 | </tr> |
50 | 50 | <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> |
52 | 52 | <td><label for="default_role"> |
53 | 53 | <select name="default_role" id="default_role"><?php wp_dropdown_roles( get_option('default_role') ); ?></select></label> |
54 | 54 | </td> |
55 | 55 | </tr> |
56 | 56 | <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> |
58 | 58 | <td><code><?php echo gmdate(__('Y-m-d g:i:s a')); ?></code></td> |
59 | 59 | </tr> |
60 | 60 | <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> |
62 | 62 | <td><input name="gmt_offset" type="text" id="gmt_offset" size="2" value="<?php form_option('gmt_offset'); ?>" /> |
63 | 63 | <?php _e('hours') ?> (<?php _e('Your timezone offset, for example <code>-6</code> for Central Time.'); ?>)</td> |
64 | 64 | </tr> |
65 | 65 | <tr> |
66 | | -<th scope="row"><?php _e('Default date format:') ?></th> |
| 66 | +<th scope="row"><?php _e('Date Format') ?></th> |
67 | 67 | <td><input name="date_format" type="text" id="date_format" size="30" value="<?php form_option('date_format'); ?>" /><br /> |
68 | 68 | <?php _e('Output:') ?> <strong><?php echo mysql2date(get_option('date_format'), current_time('mysql')); ?></strong></td> |
69 | 69 | </tr> |
70 | 70 | <tr> |
71 | | -<th scope="row"><?php _e('Default time format:') ?></th> |
| 71 | +<th scope="row"><?php _e('Time Format') ?></th> |
72 | 72 | <td><input name="time_format" type="text" id="time_format" size="30" value="<?php form_option('time_format'); ?>" /><br /> |
73 | 73 | <?php _e('Output:') ?> <strong><?php echo gmdate(get_option('time_format'), current_time('timestamp')); ?></strong></td> |
74 | 74 | </tr> |
|
77 | 77 | <td><?php _e('<a href="http://codex.wordpress.org/Formatting_Date_and_Time">Documentation on date formatting</a>. Click "Save Changes" to update sample output.') ?> </td> |
78 | 78 | </tr> |
79 | 79 | <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> |
81 | 81 | <td><select name="start_of_week" id="start_of_week"> |
82 | 82 | <?php |
83 | 83 | for ($day_index = 0; $day_index <= 6; $day_index++) : |
|
0 commit comments