Changeset 45932 for trunk/src/wp-admin/theme-install.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/theme-install.php
r45926 r45932 59 59 'back' => __( 'Back' ), 60 60 'error' => sprintf( 61 /* translators: %s: support forums URL*/61 /* translators: %s: Support forums URL. */ 62 62 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 63 63 __( 'https://wordpress.org/support/forums/' ) 64 64 ), 65 65 'tryAgain' => __( 'Try Again' ), 66 /* translators: %d: number of themes*/66 /* translators: %d: Number of themes. */ 67 67 'themesFound' => __( 'Number of Themes found: %d' ), 68 68 'noThemesFound' => __( 'No themes found. Try a different search.' ), 69 69 'collapseSidebar' => __( 'Collapse Sidebar' ), 70 70 'expandSidebar' => __( 'Expand Sidebar' ), 71 /* translators: accessibility text*/71 /* translators: Accessibility text. */ 72 72 'selectFeatureFilter' => __( 'Select one or more Theme features to filter by' ), 73 73 ), … … 94 94 $help_overview = 95 95 '<p>' . sprintf( 96 /* translators: %s: Theme Directory URL */96 /* translators: %s: Theme Directory URL. */ 97 97 __( 'You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the <a href="%s">WordPress Theme Directory</a>. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.' ), 98 98 __( 'https://wordpress.org/themes/' ) … … 271 271 <div class="theme-author"> 272 272 <?php 273 /* translators: %s: Theme author name */273 /* translators: %s: Theme author name. */ 274 274 printf( __( 'By %s' ), '{{ data.author }}' ); 275 275 ?> … … 282 282 <# if ( data.installed ) { #> 283 283 <?php 284 /* translators: %s: Theme name */284 /* translators: %s: Theme name. */ 285 285 $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' ); 286 286 ?> … … 295 295 <# } else { #> 296 296 <?php 297 /* translators: %s: Theme name */297 /* translators: %s: Theme name. */ 298 298 $aria_label = sprintf( __( 'Install %s' ), '{{ data.name }}' ); 299 299 ?> … … 326 326 <span class="theme-by"> 327 327 <?php 328 /* translators: %s: Theme author name */328 /* translators: %s: Theme author name. */ 329 329 printf( __( 'By %s' ), '{{ data.author }}' ); 330 330 ?> … … 339 339 <a class="num-ratings" href="{{ data.reviews_url }}"> 340 340 <?php 341 /* translators: %s: number of ratings*/341 /* translators: %s: Number of ratings. */ 342 342 echo sprintf( __( '(%s ratings)' ), '{{ data.num_ratings }}' ); 343 343 ?> … … 349 349 <div class="theme-version"> 350 350 <?php 351 /* translators: %s: Theme version */351 /* translators: %s: Theme version. */ 352 352 printf( __( 'Version: %s' ), '{{ data.version }}' ); 353 353 ?>
Note: See TracChangeset
for help on using the changeset viewer.