Changeset 38071 for trunk/src/wp-admin/themes.php
- Timestamp:
- 07/16/2016 11:19:05 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/themes.php
r38057 r38071 280 280 <?php 281 281 /* translators: %s: Theme name */ 282 $aria_label = sprintf( _ _( 'Activate %s' ), '{{ data.name }}' );282 $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' ); 283 283 ?> 284 284 <a class="button button-secondary activate" href="<?php echo $theme['actions']['activate']; ?>" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _e( 'Activate' ); ?></a> … … 409 409 <?php 410 410 /* translators: %s: Theme name */ 411 $aria_label = sprintf( _ _( 'Activate %s' ), '{{ data.name }}' );411 $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' ); 412 412 ?> 413 413 <a class="button button-secondary activate" href="{{{ data.actions.activate }}}" aria-label="<?php echo $aria_label; ?>"><?php _e( 'Activate' ); ?></a> … … 467 467 <?php 468 468 /* translators: %s: Theme name */ 469 $aria_label = sprintf( _ _( 'Activate %s' ), '{{ data.name }}' );469 $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' ); 470 470 ?> 471 471 <# if ( data.actions.activate ) { #>
Note: See TracChangeset
for help on using the changeset viewer.