Changeset 48659 for trunk/src/wp-admin/includes/theme.php
- Timestamp:
- 07/28/2020 11:29:28 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/theme.php
r48652 r48659 812 812 <# if ( ! data.updateResponse.compatibleWP && ! data.updateResponse.compatiblePHP ) { #> 813 813 <?php 814 _e( 'There is a new version available, but it doesn’t work with your versions of WordPress and PHP.' ); 814 printf( 815 /* translators: %s: Theme name. */ 816 __( 'There is a new version of %s available, but it doesn’t work with your versions of WordPress and PHP.' ), 817 '{{{ data.name }}}' 818 ); 815 819 if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) { 816 820 printf( … … 838 842 <# } else if ( ! data.updateResponse.compatibleWP ) { #> 839 843 <?php 840 _e( 'There is a new version available, but it doesn’t work with your version of WordPress.' ); 844 printf( 845 /* translators: %s: Theme name. */ 846 __( 'There is a new version of %s available, but it doesn’t work with your version of WordPress.' ), 847 '{{{ data.name }}}' 848 ); 841 849 if ( current_user_can( 'update_core' ) ) { 842 850 printf( … … 849 857 <# } else if ( ! data.updateResponse.compatiblePHP ) { #> 850 858 <?php 851 _e( 'There is a new version available, but it doesn’t work with your version of PHP.' ); 859 printf( 860 /* translators: %s: Theme name. */ 861 __( 'There is a new version of %s available, but it doesn’t work with your version of PHP.' ), 862 '{{{ data.name }}}' 863 ); 852 864 if ( current_user_can( 'update_php' ) ) { 853 865 printf(
Note: See TracChangeset
for help on using the changeset viewer.