mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +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:
@@ -877,7 +877,7 @@ function customize_themes_print_templates() {
|
||||
<?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.' ),
|
||||
'{{{ data.name }}}'
|
||||
);
|
||||
if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
|
||||
@@ -907,7 +907,7 @@ function customize_themes_print_templates() {
|
||||
<?php
|
||||
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.' ),
|
||||
'{{{ data.name }}}'
|
||||
);
|
||||
if ( current_user_can( 'update_core' ) ) {
|
||||
@@ -922,7 +922,7 @@ function customize_themes_print_templates() {
|
||||
<?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.' ),
|
||||
'{{{ data.name }}}'
|
||||
);
|
||||
if ( current_user_can( 'update_php' ) ) {
|
||||
@@ -956,7 +956,7 @@ function customize_themes_print_templates() {
|
||||
<div class="notice notice-error notice-alt notice-large"><p>
|
||||
<# if ( ! data.compatibleWP && ! data.compatiblePHP ) { #>
|
||||
<?php
|
||||
_e( 'This theme doesn’t work with your versions of WordPress and PHP.' );
|
||||
_e( 'This theme 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. */
|
||||
@@ -982,7 +982,7 @@ function customize_themes_print_templates() {
|
||||
?>
|
||||
<# } else if ( ! data.compatibleWP ) { #>
|
||||
<?php
|
||||
_e( 'This theme doesn’t work with your version of WordPress.' );
|
||||
_e( 'This theme does not work with your version of WordPress.' );
|
||||
if ( current_user_can( 'update_core' ) ) {
|
||||
printf(
|
||||
/* translators: %s: URL to WordPress Updates screen. */
|
||||
@@ -993,7 +993,7 @@ function customize_themes_print_templates() {
|
||||
?>
|
||||
<# } else if ( ! data.compatiblePHP ) { #>
|
||||
<?php
|
||||
_e( 'This theme doesn’t work with your version of PHP.' );
|
||||
_e( 'This theme does not work with your version of PHP.' );
|
||||
if ( current_user_can( 'update_php' ) ) {
|
||||
printf(
|
||||
/* translators: %s: URL to Update PHP page. */
|
||||
|
||||
Reference in New Issue
Block a user