Changeset 6837
- Timestamp:
- 02/14/2008 02:40:17 AM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-discussion.php
r6833 r6837 13 13 <?php wp_nonce_field('update-options') ?> 14 14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" /></p> 15 < fieldset class="options">16 < legend><?php echo __('Usual settings for an article:').'<br /><small><em>('.__('These settings may be overridden for individual articles.').')</em></small>'; ?></legend>15 <h3><?php _e('Usual settings for an article:') ?></h3> 16 <small><em><?php echo '(' . __('These settings may be overridden for individual articles.') . ')'; ?></em></small> 17 17 <ul> 18 18 <li> … … 32 32 </li> 33 33 </ul> 34 </fieldset> 35 <fieldset class="options"> 36 <legend><?php _e('E-mail me whenever:') ?></legend> 34 35 <h3><?php _e('E-mail me whenever:') ?></h3> 37 36 <ul> 38 37 <li> … … 47 46 </li> 48 47 </ul> 49 </fieldset> 50 <fieldset class="options"> 51 <legend><?php _e('Before a comment appears:') ?></legend> 48 49 <h3><?php _e('Before a comment appears:') ?></h3> 52 50 <ul> 53 51 <li> … … 59 57 <li><label for="comment_whitelist"><input type="checkbox" name="comment_whitelist" id="comment_whitelist" value="1" <?php checked('1', get_option('comment_whitelist')); ?> /> <?php _e('Comment author must have a previously approved comment') ?></label></li> 60 58 </ul> 61 </fieldset> 62 <fieldset class="options"> 63 <legend><?php _e('Comment Moderation') ?></legend> 59 60 <h3><?php _e('Comment Moderation') ?></h3> 64 61 <p><?php printf(__('Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)'), '<input name="comment_max_links" type="text" id="comment_max_links" size="3" value="' . get_option('comment_max_links'). '" />' ) ?></p> 65 62 … … 68 65 <textarea name="moderation_keys" cols="60" rows="4" id="moderation_keys" style="width: 98%; font-size: 12px;" class="code"><?php form_option('moderation_keys'); ?></textarea> 69 66 </p> 70 </fieldset> 71 <fieldset class="options"> 72 <legend><?php _e('Comment Blacklist') ?></legend> 67 68 <h3><?php _e('Comment Blacklist') ?></h3> 73 69 <p><?php _e('When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so "press" will match "WordPress".') ?></p> 74 70 <p> 75 71 <textarea name="blacklist_keys" cols="60" rows="4" id="blacklist_keys" style="width: 98%; font-size: 12px;" class="code"><?php form_option('blacklist_keys'); ?></textarea> 76 72 </p> 77 </fieldset> 73 78 74 <p class="submit"> 79 75 <input type="hidden" name="action" value="update" /> -
trunk/wp-admin/options-misc.php
r6833 r6837 14 14 <?php wp_nonce_field('update-options') ?> 15 15 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" /></p> 16 <fieldset class="options"> 17 <legend><?php _e('Uploading'); ?></legend> 16 <h3><?php _e('Uploading'); ?></h3> 18 17 <table class="niceblue"> 19 18 <tr valign="top"> … … 41 40 </tr> 42 41 </table> 43 </fieldset>44 42 45 43 <p><input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1" <?php checked('1', get_option('use_linksupdate')); ?> /> -
trunk/wp-admin/options-reading.php
r6833 r6837 14 14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" /></p> 15 15 <?php if ( get_pages() ): ?> 16 <fieldset class="options"> 17 <legend><?php _e('Front Page') ?></legend> 16 <h3><?php _e('Front Page') ?></h3> 18 17 <table class="niceblue"> 19 18 <tr valign="top"> … … 44 43 </tr> 45 44 </table> 46 </fieldset>47 45 <?php endif; ?> 48 46 49 <fieldset class="options"> 50 <legend><?php _e('Blog Pages') ?></legend> 47 <h3><?php _e('Blog Pages') ?></h3> 51 48 <table class="niceblue"> 52 49 <tr valign="top"> … … 59 56 </fieldset> 60 57 61 <fieldset class="options"> 62 <legend><?php _e('Syndication Feeds') ?></legend> 58 <h3><?php _e('Syndication Feeds') ?></h3> 63 59 <table width="100%" cellspacing="2" cellpadding="5" class="optiontable editform"> 64 60 <tr valign="top"> … … 74 70 </tr> 75 71 </table> 76 </fieldset>77 72 78 <fieldset class="options"> 79 <legend><?php _e('Avatars') ?></legend> 73 <h3><?php _e('Avatars') ?></h3> 80 74 <table class="niceblue"> 81 75 <tr valign="top"> … … 108 102 </tr> 109 103 </table> 110 </fieldset>111 104 112 105 <table class="niceblue"> -
trunk/wp-admin/options-writing.php
r6833 r6837 59 59 </table> 60 60 61 <fieldset class="options"> 62 <legend><?php _e('Post via e-mail') ?></legend> 61 <h3><?php _e('Post via e-mail') ?></h3> 63 62 <p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: <code>%s</code>, <code>%s</code>, <code>%s</code>.'), wp_generate_password(), wp_generate_password(), wp_generate_password()) ?></p> 64 63 … … 96 95 </tr> 97 96 </table> 98 </fieldset>99 97 100 <fieldset class="options"> 101 <legend><?php _e('Update Services') ?></legend> 98 <h3><?php _e('Update Services') ?></h3> 102 99 103 100 <?php if ( get_option('blog_public') ) : ?> … … 113 110 <?php endif; ?> 114 111 115 </fieldset>116 117 112 <p class="submit"> 118 113 <input type="hidden" name="action" value="update" />
Note: See TracChangeset
for help on using the changeset viewer.