From 6f39380c34c5665e4b78e0733d25c39043d7ac94 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Tue, 22 Mar 2022 19:59:04 +0000 Subject: [PATCH] Administration: Replace contracted verb forms for better consistency. This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings. Follow-up to [52978]. See #38913. Built from https://develop.svn.wordpress.org/trunk@52979 git-svn-id: http://core.svn.wordpress.org/trunk@52568 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-plugins-list-table.php | 6 +++--- wp-admin/includes/dashboard.php | 2 +- wp-admin/widgets.php | 2 +- wp-includes/version.php | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/wp-admin/includes/class-wp-plugins-list-table.php b/wp-admin/includes/class-wp-plugins-list-table.php index 9e3f566344..217d2c7e52 100644 --- a/wp-admin/includes/class-wp-plugins-list-table.php +++ b/wp-admin/includes/class-wp-plugins-list-table.php @@ -1272,7 +1272,7 @@ class WP_Plugins_List_Table extends WP_List_Table { ); if ( ! $compatible_php && ! $compatible_wp ) { - _e( 'This plugin doesn’t work with your versions of WordPress and PHP.' ); + _e( 'This plugin does not work with your versions of WordPress and PHP.' ); if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) { printf( /* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */ @@ -1296,7 +1296,7 @@ class WP_Plugins_List_Table extends WP_List_Table { wp_update_php_annotation( '

', '' ); } } elseif ( ! $compatible_wp ) { - _e( 'This plugin doesn’t work with your version of WordPress.' ); + _e( 'This plugin does not work with your version of WordPress.' ); if ( current_user_can( 'update_core' ) ) { printf( /* translators: %s: URL to WordPress Updates screen. */ @@ -1305,7 +1305,7 @@ class WP_Plugins_List_Table extends WP_List_Table { ); } } elseif ( ! $compatible_php ) { - _e( 'This plugin doesn’t work with your version of PHP.' ); + _e( 'This plugin does not work with your version of PHP.' ); if ( current_user_can( 'update_php' ) ) { printf( /* translators: %s: URL to Update PHP page. */ diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index f3e5c94997..11b6dd5929 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -2040,7 +2040,7 @@ function wp_welcome_panel() {

-

+

diff --git a/wp-admin/widgets.php b/wp-admin/widgets.php index 100c62eb93..c1ad0834f8 100644 --- a/wp-admin/widgets.php +++ b/wp-admin/widgets.php @@ -21,7 +21,7 @@ if ( ! current_user_can( 'edit_theme_options' ) ) { } if ( ! current_theme_supports( 'widgets' ) ) { - wp_die( __( 'The theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.' ) ); + 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 follow these instructions.' ) ); } // Used in the HTML title tag. diff --git a/wp-includes/version.php b/wp-includes/version.php index 71a2392f1e..1465f7cc2a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52978'; +$wp_version = '6.0-alpha-52979'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.