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:
@@ -125,7 +125,7 @@ get_current_screen()->add_help_tab(
|
||||
);
|
||||
|
||||
$help_installing =
|
||||
'<p>' . __( 'Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you’re interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.' ) . '</p>' .
|
||||
'<p>' . __( 'Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.' ) . '</p>' .
|
||||
'<p>' . __( 'To install the theme so you can preview it with your site’s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.' ) . '</p>';
|
||||
|
||||
get_current_screen()->add_help_tab(
|
||||
@@ -296,7 +296,7 @@ if ( $tab ) {
|
||||
<div class="notice notice-error notice-alt"><p>
|
||||
<# if ( ! data.compatible_wp && ! data.compatible_php ) { #>
|
||||
<?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. */
|
||||
@@ -322,7 +322,7 @@ if ( $tab ) {
|
||||
?>
|
||||
<# } else if ( ! data.compatible_wp ) { #>
|
||||
<?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. */
|
||||
@@ -333,7 +333,7 @@ if ( $tab ) {
|
||||
?>
|
||||
<# } else if ( ! data.compatible_php ) { #>
|
||||
<?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. */
|
||||
@@ -484,7 +484,7 @@ if ( $tab ) {
|
||||
<div class="notice notice-error notice-alt notice-large"><p>
|
||||
<# if ( ! data.compatible_wp && ! data.compatible_php ) { #>
|
||||
<?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. */
|
||||
@@ -510,7 +510,7 @@ if ( $tab ) {
|
||||
?>
|
||||
<# } else if ( ! data.compatible_wp ) { #>
|
||||
<?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. */
|
||||
@@ -521,7 +521,7 @@ if ( $tab ) {
|
||||
?>
|
||||
<# } else if ( ! data.compatible_php ) { #>
|
||||
<?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