wp/wp-includes/customize/class-wp-customize-themes-panel.php
changeset 16 a86126ab1dd4
parent 7 cf61fcea0001
child 19 3d72ae0968f4
equal deleted inserted replaced
15:3d4e9c994f10 16:a86126ab1dd4
    69 		<li class="panel-meta customize-info accordion-section <# if ( ! data.description ) { #> cannot-expand<# } #>">
    69 		<li class="panel-meta customize-info accordion-section <# if ( ! data.description ) { #> cannot-expand<# } #>">
    70 			<button class="customize-panel-back" tabindex="-1" type="button"><span class="screen-reader-text"><?php _e( 'Back' ); ?></span></button>
    70 			<button class="customize-panel-back" tabindex="-1" type="button"><span class="screen-reader-text"><?php _e( 'Back' ); ?></span></button>
    71 			<div class="accordion-section-title">
    71 			<div class="accordion-section-title">
    72 				<span class="preview-notice">
    72 				<span class="preview-notice">
    73 					<?php
    73 					<?php
    74 					/* translators: %s: themes panel title in the Customizer */
    74 					printf(
    75 					echo sprintf( __( 'You are browsing %s' ), '<strong class="panel-title">' . __( 'Themes' ) . '</strong>' ); // Separate strings for consistency with other panels.
    75 						/* translators: %s: Themes panel title in the Customizer. */
       
    76 						__( 'You are browsing %s' ),
       
    77 						'<strong class="panel-title">' . __( 'Themes' ) . '</strong>'
       
    78 					); // Separate strings for consistency with other panels.
    76 					?>
    79 					?>
    77 				</span>
    80 				</span>
    78 				<?php if ( current_user_can( 'install_themes' ) && ! is_multisite() ) : ?>
    81 				<?php if ( current_user_can( 'install_themes' ) && ! is_multisite() ) : ?>
    79 					<# if ( data.description ) { #>
    82 					<# if ( data.description ) { #>
    80 						<button class="customize-help-toggle dashicons dashicons-editor-help" type="button" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button>
    83 						<button class="customize-help-toggle dashicons dashicons-editor-help" type="button" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button>