Changeset 55276 for trunk/src/wp-includes/class-wp-customize-section.php
- Timestamp:
- 02/07/2023 05:08:26 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-section.php
r54133 r55276 358 358 <h3 class="accordion-section-title" tabindex="0"> 359 359 {{ data.title }} 360 <span class="screen-reader-text"><?php _e( 'Press return or enter to open this section' ); ?></span> 360 <span class="screen-reader-text"> 361 <?php 362 /* translators: Hidden accessibility text. */ 363 _e( 'Press return or enter to open this section' ); 364 ?> 365 </span> 361 366 </h3> 362 367 <ul class="accordion-section-content"> … … 364 369 <div class="customize-section-title"> 365 370 <button class="customize-section-back" tabindex="-1"> 366 <span class="screen-reader-text"><?php _e( 'Back' ); ?></span> 371 <span class="screen-reader-text"> 372 <?php 373 /* translators: Hidden accessibility text. */ 374 _e( 'Back' ); 375 ?> 376 </span> 367 377 </button> 368 378 <h3> … … 373 383 </h3> 374 384 <# if ( data.description && data.description_hidden ) { #> 375 <button type="button" class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button> 385 <button type="button" class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text"> 386 <?php 387 /* translators: Hidden accessibility text. */ 388 _e( 'Help' ); 389 ?> 390 </span></button> 376 391 <div class="description customize-section-description"> 377 392 {{{ data.description }}}
Note: See TracChangeset
for help on using the changeset viewer.