Changeset 47090
- Timestamp:
- 01/20/2020 02:25:13 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/themes.php
r46812 r47090 343 343 <?php if ( $theme['active'] ) { ?> 344 344 <h2 class="theme-name" id="<?php echo $aria_name; ?>"> 345 <?php 346 /* translators: %s: Theme name. */ 347 printf( __( '<span>Active:</span> %s' ), $theme['name'] ); 348 ?> 345 <span><?php _ex( 'Active:', 'theme' ); ?></span> <?php echo $theme['name']; ?> 349 346 </h2> 350 347 <?php } else { ?> … … 510 507 <# if ( data.active ) { #> 511 508 <h2 class="theme-name" id="{{ data.id }}-name"> 512 <?php 513 /* translators: %s: Theme name. */ 514 printf( __( '<span>Active:</span> %s' ), '{{{ data.name }}}' ); 515 ?> 509 <span><?php _ex( 'Active:', 'theme' ); ?></span> {{{ data.name }}} 516 510 </h2> 517 511 <# } else { #> -
trunk/src/wp-includes/customize/class-wp-customize-theme-control.php
r45932 r47090 111 111 <div class="theme-id-container"> 112 112 <h3 class="theme-name" id="{{ data.section }}-{{ data.theme.id }}-name"> 113 <span><?php _e ( 'Previewing:' ); ?></span> {{ data.theme.name }}113 <span><?php _ex( 'Previewing:', 'theme' ); ?></span> {{ data.theme.name }} 114 114 </h3> 115 115 <div class="theme-actions">
Note: See TracChangeset
for help on using the changeset viewer.