Changeset 45932 for trunk/src/wp-admin/themes.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/themes.php
r45926 r45932 172 172 'search' => __( 'Search Installed Themes' ), 173 173 'searchPlaceholder' => __( 'Search installed themes...' ), // placeholder (no ellipsis) 174 /* translators: %d: number of themes*/174 /* translators: %d: Number of themes. */ 175 175 'themesFound' => __( 'Number of Themes found: %d' ), 176 176 'noThemesFound' => __( 'No themes found. Try a different search.' ), … … 335 335 <div class="theme-author"> 336 336 <?php 337 /* translators: %s: Theme author name */337 /* translators: %s: Theme author name. */ 338 338 printf( __( 'By %s' ), $theme['author'] ); 339 339 ?> … … 344 344 <h2 class="theme-name" id="<?php echo $aria_name; ?>"> 345 345 <?php 346 /* translators: %s: Theme name */346 /* translators: %s: Theme name. */ 347 347 printf( __( '<span>Active:</span> %s' ), $theme['name'] ); 348 348 ?> … … 359 359 <?php } else { ?> 360 360 <?php 361 /* translators: %s: Theme name */361 /* translators: %s: Theme name. */ 362 362 $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' ); 363 363 ?> … … 502 502 <div class="theme-author"> 503 503 <?php 504 /* translators: %s: Theme author name */504 /* translators: %s: Theme author name. */ 505 505 printf( __( 'By %s' ), '{{{ data.author }}}' ); 506 506 ?> … … 511 511 <h2 class="theme-name" id="{{ data.id }}-name"> 512 512 <?php 513 /* translators: %s: Theme name */513 /* translators: %s: Theme name. */ 514 514 printf( __( '<span>Active:</span> %s' ), '{{{ data.name }}}' ); 515 515 ?> … … 526 526 <# } else { #> 527 527 <?php 528 /* translators: %s: Theme name */528 /* translators: %s: Theme name. */ 529 529 $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' ); 530 530 ?> … … 559 559 <h2 class="theme-name">{{{ data.name }}}<span class="theme-version"> 560 560 <?php 561 /* translators: %s: Theme version */561 /* translators: %s: Theme version. */ 562 562 printf( __( 'Version: %s' ), '{{ data.version }}' ); 563 563 ?> … … 565 565 <p class="theme-author"> 566 566 <?php 567 /* translators: %s: Theme author link */567 /* translators: %s: Theme author link. */ 568 568 printf( __( 'By %s' ), '{{{ data.authorAndUri }}}' ); 569 569 ?> … … 581 581 <p class="parent-theme"> 582 582 <?php 583 /* translators: %s: Theme name */583 /* translators: %s: Theme name. */ 584 584 printf( __( 'This is a child theme of %s.' ), '<strong>{{{ data.parent }}}</strong>' ); 585 585 ?> … … 600 600 <div class="inactive-theme"> 601 601 <?php 602 /* translators: %s: Theme name */602 /* translators: %s: Theme name. */ 603 603 $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' ); 604 604 ?>
Note: See TracChangeset
for help on using the changeset viewer.