Ticket #9783: 9783.5.diff
| File 9783.5.diff, 18.9 KB (added by , 17 years ago) |
|---|
-
wp-admin/options-privacy.php
25 25 <table class="form-table"> 26 26 <tr valign="top"> 27 27 <th scope="row"><?php _e('Blog Visibility') ?> </th> 28 <td><fieldset><legend class="invisible"><?php _e('Blog Visibility') ?></legend>28 <td><fieldset><legend><span class="invisible"><?php _e('Blog Visibility') ?> </span></legend> 29 29 <p><input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> /> 30 30 <label for="blog-public"><?php _e('I would like my blog to be visible to everyone, including search engines (like Google, Sphere, Technorati) and archivers');?></label></p> 31 31 <p><input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked('0', get_option('blog_public')); ?> /> -
wp-admin/includes/file.php
758 758 <tr valign="top"> 759 759 <th scope="row"><?php _e('Connection Type') ?></th> 760 760 <td> 761 <fieldset><legend class="invisible"><?php _e('Connection Type') ?></legend>761 <fieldset><legend><span class="invisible"><?php _e('Connection Type') ?></span></legend> 762 762 <label><input id="ftp" name="connection_type" type="radio" value="ftp" <?php checked('ftp', $connection_type); if ( defined('FTP_SSL') || defined('FTP_SSH') ) echo ' disabled="disabled"'; ?>/> <?php _e('FTP') ?></label><br /> 763 763 <label><input id="ftps" name="connection_type" type="radio" value="ftps" <?php checked('ftps', $connection_type); if ( defined('FTP_SSH') || defined('FTP_SSH') ) echo ' disabled="disabled"'; ?>/> <?php _e('FTPS (SSL)') ?></label><br /> 764 764 <?php if ( extension_loaded('ssh2') ) { ?><label><input id="ssh" name="connection_type" type="radio" value="ssh" <?php checked('ssh', $connection_type); if ( defined('FTP_SSL') || defined('FTP_SSH') ) echo ' disabled="disabled"'; ?>/> <?php _e('SSH') ?></label><?php } ?> -
wp-admin/options-general.php
83 83 </tr> 84 84 <tr valign="top"> 85 85 <th scope="row"><?php _e('Membership') ?></th> 86 <td> <fieldset><legend class="invisible"><?php _e('Membership') ?></legend><label for="users_can_register">86 <td> <fieldset><legend><span class="invisible"><?php _e('Membership') ?></span></legend><label for="users_can_register"> 87 87 <input name="users_can_register" type="checkbox" id="users_can_register" value="1" <?php checked('1', get_option('users_can_register')); ?> /> 88 88 <?php _e('Anyone can register') ?></label> 89 89 </fieldset></td> … … 197 197 <tr> 198 198 <th scope="row"><?php _e('Date Format') ?></th> 199 199 <td> 200 <fieldset><legend class="invisible"><?php _e('Date Format') ?></legend>200 <fieldset><legend><span class="invisible"><?php _e('Date Format') ?></span></legend> 201 201 <?php 202 202 203 203 $date_formats = apply_filters( 'date_formats', array( … … 230 230 <tr> 231 231 <th scope="row"><?php _e('Time Format') ?></th> 232 232 <td> 233 <fieldset><legend class="invisible"><?php _e('Time Format') ?></legend>233 <fieldset><legend><span class="invisible"><?php _e('Time Format') ?></span></legend> 234 234 <?php 235 235 236 236 $time_formats = apply_filters( 'time_formats', array( -
wp-admin/options-media.php
41 41 42 42 <tr valign="top"> 43 43 <th scope="row"><?php _e('Medium size') ?></th> 44 <td><fieldset><legend class="invisible"><?php _e('Medium size') ?></legend>44 <td><fieldset><legend><span class="invisible"><?php _e('Medium size') ?></span></legend> 45 45 <label for="medium_size_w"><?php _e('Max Width'); ?></label> 46 46 <input name="medium_size_w" type="text" id="medium_size_w" value="<?php form_option('medium_size_w'); ?>" class="small-text" /> 47 47 <label for="medium_size_h"><?php _e('Max Height'); ?></label> … … 51 51 52 52 <tr valign="top"> 53 53 <th scope="row"><?php _e('Large size') ?></th> 54 <td><fieldset><legend class="invisible"><?php _e('Large size') ?></legend>54 <td><fieldset><legend><span class="invisible"><?php _e('Large size') ?></span></legend> 55 55 <label for="large_size_w"><?php _e('Max Width'); ?></label> 56 56 <input name="large_size_w" type="text" id="large_size_w" value="<?php form_option('large_size_w'); ?>" class="small-text" /> 57 57 <label for="large_size_h"><?php _e('Max Height'); ?></label> -
wp-admin/edit-link-form.php
157 157 * @param object $link 158 158 */ 159 159 function link_target_meta_box($link) { ?> 160 <fieldset><legend class="invisible"><?php _e('Target') ?></legend>160 <fieldset><legend><span class="invisible"><?php _e('Target') ?></span></legend> 161 161 <p><label for="link_target_blank" class="selectit"> 162 162 <input id="link_target_blank" type="radio" name="link_target" value="_blank" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_blank') ? 'checked="checked"' : ''); ?> /> 163 163 <?php _e('<code>_blank</code> - new window or tab.'); ?></label></p> … … 192 192 <table cellpadding="3" cellspacing="5" class="form-table"> 193 193 <tr> 194 194 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?> </th> 195 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?></legend>195 <td><fieldset><legend><span class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?> </span></legend> 196 196 <label for="me"> 197 197 <input type="checkbox" name="identity" value="me" id="me" <?php xfn_check('identity', 'me'); ?> /> 198 198 <?php _e('another web address of mine') ?></label> … … 200 200 </tr> 201 201 <tr> 202 202 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?> </th> 203 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?></legend>203 <td><fieldset><legend><span class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?> </span></legend> 204 204 <label for="contact"> 205 205 <input class="valinp" type="radio" name="friendship" value="contact" id="contact" <?php xfn_check('friendship', 'contact', 'radio'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('contact') ?></label> 206 206 <label for="acquaintance"> … … 213 213 </tr> 214 214 <tr> 215 215 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?> </th> 216 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?></legend>216 <td><fieldset><legend><span class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?> </span></legend> 217 217 <label for="met"> 218 218 <input class="valinp" type="checkbox" name="physical" value="met" id="met" <?php xfn_check('physical', 'met'); ?> /> 219 219 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('met') ?></label> … … 221 221 </tr> 222 222 <tr> 223 223 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?> </th> 224 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?></legend>224 <td><fieldset><legend><span class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?> </span></legend> 225 225 <label for="co-worker"> 226 226 <input class="valinp" type="checkbox" name="professional" value="co-worker" id="co-worker" <?php xfn_check('professional', 'co-worker'); ?> /> 227 227 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('co-worker') ?></label> … … 232 232 </tr> 233 233 <tr> 234 234 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?> </th> 235 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?></legend>235 <td><fieldset><legend><span class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?> </span></legend> 236 236 <label for="co-resident"> 237 237 <input class="valinp" type="radio" name="geographical" value="co-resident" id="co-resident" <?php xfn_check('geographical', 'co-resident', 'radio'); ?> /> 238 238 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('co-resident') ?></label> … … 246 246 </tr> 247 247 <tr> 248 248 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?> </th> 249 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?></legend>249 <td><fieldset><legend><span class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?> </span></legend> 250 250 <label for="child"> 251 251 <input class="valinp" type="radio" name="family" value="child" id="child" <?php xfn_check('family', 'child', 'radio'); ?> /> 252 252 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('child') ?></label> … … 269 269 </tr> 270 270 <tr> 271 271 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?> </th> 272 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?></legend>272 <td><fieldset><legend><span class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?> </span></legend> 273 273 <label for="muse"> 274 274 <input class="valinp" type="checkbox" name="romantic" value="muse" id="muse" <?php xfn_check('romantic', 'muse'); ?> /> 275 275 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('muse') ?></label> -
wp-admin/options-discussion.php
25 25 <table class="form-table"> 26 26 <tr valign="top"> 27 27 <th scope="row"><?php _e('Default article settings') ?></th> 28 <td><fieldset><legend class="invisible"><?php _e('Default article settings') ?></legend>28 <td><fieldset><legend><span class="invisible"><?php _e('Default article settings') ?></span></legend> 29 29 <label for="default_pingback_flag"> 30 30 <input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1" <?php checked('1', get_option('default_pingback_flag')); ?> /> 31 31 <?php _e('Attempt to notify any blogs linked to from the article (slows down posting.)') ?></label> … … 43 43 </tr> 44 44 <tr valign="top"> 45 45 <th scope="row"><?php _e('Other comment settings') ?></th> 46 <td><fieldset><legend class="invisible"><?php _e('Other comment settings') ?></legend>46 <td><fieldset><legend><span class="invisible"><?php _e('Other comment settings') ?></span></legend> 47 47 <label for="require_name_email"><input type="checkbox" name="require_name_email" id="require_name_email" value="1" <?php checked('1', get_option('require_name_email')); ?> /> <?php _e('Comment author must fill out name and e-mail') ?></label> 48 48 <br /> 49 49 <label for="comment_registration"> … … 102 102 </tr> 103 103 <tr valign="top"> 104 104 <th scope="row"><?php _e('E-mail me whenever') ?></th> 105 <td><fieldset><legend class="invisible"><?php _e('E-mail me whenever') ?></legend>105 <td><fieldset><legend><span class="invisible"><?php _e('E-mail me whenever') ?></span></legend> 106 106 <label for="comments_notify"> 107 107 <input name="comments_notify" type="checkbox" id="comments_notify" value="1" <?php checked('1', get_option('comments_notify')); ?> /> 108 108 <?php _e('Anyone posts a comment') ?> </label> … … 114 114 </tr> 115 115 <tr valign="top"> 116 116 <th scope="row"><?php _e('Before a comment appears') ?></th> 117 <td><fieldset><legend class="invisible"><?php _e('Before a comment appears') ?></legend>117 <td><fieldset><legend><span class="invisible"><?php _e('Before a comment appears') ?></span></legend> 118 118 <label for="comment_moderation"> 119 119 <input name="comment_moderation" type="checkbox" id="comment_moderation" value="1" <?php checked('1', get_option('comment_moderation')); ?> /> 120 120 <?php _e('An administrator must always approve the comment') ?> </label> … … 124 124 </tr> 125 125 <tr valign="top"> 126 126 <th scope="row"><?php _e('Comment Moderation') ?></th> 127 <td><fieldset><legend class="invisible"><?php _e('Comment Moderation') ?></legend>127 <td><fieldset><legend><span class="invisible"><?php _e('Comment Moderation') ?></span></legend> 128 128 <p><label for="comment_max_links"><?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" value="' . esc_attr(get_option('comment_max_links')) . '" class="small-text" />' ) ?></label></p> 129 129 130 130 <p><label for="moderation_keys"><?php _e('When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the <a href="edit-comments.php?comment_status=moderated">moderation queue</a>. One word or IP per line. It will match inside words, so “press” will match “WordPress”.') ?></label></p> … … 135 135 </tr> 136 136 <tr valign="top"> 137 137 <th scope="row"><?php _e('Comment Blacklist') ?></th> 138 <td><fieldset><legend class="invisible"><?php _e('Comment Blacklist') ?></legend>138 <td><fieldset><legend><span class="invisible"><?php _e('Comment Blacklist') ?></span></legend> 139 139 <p><label for="blacklist_keys"><?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”.') ?></label></p> 140 140 <p> 141 141 <textarea name="blacklist_keys" rows="10" cols="50" id="blacklist_keys" class="large-text code"><?php form_option('blacklist_keys'); ?></textarea> … … 154 154 <table class="form-table"> 155 155 <tr valign="top"> 156 156 <th scope="row"><?php _e('Avatar Display') ?></th> 157 <td><fieldset><legend class="invisible"><?php _e('Avatar display') ?></legend>157 <td><fieldset><legend><span class="invisible"><?php _e('Avatar display') ?></span></legend> 158 158 <?php 159 159 $yesorno = array(0 => __("Don’t show Avatars"), 1 => __('Show Avatars')); 160 160 foreach ( $yesorno as $key => $value) { … … 166 166 </tr> 167 167 <tr valign="top"> 168 168 <th scope="row"><?php _e('Maximum Rating') ?></th> 169 <td><fieldset><legend class="invisible"><?php _e('Maximum Rating') ?></legend>169 <td><fieldset><legend><span class="invisible"><?php _e('Maximum Rating') ?></span></legend> 170 170 171 171 <?php 172 172 $ratings = array( 'G' => __('G — Suitable for all audiences'), 'PG' => __('PG — Possibly offensive, usually for audiences 13 and above'), 'R' => __('R — Intended for adult audiences above 17'), 'X' => __('X — Even more mature than above')); … … 180 180 </tr> 181 181 <tr valign="top"> 182 182 <th scope="row"><?php _e('Default Avatar') ?></th> 183 <td class="defaultavatarpicker"><fieldset><legend class="invisible"><?php _e('Default Avatar') ?></legend>183 <td class="defaultavatarpicker"><fieldset><legend><span class="invisible"><?php _e('Default Avatar') ?></span></legend> 184 184 185 185 <?php _e('For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their e-mail address.'); ?><br /> 186 186 -
wp-admin/user-edit.php
209 209 <?php if (count($_wp_admin_css_colors) > 1 ) : ?> 210 210 <tr> 211 211 <th scope="row"><?php _e('Admin Color Scheme')?></th> 212 <td><fieldset><legend class="invisible"><?php _e('Admin Color Scheme')?></legend>212 <td><fieldset><legend><span class="invisible"><?php _e('Admin Color Scheme')?></span></legend> 213 213 <?php 214 214 $current_color = get_user_option('admin_color', $user_id); 215 215 if ( empty($current_color) ) -
wp-admin/options-reading.php
26 26 <?php if ( get_pages() ): ?> 27 27 <tr valign="top"> 28 28 <th scope="row"><?php _e('Front page displays')?></th> 29 <td><fieldset><legend class="invisible"><?php _e('Front page displays')?></legend>29 <td><fieldset><legend><span class="invisible"><?php _e('Front page displays')?></span></legend> 30 30 <p><label> 31 31 <input name="show_on_front" type="radio" value="posts" class="tog" <?php checked('posts', get_option('show_on_front')); ?> /> 32 32 <?php _e('Your latest posts'); ?> … … 63 63 </tr> 64 64 <tr valign="top"> 65 65 <th scope="row"><?php _e('For each article in a feed, show') ?> </th> 66 <td><fieldset><legend class="invisible"><?php _e('For each article in a feed, show') ?></legend>66 <td><fieldset><legend><span class="invisible"><?php _e('For each article in a feed, show') ?> </span></legend> 67 67 <p><label><input name="rss_use_excerpt" type="radio" value="0" <?php checked(0, get_option('rss_use_excerpt')); ?> /> <?php _e('Full text') ?></label><br /> 68 68 <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked(1, get_option('rss_use_excerpt')); ?> /> <?php _e('Summary') ?></label></p> 69 69 </fieldset></td> -
wp-admin/options-writing.php
30 30 </tr> 31 31 <tr valign="top"> 32 32 <th scope="row"><?php _e('Formatting') ?></th> 33 <td><fieldset><legend class="invisible"><?php _e('Formatting') ?></legend>33 <td><fieldset><legend><span class="invisible"><?php _e('Formatting') ?></span></legend> 34 34 <label for="use_smilies"> 35 35 <input name="use_smilies" type="checkbox" id="use_smilies" value="1" <?php checked('1', get_option('use_smilies')); ?> /> 36 36 <?php _e('Convert emoticons like <code>:-)</code> and <code>:-P</code> to graphics on display') ?></label><br /> … … 61 61 <table class="form-table"> 62 62 <tr valign="top"> 63 63 <th scope="row"><?php _e('Atom Publishing Protocol') ?></th> 64 <td><fieldset><legend class="invisible"><?php _e('Atom Publishing Protocol') ?></legend>64 <td><fieldset><legend><span class="invisible"><?php _e('Atom Publishing Protocol') ?></span></legend> 65 65 <label for="enable_app"> 66 66 <input name="enable_app" type="checkbox" id="enable_app" value="1" <?php checked('1', get_option('enable_app')); ?> /> 67 67 <?php _e('Enable the Atom Publishing Protocol.') ?></label><br /> … … 69 69 </tr> 70 70 <tr valign="top"> 71 71 <th scope="row"><?php _e('XML-RPC') ?></th> 72 <td><fieldset><legend class="invisible"><?php _e('XML-RPC') ?></legend>72 <td><fieldset><legend><span class="invisible"><?php _e('XML-RPC') ?></span></legend> 73 73 <label for="enable_xmlrpc"> 74 74 <input name="enable_xmlrpc" type="checkbox" id="enable_xmlrpc" value="1" <?php checked('1', get_option('enable_xmlrpc')); ?> /> 75 75 <?php _e('Enable the WordPress, Movable Type, MetaWeblog and Blogger XML-RPC publishing protocols.') ?></label><br />