Changeset 55276 for trunk/src/wp-includes/class-wp-customize-panel.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-panel.php
r54133 r55276 349 349 <h3 class="accordion-section-title" tabindex="0"> 350 350 {{ data.title }} 351 <span class="screen-reader-text"><?php _e( 'Press return or enter to open this panel' ); ?></span> 351 <span class="screen-reader-text"> 352 <?php 353 /* translators: Hidden accessibility text. */ 354 _e( 'Press return or enter to open this panel' ); 355 ?> 356 </span> 352 357 </h3> 353 358 <ul class="accordion-sub-container control-panel-content"></ul> … … 369 374 ?> 370 375 <li class="panel-meta customize-info accordion-section <# if ( ! data.description ) { #> cannot-expand<# } #>"> 371 <button class="customize-panel-back" tabindex="-1"><span class="screen-reader-text"><?php _e( 'Back' ); ?></span></button> 376 <button class="customize-panel-back" tabindex="-1"><span class="screen-reader-text"> 377 <?php 378 /* translators: Hidden accessibility text. */ 379 _e( 'Back' ); 380 ?> 381 </span></button> 372 382 <div class="accordion-section-title"> 373 383 <span class="preview-notice"> … … 378 388 </span> 379 389 <# if ( data.description ) { #> 380 <button type="button" class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button> 390 <button type="button" class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text"> 391 <?php 392 /* translators: Hidden accessibility text. */ 393 _e( 'Help' ); 394 ?> 395 </span></button> 381 396 <# } #> 382 397 </div>
Note: See TracChangeset
for help on using the changeset viewer.