Changeset 55276 for trunk/src/wp-admin/theme-install.php
- Timestamp:
- 02/07/2023 05:08:26 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/theme-install.php
r54268 r55276 71 71 'collapseSidebar' => __( 'Collapse Sidebar' ), 72 72 'expandSidebar' => __( 'Expand Sidebar' ), 73 /* translators: Accessibility text. */73 /* translators: Hidden accessibility text. */ 74 74 'selectFeatureFilter' => __( 'Select one or more Theme features to filter by' ), 75 75 ), … … 192 192 </div> 193 193 194 <h2 class="screen-reader-text hide-if-no-js"><?php _e( 'Filter themes list' ); ?></h2> 194 <h2 class="screen-reader-text hide-if-no-js"> 195 <?php 196 /* translators: Hidden accessibility text. */ 197 _e( 'Filter themes list' ); 198 ?> 199 </h2> 195 200 196 201 <div class="wp-filter hide-if-no-js"> … … 264 269 </div> 265 270 </div> 266 <h2 class="screen-reader-text hide-if-no-js"><?php _e( 'Themes list' ); ?></h2> 271 <h2 class="screen-reader-text hide-if-no-js"> 272 <?php 273 /* translators: Hidden accessibility text. */ 274 _e( 'Themes list' ); 275 ?> 276 </h2> 267 277 <div class="theme-browser content-filterable"></div> 268 278 <div class="theme-install-overlay wp-full-overlay expanded"></div> … … 441 451 <div class="wp-full-overlay-sidebar"> 442 452 <div class="wp-full-overlay-header"> 443 <button class="close-full-overlay"><span class="screen-reader-text"><?php _e( 'Close' ); ?></span></button> 444 <button class="previous-theme"><span class="screen-reader-text"><?php _e( 'Previous theme' ); ?></span></button> 445 <button class="next-theme"><span class="screen-reader-text"><?php _e( 'Next theme' ); ?></span></button> 453 <button class="close-full-overlay"><span class="screen-reader-text"> 454 <?php 455 /* translators: Hidden accessibility text. */ 456 _e( 'Close' ); 457 ?> 458 </span></button> 459 <button class="previous-theme"><span class="screen-reader-text"> 460 <?php 461 /* translators: Hidden accessibility text. */ 462 _e( 'Previous theme' ); 463 ?> 464 </span></button> 465 <button class="next-theme"><span class="screen-reader-text"> 466 <?php 467 /* translators: Hidden accessibility text. */ 468 _e( 'Next theme' ); 469 ?> 470 </span></button> 446 471 <# if ( data.installed ) { #> 447 472 <# if ( data.compatible_wp && data.compatible_php ) { #>
Note: See TracChangeset
for help on using the changeset viewer.