mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-16 23:00:21 +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:
@@ -534,7 +534,7 @@ function wp_plugin_update_row( $file, $plugin_data ) {
|
||||
} else {
|
||||
printf(
|
||||
/* translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, 4: Version number 5: URL to Update PHP page. */
|
||||
__( 'There is a new version of %1$s available, but it doesn’t work with your version of PHP. <a href="%2$s" %3$s>View version %4$s details</a> or <a href="%5$s">learn more about updating PHP</a>.' ),
|
||||
__( 'There is a new version of %1$s available, but it does not work with your version of PHP. <a href="%2$s" %3$s>View version %4$s details</a> or <a href="%5$s">learn more about updating PHP</a>.' ),
|
||||
$plugin_name,
|
||||
esc_url( $details_url ),
|
||||
sprintf(
|
||||
@@ -722,7 +722,7 @@ function wp_theme_update_row( $theme_key, $theme ) {
|
||||
if ( ! $compatible_wp && ! $compatible_php ) {
|
||||
printf(
|
||||
/* translators: %s: Theme name. */
|
||||
__( 'There is a new version of %s available, but it doesn’t work with your versions of WordPress and PHP.' ),
|
||||
__( 'There is a new version of %s available, but it does not work with your versions of WordPress and PHP.' ),
|
||||
$theme['Name']
|
||||
);
|
||||
if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
|
||||
@@ -750,7 +750,7 @@ function wp_theme_update_row( $theme_key, $theme ) {
|
||||
} elseif ( ! $compatible_wp ) {
|
||||
printf(
|
||||
/* translators: %s: Theme name. */
|
||||
__( 'There is a new version of %s available, but it doesn’t work with your version of WordPress.' ),
|
||||
__( 'There is a new version of %s available, but it does not work with your version of WordPress.' ),
|
||||
$theme['Name']
|
||||
);
|
||||
if ( current_user_can( 'update_core' ) ) {
|
||||
@@ -763,7 +763,7 @@ function wp_theme_update_row( $theme_key, $theme ) {
|
||||
} elseif ( ! $compatible_php ) {
|
||||
printf(
|
||||
/* translators: %s: Theme name. */
|
||||
__( 'There is a new version of %s available, but it doesn’t work with your version of PHP.' ),
|
||||
__( 'There is a new version of %s available, but it does not work with your version of PHP.' ),
|
||||
$theme['Name']
|
||||
);
|
||||
if ( current_user_can( 'update_php' ) ) {
|
||||
|
||||
Reference in New Issue
Block a user