Changeset 52978 for trunk/src/wp-admin/includes/theme.php
- Timestamp:
- 03/22/2022 04:23:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/theme.php
r52947 r52978 878 878 printf( 879 879 /* translators: %s: Theme name. */ 880 __( 'There is a new version of %s available, but it does n’t work with your versions of WordPress and PHP.' ),880 __( 'There is a new version of %s available, but it does not work with your versions of WordPress and PHP.' ), 881 881 '{{{ data.name }}}' 882 882 ); … … 908 908 printf( 909 909 /* translators: %s: Theme name. */ 910 __( 'There is a new version of %s available, but it does n’t work with your version of WordPress.' ),910 __( 'There is a new version of %s available, but it does not work with your version of WordPress.' ), 911 911 '{{{ data.name }}}' 912 912 ); … … 923 923 printf( 924 924 /* translators: %s: Theme name. */ 925 __( 'There is a new version of %s available, but it does n’t work with your version of PHP.' ),925 __( 'There is a new version of %s available, but it does not work with your version of PHP.' ), 926 926 '{{{ data.name }}}' 927 927 ); … … 957 957 <# if ( ! data.compatibleWP && ! data.compatiblePHP ) { #> 958 958 <?php 959 _e( 'This theme does n’t work with your versions of WordPress and PHP.' );959 _e( 'This theme does not work with your versions of WordPress and PHP.' ); 960 960 if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) { 961 961 printf( … … 983 983 <# } else if ( ! data.compatibleWP ) { #> 984 984 <?php 985 _e( 'This theme does n’t work with your version of WordPress.' );985 _e( 'This theme does not work with your version of WordPress.' ); 986 986 if ( current_user_can( 'update_core' ) ) { 987 987 printf( … … 994 994 <# } else if ( ! data.compatiblePHP ) { #> 995 995 <?php 996 _e( 'This theme does n’t work with your version of PHP.' );996 _e( 'This theme does not work with your version of PHP.' ); 997 997 if ( current_user_can( 'update_php' ) ) { 998 998 printf(
Note: See TracChangeset
for help on using the changeset viewer.