Ticket #29748: 29748.patch
File 29748.patch, 7.3 KB (added by , 9 years ago) |
---|
-
src/wp-admin/edit-comments.php
169 169 ); 170 170 171 171 get_current_screen()->set_screen_reader_content( array( 172 /* translators: accessibility text */ 172 173 'heading_views' => __( 'Filter comments list' ), 174 /* translators: accessibility text */ 173 175 'heading_pagination' => __( 'Comments list navigation' ), 176 /* translators: accessibility text */ 174 177 'heading_list' => __( 'Comments list' ), 175 178 ) ); 176 179 -
src/wp-admin/edit-tags.php
55 55 add_screen_option( 'per_page', array( 'default' => 20, 'option' => 'edit_' . $tax->name . '_per_page' ) ); 56 56 57 57 get_current_screen()->set_screen_reader_content( array( 58 /* translators: accessibility text */ 58 59 'heading_pagination' => $tax->labels->items_list_navigation, 60 /* translators: accessibility text */ 59 61 'heading_list' => $tax->labels->items_list, 60 62 ) ); 61 63 -
src/wp-admin/includes/class-wp-screen.php
699 699 */ 700 700 public function set_screen_reader_content( $content = array() ) { 701 701 $defaults = array( 702 /* translators: accessibility text */ 702 703 'heading_views' => __( 'Filter items list' ), 704 /* translators: accessibility text */ 703 705 'heading_pagination' => __( 'Items list navigation' ), 706 /* translators: accessibility text */ 704 707 'heading_list' => __( 'Items list' ), 705 708 ); 706 709 $content = wp_parse_args( $content, $defaults ); -
src/wp-admin/link-manager.php
62 62 ); 63 63 64 64 get_current_screen()->set_screen_reader_content( array( 65 /* translators: accessibility text */ 65 66 'heading_list' => __( 'Links list' ), 66 67 ) ); 67 68 -
src/wp-admin/network/site-themes.php
34 34 ); 35 35 36 36 get_current_screen()->set_screen_reader_content( array( 37 /* translators: accessibility text */ 37 38 'heading_views' => __( 'Filter site themes list' ), 39 /* translators: accessibility text */ 38 40 'heading_pagination' => __( 'Site themes list navigation' ), 41 /* translators: accessibility text */ 39 42 'heading_list' => __( 'Site themes list' ), 40 43 ) ); 41 44 -
src/wp-admin/network/site-users.php
37 37 ); 38 38 39 39 get_current_screen()->set_screen_reader_content( array( 40 /* translators: accessibility text */ 40 41 'heading_views' => __( 'Filter site users list' ), 42 /* translators: accessibility text */ 41 43 'heading_pagination' => __( 'Site users list navigation' ), 44 /* translators: accessibility text */ 42 45 'heading_list' => __( 'Site users list' ), 43 46 ) ); 44 47 -
src/wp-admin/network/sites.php
47 47 ); 48 48 49 49 get_current_screen()->set_screen_reader_content( array( 50 /* translators: accessibility text */ 50 51 'heading_pagination' => __( 'Sites list navigation' ), 52 /* translators: accessibility text */ 51 53 'heading_list' => __( 'Sites list' ), 52 54 ) ); 53 55 -
src/wp-admin/network/themes.php
220 220 ); 221 221 222 222 get_current_screen()->set_screen_reader_content( array( 223 /* translators: accessibility text */ 223 224 'heading_views' => __( 'Filter themes list' ), 225 /* translators: accessibility text */ 224 226 'heading_pagination' => __( 'Themes list navigation' ), 227 /* translators: accessibility text */ 225 228 'heading_list' => __( 'Themes list' ), 226 229 ) ); 227 230 -
src/wp-admin/network/users.php
173 173 ); 174 174 175 175 get_current_screen()->set_screen_reader_content( array( 176 /* translators: accessibility text */ 176 177 'heading_views' => __( 'Filter users list' ), 178 /* translators: accessibility text */ 177 179 'heading_pagination' => __( 'Users list navigation' ), 180 /* translators: accessibility text */ 178 181 'heading_list' => __( 'Users list' ), 179 182 ) ); 180 183 -
src/wp-admin/plugin-install.php
89 89 ); 90 90 91 91 get_current_screen()->set_screen_reader_content( array( 92 /* translators: accessibility text */ 92 93 'heading_views' => __( 'Filter plugins list' ), 94 /* translators: accessibility text */ 93 95 'heading_pagination' => __( 'Plugins list navigation' ), 96 /* translators: accessibility text */ 94 97 'heading_list' => __( 'Plugins list' ), 95 98 ) ); 96 99 -
src/wp-admin/plugins.php
396 396 ); 397 397 398 398 get_current_screen()->set_screen_reader_content( array( 399 /* translators: accessibility text */ 399 400 'heading_views' => __( 'Filter plugins list' ), 401 /* translators: accessibility text */ 400 402 'heading_pagination' => __( 'Plugins list navigation' ), 403 /* translators: accessibility text */ 401 404 'heading_list' => __( 'Plugins list' ), 402 405 ) ); 403 406 -
src/wp-admin/upload.php
209 209 ); 210 210 211 211 get_current_screen()->set_screen_reader_content( array( 212 /* translators: accessibility text */ 212 213 'heading_views' => __( 'Filter media items list' ), 214 /* translators: accessibility text */ 213 215 'heading_pagination' => __( 'Media items list navigation' ), 216 /* translators: accessibility text */ 214 217 'heading_list' => __( 'Media items list' ), 215 218 ) ); 216 219 -
src/wp-admin/users.php
70 70 ); 71 71 72 72 get_current_screen()->set_screen_reader_content( array( 73 /* translators: accessibility text */ 73 74 'heading_views' => __( 'Filter users list' ), 75 /* translators: accessibility text */ 74 76 'heading_pagination' => __( 'Users list navigation' ), 77 /* translators: accessibility text */ 75 78 'heading_list' => __( 'Users list' ), 76 79 ) ); 77 80