Changeset 11180
- Timestamp:
- 05/04/2009 09:28:58 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 27 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/categories.php
r11140 r11180 143 143 <form class="search-form topmargin" action="" method="get"> 144 144 <p class="search-box"> 145 <label class=" hidden" for="category-search-input"><?php _e('Search Categories'); ?>:</label>145 <label class="invisible" for="category-search-input"><?php _e('Search Categories'); ?>:</label> 146 146 <input type="text" id="category-search-input" name="s" value="<?php _admin_search_query(); ?>" /> 147 147 <input type="submit" value="<?php _ea( 'Search Categories' ); ?>" class="button" /> -
trunk/wp-admin/css/global.css
r11175 r11180 187 187 188 188 /* Hide visually but not from screen readers */ 189 . hidden{189 .invisible { 190 190 position: absolute; 191 191 left: -1000em; 192 192 } 193 193 194 .hidden, 194 195 .js .closed .inside, 195 196 .js .hide-if-js, -
trunk/wp-admin/edit-comments.php
r11109 r11180 181 181 182 182 <p class="search-box"> 183 <label class=" hidden" for="comment-search-input"><?php _e( 'Search Comments' ); ?>:</label>183 <label class="invisible" for="comment-search-input"><?php _e( 'Search Comments' ); ?>:</label> 184 184 <input type="text" id="comment-search-input" name="s" value="<?php _admin_search_query(); ?>" /> 185 185 <input type="submit" value="<?php _ea( 'Search Comments' ); ?>" class="button" /> -
trunk/wp-admin/edit-form-advanced.php
r11172 r11180 281 281 282 282 <span class="ajaxtag hide-if-no-js"> 283 <label class=" hidden" for="new-tag-<?php echo $tax_name; ?>"><?php echo $box['title']; ?></label>283 <label class="invisible" for="new-tag-<?php echo $tax_name; ?>"><?php echo $box['title']; ?></label> 284 284 <input type="text" id="new-tag-<?php echo $tax_name; ?>" name="newtag[<?php echo $tax_name; ?>]" class="newtag form-input-tip" size="16" autocomplete="off" value="<?php _ea('Add new tag'); ?>" /> 285 285 <input type="button" class="button tagadd" value="<?php _ea('Add'); ?>" tabindex="3" /> … … 332 332 <h4><a id="category-add-toggle" href="#category-add" class="hide-if-no-js" tabindex="3"><?php _e( '+ Add New Category' ); ?></a></h4> 333 333 <p id="category-add" class="wp-hidden-child"> 334 <label class=" hidden" for="newcat"><?php _e( 'Add New Category' ); ?></label><input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php _ea( 'New category name' ); ?>" tabindex="3" aria-required="true"/>335 <label class=" hidden" for="newcat_parent"><?php _e('Parent category'); ?>:</label><?php wp_dropdown_categories( array( 'hide_empty' => 0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3 ) ); ?>334 <label class="invisible" for="newcat"><?php _e( 'Add New Category' ); ?></label><input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php _ea( 'New category name' ); ?>" tabindex="3" aria-required="true"/> 335 <label class="invisible" for="newcat_parent"><?php _e('Parent category'); ?>:</label><?php wp_dropdown_categories( array( 'hide_empty' => 0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3 ) ); ?> 336 336 <input type="button" id="category-add-sumbit" class="add:categorychecklist:category-add button" value="<?php _ea( 'Add' ); ?>" tabindex="3" /> 337 337 <?php wp_nonce_field( 'add-category', '_ajax_nonce', false ); ?> … … 358 358 </p> 359 359 <h4><?php _e( 'Post Password' ); ?></h4> 360 <p><label class=" hidden" for="post_password"><?php _e('Password Protect This Post') ?></label><input name="post_password" type="text" size="25" id="post_password" value="<?php the_post_password(); ?>" /></p>360 <p><label class="invisible" for="post_password"><?php _e('Password Protect This Post') ?></label><input name="post_password" type="text" size="25" id="post_password" value="<?php the_post_password(); ?>" /></p> 361 361 <p><?php _e('Setting a password will require people who visit your blog to enter the above password to view this post and its comments.'); ?></p> 362 362 <?php … … 373 373 function post_excerpt_meta_box($post) { 374 374 ?> 375 <label class=" hidden" for="excerpt"><?php _e('Excerpt') ?></label><textarea rows="1" cols="40" name="excerpt" tabindex="6" id="excerpt"><?php echo $post->post_excerpt ?></textarea>375 <label class="invisible" for="excerpt"><?php _e('Excerpt') ?></label><textarea rows="1" cols="40" name="excerpt" tabindex="6" id="excerpt"><?php echo $post->post_excerpt ?></textarea> 376 376 <p><?php _e('Excerpts are optional hand-crafted summaries of your content. You can <a href="http://codex.wordpress.org/Template_Tags/the_excerpt" target="_blank">use them in your template</a>'); ?></p> 377 377 <?php … … 500 500 function post_slug_meta_box($post) { 501 501 ?> 502 <label class=" hidden" for="post_name"><?php _e('Post Slug') ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo attr( $post->post_name ); ?>" />502 <label class="invisible" for="post_name"><?php _e('Post Slug') ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo attr( $post->post_name ); ?>" /> 503 503 <?php 504 504 } … … 523 523 $authors[] = $post->post_author; 524 524 ?> 525 <label class=" hidden" for="post_author_override"><?php _e('Post Author'); ?></label><?php wp_dropdown_users( array('include' => $authors, 'name' => 'post_author_override', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?>525 <label class="invisible" for="post_author_override"><?php _e('Post Author'); ?></label><?php wp_dropdown_users( array('include' => $authors, 'name' => 'post_author_override', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?> 526 526 <?php 527 527 } … … 598 598 <div id="titlediv"> 599 599 <div id="titlewrap"> 600 <label class=" hidden" for="title"><?php _e('Title') ?></label>600 <label class="invisible" for="title"><?php _e('Title') ?></label> 601 601 <input type="text" name="post_title" size="30" tabindex="1" value="<?php echo attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" autocomplete="off" /> 602 602 </div> -
trunk/wp-admin/edit-link-categories.php
r11104 r11180 74 74 <form class="search-form" action="" method="get"> 75 75 <p class="search-box"> 76 <label class=" hidden" for="link-category-search-input"><?php _e( 'Search Categories' ); ?>:</label>76 <label class="invisible" for="link-category-search-input"><?php _e( 'Search Categories' ); ?>:</label> 77 77 <input type="text" id="link-category-search-input" name="s" value="<?php _admin_search_query(); ?>" /> 78 78 <input type="submit" value="<?php _ea( 'Search Categories' ); ?>" class="button" /> -
trunk/wp-admin/edit-link-form.php
r11145 r11180 139 139 <h4><a id="category-add-toggle" href="#category-add"><?php _e( '+ Add New Category' ); ?></a></h4> 140 140 <p id="link-category-add" class="wp-hidden-child"> 141 <label class=" hidden" for="newcat"><?php _e( '+ Add New Category' ); ?></label>141 <label class="invisible" for="newcat"><?php _e( '+ Add New Category' ); ?></label> 142 142 <input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php _ea( 'New category name' ); ?>" aria-required="true" /> 143 143 <input type="button" id="category-add-submit" class="add:categorychecklist:linkcategorydiv button" value="<?php _ea( 'Add' ); ?>" /> … … 158 158 */ 159 159 function link_target_meta_box($link) { ?> 160 <fieldset><legend class=" hidden"><?php _e('Target') ?></legend>160 <fieldset><legend class="invisible"><?php _e('Target') ?></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"' : ''); ?> /> … … 193 193 <tr> 194 194 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?> </th> 195 <td><fieldset><legend class=" hidden"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?> </legend>195 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?> </legend> 196 196 <label for="me"> 197 197 <input type="checkbox" name="identity" value="me" id="me" <?php xfn_check('identity', 'me'); ?> /> … … 201 201 <tr> 202 202 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?> </th> 203 <td><fieldset><legend class=" hidden"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?> </legend>203 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?> </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> … … 214 214 <tr> 215 215 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?> </th> 216 <td><fieldset><legend class=" hidden"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?> </legend>216 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?> </legend> 217 217 <label for="met"> 218 218 <input class="valinp" type="checkbox" name="physical" value="met" id="met" <?php xfn_check('physical', 'met'); ?> /> … … 222 222 <tr> 223 223 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?> </th> 224 <td><fieldset><legend class=" hidden"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?> </legend>224 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?> </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'); ?> /> … … 233 233 <tr> 234 234 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?> </th> 235 <td><fieldset><legend class=" hidden"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?> </legend>235 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?> </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'); ?> /> … … 247 247 <tr> 248 248 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?> </th> 249 <td><fieldset><legend class=" hidden"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?> </legend>249 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?> </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'); ?> /> … … 270 270 <tr> 271 271 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?> </th> 272 <td><fieldset><legend class=" hidden"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?> </legend>272 <td><fieldset><legend class="invisible"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?> </legend> 273 273 <label for="muse"> 274 274 <input class="valinp" type="checkbox" name="romantic" value="muse" id="muse" <?php xfn_check('romantic', 'muse'); ?> /> -
trunk/wp-admin/edit-page-form.php
r11159 r11180 261 261 <p><label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="checkbox" value="private" <?php checked($post->post_status, 'private'); ?> tabindex='4' /> <?php _e('Keep this page private') ?></label></p> 262 262 <h4><?php _e( 'Page Password' ); ?></h4> 263 <p><label class=" hidden" for="post_password"><?php _e('Password Protect This Page') ?></label><input name="post_password" type="text" size="25" id="post_password" value="<?php the_post_password(); ?>" /></p>263 <p><label class="invisible" for="post_password"><?php _e('Password Protect This Page') ?></label><input name="post_password" type="text" size="25" id="post_password" value="<?php the_post_password(); ?>" /></p> 264 264 <p><?php _e('Setting a password will require people who visit your blog to enter the above password to view this page and its comments.'); ?></p> 265 265 <?php … … 277 277 ?> 278 278 <h5><?php _e('Parent') ?></h5> 279 <label class=" hidden" for="parent_id"><?php _e('Page Parent') ?></label>279 <label class="invisible" for="parent_id"><?php _e('Page Parent') ?></label> 280 280 <?php wp_dropdown_pages(array('exclude_tree' => $post->ID, 'selected' => $post->post_parent, 'name' => 'parent_id', 'show_option_none' => __('Main Page (no parent)'), 'sort_column'=> 'menu_order, post_title')); ?> 281 281 <p><?php _e('You can arrange your pages in hierarchies, for example you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how deeply nested you can make pages.'); ?></p> … … 284 284 ?> 285 285 <h5><?php _e('Template') ?></h5> 286 <label class=" hidden" for="page_template"><?php _e('Page Template') ?></label><select name="page_template" id="page_template">286 <label class="invisible" for="page_template"><?php _e('Page Template') ?></label><select name="page_template" id="page_template"> 287 287 <option value='default'><?php _e('Default Template'); ?></option> 288 288 <?php page_template_dropdown($post->page_template); ?> … … 293 293 ?> 294 294 <h5><?php _e('Order') ?></h5> 295 <p><label class=" hidden" for="menu_order"><?php _e('Page Order') ?></label><input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo attr($post->menu_order) ?>" /></p>295 <p><label class="invisible" for="menu_order"><?php _e('Page Order') ?></label><input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo attr($post->menu_order) ?>" /></p> 296 296 <p><?php _e('Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in. (We know this is a little janky, it’ll be better in future releases.)'); ?></p> 297 297 <?php … … 349 349 function page_slug_meta_box($post){ 350 350 ?> 351 <label class=" hidden" for="post_name"><?php _e('Page Slug') ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo attr( $post->post_name ); ?>" />351 <label class="invisible" for="post_name"><?php _e('Page Slug') ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo attr( $post->post_name ); ?>" /> 352 352 <?php 353 353 } … … 371 371 $authors[] = $post->post_author; 372 372 ?> 373 <label class=" hidden" for="post_author_override"><?php _e('Page Author'); ?></label><?php wp_dropdown_users( array('include' => $authors, 'name' => 'post_author_override', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?>373 <label class="invisible" for="post_author_override"><?php _e('Page Author'); ?></label><?php wp_dropdown_users( array('include' => $authors, 'name' => 'post_author_override', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?> 374 374 <?php 375 375 } … … 442 442 <div id="titlediv"> 443 443 <div id="titlewrap"> 444 <label class=" hidden" for="title"><?php _e('Title') ?></label>444 <label class="invisible" for="title"><?php _e('Title') ?></label> 445 445 <input type="text" name="post_title" size="30" tabindex="1" value="<?php echo attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" autocomplete="off" /> 446 446 </div> -
trunk/wp-admin/edit-pages.php
r11137 r11180 170 170 171 171 <p class="search-box"> 172 <label class=" hidden" for="page-search-input"><?php _e( 'Search Pages' ); ?>:</label>172 <label class="invisible" for="page-search-input"><?php _e( 'Search Pages' ); ?>:</label> 173 173 <input type="text" id="page-search-input" name="s" value="<?php _admin_search_query(); ?>" /> 174 174 <input type="submit" value="<?php _ea( 'Search Pages' ); ?>" class="button" /> -
trunk/wp-admin/edit-tags.php
r11110 r11180 159 159 <form class="search-form" action="" method="get"> 160 160 <p class="search-box"> 161 <label class=" hidden" for="tag-search-input"><?php _e( 'Search Tags' ); ?>:</label>161 <label class="invisible" for="tag-search-input"><?php _e( 'Search Tags' ); ?>:</label> 162 162 <input type="text" id="tag-search-input" name="s" value="<?php _admin_search_query(); ?>" /> 163 163 <input type="submit" value="<?php _ea( 'Search Tags' ); ?>" class="button" /> -
trunk/wp-admin/edit.php
r11137 r11180 165 165 166 166 <p class="search-box"> 167 <label class=" hidden" for="post-search-input"><?php _e( 'Search Posts' ); ?>:</label>167 <label class="invisible" for="post-search-input"><?php _e( 'Search Posts' ); ?>:</label> 168 168 <input type="text" id="post-search-input" name="s" value="<?php the_search_query(); ?>" /> 169 169 <input type="submit" value="<?php _ea( 'Search Posts' ); ?>" class="button" /> -
trunk/wp-admin/includes/file.php
r11173 r11180 758 758 <th scope="row"><?php _e('Connection Type') ?></th> 759 759 <td> 760 <fieldset><legend class=" hidden"><?php _e('Connection Type') ?></legend>760 <fieldset><legend class="invisible"><?php _e('Connection Type') ?></legend> 761 761 <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 /> 762 762 <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 /> -
trunk/wp-admin/includes/media.php
r11173 r11180 1351 1351 <?php do_action('pre-html-upload-ui'); ?> 1352 1352 <p id="async-upload-wrap"> 1353 <label class=" hidden" for="async-upload"><?php _e('Upload'); ?></label>1353 <label class="invisible" for="async-upload"><?php _e('Upload'); ?></label> 1354 1354 <input type="file" name="async-upload" id="async-upload" /> <input type="submit" class="button" name="html-upload" value="<?php _ea('Upload'); ?>" /> <a href="#" onclick="return top.tb_remove();"><?php _e('Cancel'); ?></a> 1355 1355 </p> … … 1707 1707 1708 1708 <p id="media-search" class="search-box"> 1709 <label class=" hidden" for="media-search-input"><?php _e('Search Media');?>:</label>1709 <label class="invisible" for="media-search-input"><?php _e('Search Media');?>:</label> 1710 1710 <input type="text" id="media-search-input" name="s" value="<?php the_search_query(); ?>" /> 1711 1711 <input type="submit" value="<?php _ea( 'Search Media' ); ?>" class="button" /> -
trunk/wp-admin/includes/plugin-install.php
r11173 r11180 164 164 </select> 165 165 <input type="text" name="s" value="<?php echo attr($term) ?>" /> 166 <label class=" hidden" for="plugin-search-input"><?php _e('Search Plugins'); ?></label>166 <label class="invisible" for="plugin-search-input"><?php _e('Search Plugins'); ?></label> 167 167 <input type="submit" id="plugin-search-input" name="search" value="<?php _ea('Search Plugins') ?>" class="button" /> 168 168 </form><?php … … 212 212 <form method="post" enctype="multipart/form-data" action="<?php echo admin_url('update.php?action=upload-plugin') ?>"> 213 213 <?php wp_nonce_field( 'plugin-upload') ?> 214 <label class=" hidden" for="pluginzip"><?php _e('Plugin zip file'); ?></label>214 <label class="invisible" for="pluginzip"><?php _e('Plugin zip file'); ?></label> 215 215 <input type="file" id="pluginzip" name="pluginzip" /> 216 216 <input type="submit" class="button" value="<?php _ea('Install Now') ?>" /> -
trunk/wp-admin/includes/template.php
r11173 r11180 3163 3163 <input type="hidden" name="affected" id="affected" value="" /> 3164 3164 <?php wp_nonce_field( 'find-posts', '_ajax_nonce', false ); ?> 3165 <label class=" hidden" for="find-posts-input"><?php _e( 'Search' ); ?></label>3165 <label class="invisible" for="find-posts-input"><?php _e( 'Search' ); ?></label> 3166 3166 <input type="text" id="find-posts-input" name="ps" value="" /> 3167 3167 <input type="button" onclick="findPosts.send();" value="<?php _ea( 'Search' ); ?>" class="button" /><br /> -
trunk/wp-admin/link-manager.php
r11110 r11180 89 89 <form class="search-form" action="" method="get"> 90 90 <p class="search-box"> 91 <label class=" hidden" for="link-search-input"><?php _e( 'Search Links' ); ?>:</label>91 <label class="invisible" for="link-search-input"><?php _e( 'Search Links' ); ?>:</label> 92 92 <input type="text" id="link-search-input" name="s" value="<?php _admin_search_query(); ?>" /> 93 93 <input type="submit" value="<?php _ea( 'Search Links' ); ?>" class="button" /> -
trunk/wp-admin/options-discussion.php
r11110 r11180 26 26 <tr valign="top"> 27 27 <th scope="row"><?php _e('Default article settings') ?></th> 28 <td><fieldset><legend class=" hidden"><?php _e('Default article settings') ?></legend>28 <td><fieldset><legend class="invisible"><?php _e('Default article settings') ?></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')); ?> /> … … 44 44 <tr valign="top"> 45 45 <th scope="row"><?php _e('Other comment settings') ?></th> 46 <td><fieldset><legend class=" hidden"><?php _e('Other comment settings') ?></legend>46 <td><fieldset><legend class="invisible"><?php _e('Other comment settings') ?></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 /> … … 103 103 <tr valign="top"> 104 104 <th scope="row"><?php _e('E-mail me whenever') ?></th> 105 <td><fieldset><legend class=" hidden"><?php _e('E-mail me whenever') ?></legend>105 <td><fieldset><legend class="invisible"><?php _e('E-mail me whenever') ?></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')); ?> /> … … 115 115 <tr valign="top"> 116 116 <th scope="row"><?php _e('Before a comment appears') ?></th> 117 <td><fieldset><legend class=" hidden"><?php _e('Before a comment appears') ?></legend>117 <td><fieldset><legend class="invisible"><?php _e('Before a comment appears') ?></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')); ?> /> … … 125 125 <tr valign="top"> 126 126 <th scope="row"><?php _e('Comment Moderation') ?></th> 127 <td><fieldset><legend class=" hidden"><?php _e('Comment Moderation') ?></legend>127 <td><fieldset><legend class="invisible"><?php _e('Comment Moderation') ?></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="' . attr(get_option('comment_max_links')) . '" class="small-text" />' ) ?></label></p> 129 129 … … 136 136 <tr valign="top"> 137 137 <th scope="row"><?php _e('Comment Blacklist') ?></th> 138 <td><fieldset><legend class=" hidden"><?php _e('Comment Blacklist') ?></legend>138 <td><fieldset><legend class="invisible"><?php _e('Comment Blacklist') ?></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> … … 155 155 <tr valign="top"> 156 156 <th scope="row"><?php _e('Avatar Display') ?></th> 157 <td><fieldset><legend class=" hidden"><?php _e('Avatar display') ?></legend>157 <td><fieldset><legend class="invisible"><?php _e('Avatar display') ?></legend> 158 158 <?php 159 159 $yesorno = array(0 => __("Don’t show Avatars"), 1 => __('Show Avatars')); … … 167 167 <tr valign="top"> 168 168 <th scope="row"><?php _e('Maximum Rating') ?></th> 169 <td><fieldset><legend class=" hidden"><?php _e('Maximum Rating') ?></legend>169 <td><fieldset><legend class="invisible"><?php _e('Maximum Rating') ?></legend> 170 170 171 171 <?php … … 181 181 <tr valign="top"> 182 182 <th scope="row"><?php _e('Default Avatar') ?></th> 183 <td class="defaultavatarpicker"><fieldset><legend class=" hidden"><?php _e('Default Avatar') ?></legend>183 <td class="defaultavatarpicker"><fieldset><legend class="invisible"><?php _e('Default Avatar') ?></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 /> -
trunk/wp-admin/options-general.php
r11133 r11180 84 84 <tr valign="top"> 85 85 <th scope="row"><?php _e('Membership') ?></th> 86 <td> <fieldset><legend class=" hidden"><?php _e('Membership') ?></legend><label for="users_can_register">86 <td> <fieldset><legend class="invisible"><?php _e('Membership') ?></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> … … 198 198 <th scope="row"><?php _e('Date Format') ?></th> 199 199 <td> 200 <fieldset><legend class=" hidden"><?php _e('Date Format') ?></legend>200 <fieldset><legend class="invisible"><?php _e('Date Format') ?></legend> 201 201 <?php 202 202 … … 231 231 <th scope="row"><?php _e('Time Format') ?></th> 232 232 <td> 233 <fieldset><legend class=" hidden"><?php _e('Time Format') ?></legend>233 <fieldset><legend class="invisible"><?php _e('Time Format') ?></legend> 234 234 <?php 235 235 -
trunk/wp-admin/options-media.php
r11110 r11180 42 42 <tr valign="top"> 43 43 <th scope="row"><?php _e('Medium size') ?></th> 44 <td><fieldset><legend class=" hidden"><?php _e('Medium size') ?></legend>44 <td><fieldset><legend class="invisible"><?php _e('Medium size') ?></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" /> … … 52 52 <tr valign="top"> 53 53 <th scope="row"><?php _e('Large size') ?></th> 54 <td><fieldset><legend class=" hidden"><?php _e('Large size') ?></legend>54 <td><fieldset><legend class="invisible"><?php _e('Large size') ?></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" /> -
trunk/wp-admin/options-privacy.php
r11110 r11180 26 26 <tr valign="top"> 27 27 <th scope="row"><?php _e('Blog Visibility') ?> </th> 28 <td><fieldset><legend class=" hidden"><?php _e('Blog Visibility') ?> </legend>28 <td><fieldset><legend class="invisible"><?php _e('Blog Visibility') ?> </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> -
trunk/wp-admin/options-reading.php
r11133 r11180 27 27 <tr valign="top"> 28 28 <th scope="row"><?php _e('Front page displays')?></th> 29 <td><fieldset><legend class=" hidden"><?php _e('Front page displays')?></legend>29 <td><fieldset><legend class="invisible"><?php _e('Front page displays')?></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')); ?> /> … … 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=" hidden"><?php _e('For each article in a feed, show') ?> </legend>66 <td><fieldset><legend class="invisible"><?php _e('For each article in a feed, show') ?> </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> -
trunk/wp-admin/options-writing.php
r11110 r11180 31 31 <tr valign="top"> 32 32 <th scope="row"><?php _e('Formatting') ?></th> 33 <td><fieldset><legend class=" hidden"><?php _e('Formatting') ?></legend>33 <td><fieldset><legend class="invisible"><?php _e('Formatting') ?></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')); ?> /> … … 62 62 <tr valign="top"> 63 63 <th scope="row"><?php _e('Atom Publishing Protocol') ?></th> 64 <td><fieldset><legend class=" hidden"><?php _e('Atom Publishing Protocol') ?></legend>64 <td><fieldset><legend class="invisible"><?php _e('Atom Publishing Protocol') ?></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')); ?> /> … … 70 70 <tr valign="top"> 71 71 <th scope="row"><?php _e('XML-RPC') ?></th> 72 <td><fieldset><legend class=" hidden"><?php _e('XML-RPC') ?></legend>72 <td><fieldset><legend class="invisible"><?php _e('XML-RPC') ?></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')); ?> /> -
trunk/wp-admin/plugins.php
r11137 r11180 425 425 <form method="get" action=""> 426 426 <p class="search-box"> 427 <label class=" hidden" for="plugin-search-input"><?php _e( 'Search Plugins' ); ?>:</label>427 <label class="invisible" for="plugin-search-input"><?php _e( 'Search Plugins' ); ?>:</label> 428 428 <input type="text" id="plugin-search-input" name="s" value="<?php _admin_search_query(); ?>" /> 429 429 <input type="submit" value="<?php _ea( 'Search Plugins' ); ?>" class="button" /> -
trunk/wp-admin/press-this.php
r11173 r11180 482 482 <a id="category-add-toggle" href="#category-add" class="hide-if-no-js" tabindex="3"><?php _e( '+ Add New Category' ); ?></a> 483 483 <p id="category-add" class="wp-hidden-child"> 484 <label class=" hidden" for="newcat"><?php _e( 'Add New Category' ); ?></label><input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php _ea( 'New category name' ); ?>" tabindex="3" aria-required="true"/>485 <label class=" hidden" for="newcat_parent"><?php _e('Parent category'); ?>:</label><?php wp_dropdown_categories( array( 'hide_empty' => 0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3 ) ); ?>484 <label class="invisible" for="newcat"><?php _e( 'Add New Category' ); ?></label><input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php _ea( 'New category name' ); ?>" tabindex="3" aria-required="true"/> 485 <label class="invisible" for="newcat_parent"><?php _e('Parent category'); ?>:</label><?php wp_dropdown_categories( array( 'hide_empty' => 0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3 ) ); ?> 486 486 <input type="button" id="category-add-sumbit" class="add:categorychecklist:category-add button" value="<?php _ea( 'Add' ); ?>" tabindex="3" /> 487 487 <?php wp_nonce_field( 'add-category', '_ajax_nonce', false ); ?> … … 497 497 <div class="tagsdiv" id="post_tag"> 498 498 <p class="jaxtag"> 499 <label class=" hidden" for="newtag"><?php _e('Post Tags'); ?></label>499 <label class="invisible" for="newtag"><?php _e('Post Tags'); ?></label> 500 500 <input type="hidden" name="tax_input[post_tag]" class="the-tags" id="tax-input[post_tag]" value="" /> 501 501 <span class="ajaxtag" style="display:none;"> -
trunk/wp-admin/upload.php
r11137 r11180 210 210 <form class="search-form" action="" method="get"> 211 211 <p class="search-box"> 212 <label class=" hidden" for="media-search-input"><?php _e( 'Search Media' ); ?>:</label>212 <label class="invisible" for="media-search-input"><?php _e( 'Search Media' ); ?>:</label> 213 213 <input type="text" id="media-search-input" name="s" value="<?php the_search_query(); ?>" /> 214 214 <input type="submit" value="<?php _ea( 'Search Media' ); ?>" class="button" /> -
trunk/wp-admin/user-edit.php
r11162 r11180 210 210 <tr> 211 211 <th scope="row"><?php _e('Admin Color Scheme')?></th> 212 <td><fieldset><legend class=" hidden"><?php _e('Admin Color Scheme')?></legend>212 <td><fieldset><legend class="invisible"><?php _e('Admin Color Scheme')?></legend> 213 213 <?php 214 214 $current_color = get_user_option('admin_color', $user_id); -
trunk/wp-admin/users.php
r11137 r11180 291 291 <form class="search-form" action="" method="get"> 292 292 <p class="search-box"> 293 <label class=" hidden" for="user-search-input"><?php _e( 'Search Users' ); ?>:</label>293 <label class="invisible" for="user-search-input"><?php _e( 'Search Users' ); ?>:</label> 294 294 <input type="text" id="user-search-input" name="usersearch" value="<?php echo attr($wp_user_search->search_term); ?>" /> 295 295 <input type="submit" value="<?php _ea( 'Search Users' ); ?>" class="button" /> … … 310 310 </select> 311 311 <input type="submit" value="<?php _ea('Apply'); ?>" name="doaction" id="doaction" class="button-secondary action" /> 312 <label class=" hidden" for="new_role"><?php _e('Change role to…') ?></label><select name="new_role" id="new_role"><option value=''><?php _e('Change role to…') ?></option><?php wp_dropdown_roles(); ?></select>312 <label class="invisible" for="new_role"><?php _e('Change role to…') ?></label><select name="new_role" id="new_role"><option value=''><?php _e('Change role to…') ?></option><?php wp_dropdown_roles(); ?></select> 313 313 <input type="submit" value="<?php _ea('Change'); ?>" name="changeit" class="button-secondary" /> 314 314 <?php wp_nonce_field('bulk-users'); ?> -
trunk/wp-includes/general-template.php
r11173 r11180 120 120 121 121 $form = '<form role="search" method="get" id="searchform" action="' . get_option('home') . '/" > 122 <div><label class=" hidden" for="s">' . __('Search for:') . '</label>122 <div><label class="invisible" for="s">' . __('Search for:') . '</label> 123 123 <input type="text" value="' . attr(apply_filters('the_search_query', get_search_query())) . '" name="s" id="s" /> 124 124 <input type="submit" id="searchsubmit" value="'. _a('Search') .'" />
Note: See TracChangeset
for help on using the changeset viewer.