Changeset 55276 for trunk/src/wp-includes/class-wp-customize-manager.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-manager.php
r55161 r55276 4286 4286 <div class="notification-message">{{{ data.message || data.code }}}</div> 4287 4287 <# if ( data.dismissible ) { #> 4288 <button type="button" class="notice-dismiss"><span class="screen-reader-text"><?php _e( 'Dismiss' ); ?></span></button> 4288 <button type="button" class="notice-dismiss"><span class="screen-reader-text"> 4289 <?php 4290 /* translators: Hidden accessibility text. */ 4291 _e( 'Dismiss' ); 4292 ?> 4293 </span></button> 4289 4294 <# } #> 4290 4295 </li> … … 4353 4358 <div class="customize-control-notifications-container"></div> 4354 4359 <div class="preview-link-wrapper"> 4355 <label for="{{ elementPrefix }}customize-preview-link-input" class="screen-reader-text"><?php esc_html_e( 'Preview Link' ); ?></label> 4360 <label for="{{ elementPrefix }}customize-preview-link-input" class="screen-reader-text"> 4361 <?php 4362 /* translators: Hidden accessibility text. */ 4363 esc_html_e( 'Preview Link' ); 4364 ?> 4365 </label> 4356 4366 <a href="" target=""> 4357 4367 <span class="preview-control-element" data-component="url"></span> 4358 <span class="screen-reader-text"><?php _e( '(opens in a new tab)' ); ?></span> 4368 <span class="screen-reader-text"> 4369 <?php 4370 /* translators: Hidden accessibility text. */ 4371 _e( '(opens in a new tab)' ); 4372 ?> 4373 </span> 4359 4374 </a> 4360 4375 <input id="{{ elementPrefix }}customize-preview-link-input" readonly tabindex="-1" class="preview-control-element" data-component="input"> … … 5677 5692 esc_url( __( 'https://wordpress.org/support/article/css/' ) ), 5678 5693 __( 'Learn more about CSS' ), 5679 /* translators: Accessibility text. */5694 /* translators: Hidden accessibility text. */ 5680 5695 __( '(opens in a new tab)' ) 5681 5696 ); … … 5698 5713 sprintf( 5699 5714 '<span class="screen-reader-text"> %s</span>', 5700 /* translators: Accessibility text. */5715 /* translators: Hidden accessibility text. */ 5701 5716 __( '(opens in a new tab)' ) 5702 5717 )
Note: See TracChangeset
for help on using the changeset viewer.