Changeset 52979
- Timestamp:
- 03/22/2022 07:57:20 PM (3 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r52227 r52979 1273 1273 1274 1274 if ( ! $compatible_php && ! $compatible_wp ) { 1275 _e( 'This plugin does n’t work with your versions of WordPress and PHP.' );1275 _e( 'This plugin does not work with your versions of WordPress and PHP.' ); 1276 1276 if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) { 1277 1277 printf( … … 1297 1297 } 1298 1298 } elseif ( ! $compatible_wp ) { 1299 _e( 'This plugin does n’t work with your version of WordPress.' );1299 _e( 'This plugin does not work with your version of WordPress.' ); 1300 1300 if ( current_user_can( 'update_core' ) ) { 1301 1301 printf( … … 1306 1306 } 1307 1307 } elseif ( ! $compatible_php ) { 1308 _e( 'This plugin does n’t work with your version of PHP.' );1308 _e( 'This plugin does not work with your version of PHP.' ); 1309 1309 if ( current_user_can( 'update_php' ) ) { 1310 1310 printf( -
trunk/src/wp-admin/includes/dashboard.php
r52978 r52979 2041 2041 <?php else : ?> 2042 2042 <h3><?php _e( 'Discover a new way to build your site.' ); ?></h3> 2043 <p><?php _e( 'There ’s a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.' ); ?></p>2043 <p><?php _e( 'There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.' ); ?></p> 2044 2044 <a href="<?php echo esc_url( __( 'https://wordpress.org/support/article/block-themes/' ) ); ?>"><?php _e( 'Learn about block themes' ); ?></a> 2045 2045 <?php endif; ?> -
trunk/src/wp-admin/widgets.php
r51475 r52979 22 22 23 23 if ( ! current_theme_supports( 'widgets' ) ) { 24 wp_die( __( 'The theme you are currently using is n’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please <a href="https://developer.wordpress.org/themes/functionality/widgets/">follow these instructions</a>.' ) );24 wp_die( __( 'The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please <a href="https://developer.wordpress.org/themes/functionality/widgets/">follow these instructions</a>.' ) ); 25 25 } 26 26
Note: See TracChangeset
for help on using the changeset viewer.