mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 04:40:26 +00:00
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. Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya. Fixes #38913. See #39176. git-svn-id: https://develop.svn.wordpress.org/trunk@52978 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -535,7 +535,7 @@ function list_plugin_updates() {
|
||||
$compatible_php = is_php_version_compatible( $requires_php );
|
||||
|
||||
if ( ! $compatible_php && current_user_can( 'update_php' ) ) {
|
||||
$compat .= '<br>' . __( 'This update doesn’t work with your version of PHP.' ) . ' ';
|
||||
$compat .= '<br>' . __( 'This update does not work with your version of PHP.' ) . ' ';
|
||||
$compat .= sprintf(
|
||||
/* translators: %s: URL to Update PHP page. */
|
||||
__( '<a href="%s">Learn more about updating PHP</a>.' ),
|
||||
@@ -681,7 +681,7 @@ function list_theme_updates() {
|
||||
$compat = '';
|
||||
|
||||
if ( ! $compatible_wp && ! $compatible_php ) {
|
||||
$compat .= '<br>' . __( 'This update doesn’t work with your versions of WordPress and PHP.' ) . ' ';
|
||||
$compat .= '<br>' . __( 'This update does not work with your versions of WordPress and PHP.' ) . ' ';
|
||||
if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
|
||||
$compat .= sprintf(
|
||||
/* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */
|
||||
@@ -715,7 +715,7 @@ function list_theme_updates() {
|
||||
}
|
||||
}
|
||||
} elseif ( ! $compatible_wp ) {
|
||||
$compat .= '<br>' . __( 'This update doesn’t work with your version of WordPress.' ) . ' ';
|
||||
$compat .= '<br>' . __( 'This update does not work with your version of WordPress.' ) . ' ';
|
||||
if ( current_user_can( 'update_core' ) ) {
|
||||
$compat .= sprintf(
|
||||
/* translators: %s: URL to WordPress Updates screen. */
|
||||
@@ -724,7 +724,7 @@ function list_theme_updates() {
|
||||
);
|
||||
}
|
||||
} elseif ( ! $compatible_php ) {
|
||||
$compat .= '<br>' . __( 'This update doesn’t work with your version of PHP.' ) . ' ';
|
||||
$compat .= '<br>' . __( 'This update does not work with your version of PHP.' ) . ' ';
|
||||
if ( current_user_can( 'update_php' ) ) {
|
||||
$compat .= sprintf(
|
||||
/* translators: %s: URL to Update PHP page. */
|
||||
|
||||
Reference in New Issue
Block a user