- Timestamp:
- 03/22/2022 04:23:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-theme-control.php
r52947 r52978 114 114 printf( 115 115 /* translators: %s: Theme name. */ 116 __( 'There is a new version of %s available, but it does n’t work with your versions of WordPress and PHP.' ),116 __( 'There is a new version of %s available, but it does not work with your versions of WordPress and PHP.' ), 117 117 '{{{ data.theme.name }}}' 118 118 ); … … 144 144 printf( 145 145 /* translators: %s: Theme name. */ 146 __( 'There is a new version of %s available, but it does n’t work with your version of WordPress.' ),146 __( 'There is a new version of %s available, but it does not work with your version of WordPress.' ), 147 147 '{{{ data.theme.name }}}' 148 148 ); … … 159 159 printf( 160 160 /* translators: %s: Theme name. */ 161 __( 'There is a new version of %s available, but it does n’t work with your version of PHP.' ),161 __( 'There is a new version of %s available, but it does not work with your version of PHP.' ), 162 162 '{{{ data.theme.name }}}' 163 163 ); … … 181 181 <# if ( ! data.theme.compatibleWP && ! data.theme.compatiblePHP ) { #> 182 182 <?php 183 _e( 'This theme does n’t work with your versions of WordPress and PHP.' );183 _e( 'This theme does not work with your versions of WordPress and PHP.' ); 184 184 if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) { 185 185 printf( … … 207 207 <# } else if ( ! data.theme.compatibleWP ) { #> 208 208 <?php 209 _e( 'This theme does n’t work with your version of WordPress.' );209 _e( 'This theme does not work with your version of WordPress.' ); 210 210 if ( current_user_can( 'update_core' ) ) { 211 211 printf( … … 218 218 <# } else if ( ! data.theme.compatiblePHP ) { #> 219 219 <?php 220 _e( 'This theme does n’t work with your version of PHP.' );220 _e( 'This theme does not work with your version of PHP.' ); 221 221 if ( current_user_can( 'update_php' ) ) { 222 222 printf(
Note: See TracChangeset
for help on using the changeset viewer.