Changeset 52978 for trunk/src/wp-admin/theme-install.php
- Timestamp:
- 03/22/2022 04:23:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/theme-install.php
r52947 r52978 126 126 127 127 $help_installing = 128 '<p>' . __( 'Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you ’re interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.' ) . '</p>' .128 '<p>' . __( 'Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.' ) . '</p>' . 129 129 '<p>' . __( 'To install the theme so you can preview it with your site’s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.' ) . '</p>'; 130 130 … … 297 297 <# if ( ! data.compatible_wp && ! data.compatible_php ) { #> 298 298 <?php 299 _e( 'This theme does n’t work with your versions of WordPress and PHP.' );299 _e( 'This theme does not work with your versions of WordPress and PHP.' ); 300 300 if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) { 301 301 printf( … … 323 323 <# } else if ( ! data.compatible_wp ) { #> 324 324 <?php 325 _e( 'This theme does n’t work with your version of WordPress.' );325 _e( 'This theme does not work with your version of WordPress.' ); 326 326 if ( current_user_can( 'update_core' ) ) { 327 327 printf( … … 334 334 <# } else if ( ! data.compatible_php ) { #> 335 335 <?php 336 _e( 'This theme does n’t work with your version of PHP.' );336 _e( 'This theme does not work with your version of PHP.' ); 337 337 if ( current_user_can( 'update_php' ) ) { 338 338 printf( … … 485 485 <# if ( ! data.compatible_wp && ! data.compatible_php ) { #> 486 486 <?php 487 _e( 'This theme does n’t work with your versions of WordPress and PHP.' );487 _e( 'This theme does not work with your versions of WordPress and PHP.' ); 488 488 if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) { 489 489 printf( … … 511 511 <# } else if ( ! data.compatible_wp ) { #> 512 512 <?php 513 _e( 'This theme does n’t work with your version of WordPress.' );513 _e( 'This theme does not work with your version of WordPress.' ); 514 514 if ( current_user_can( 'update_core' ) ) { 515 515 printf( … … 522 522 <# } else if ( ! data.compatible_php ) { #> 523 523 <?php 524 _e( 'This theme does n’t work with your version of PHP.' );524 _e( 'This theme does not work with your version of PHP.' ); 525 525 if ( current_user_can( 'update_php' ) ) { 526 526 printf(
Note: See TracChangeset
for help on using the changeset viewer.