Make WordPress Core

Ticket #54372: 54372.earlier-location.diff

File 54372.earlier-location.diff, 3.0 KB (added by costdev, 3 years ago)

Move on your site at %s to an earlier location in the message.

  • src/wp-admin/includes/class-wp-automatic-updater.php

    diff --git a/src/wp-admin/includes/class-wp-automatic-updater.php b/src/wp-admin/includes/class-wp-automatic-updater.php
    index 641db4b325..81d47c2e20 100644
    a b class WP_Automatic_Updater { 
    10351035                                        $subject = __( '[%s] Some plugins and themes have automatically updated' );
    10361036                                        $body[]  = sprintf(
    10371037                                                /* translators: %s: Home URL. */
    1038                                                 __( 'Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.' ),
     1038                                                __( 'Howdy! Some plugins and themes on your site at %s have automatically updated to their latest versions. No further action is needed on your part.' ),
    10391039                                                home_url()
    10401040                                        );
    10411041                                } elseif ( $successful_plugins ) {
    class WP_Automatic_Updater { 
    10431043                                        $subject = __( '[%s] Some plugins were automatically updated' );
    10441044                                        $body[]  = sprintf(
    10451045                                                /* translators: %s: Home URL. */
    1046                                                 __( 'Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.' ),
     1046                                                __( 'Howdy! Some plugins on your site at %s have automatically updated to their latest versions. No further action is needed on your part.' ),
    10471047                                                home_url()
    10481048                                        );
    10491049                                } else {
    class WP_Automatic_Updater { 
    10511051                                        $subject = __( '[%s] Some themes were automatically updated' );
    10521052                                        $body[]  = sprintf(
    10531053                                                /* translators: %s: Home URL. */
    1054                                                 __( 'Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.' ),
     1054                                                __( 'Howdy! Some themes on your site at %s have automatically updated to their latest versions. No further action is needed on your part.' ),
    10551055                                                home_url()
    10561056                                        );
    10571057                                }
    class WP_Automatic_Updater { 
    10641064                                        $subject = __( '[%s] Some plugins and themes have failed to update' );
    10651065                                        $body[]  = sprintf(
    10661066                                                /* translators: %s: Home URL. */
    1067                                                 __( 'Howdy! Plugins and themes failed to update on your site at %s.' ),
     1067                                                __( 'Howdy! Plugins and themes on your site at %s failed to update.' ),
    10681068                                                home_url()
    10691069                                        );
    10701070                                } elseif ( $failed_plugins ) {
    class WP_Automatic_Updater { 
    10721072                                        $subject = __( '[%s] Some plugins have failed to update' );
    10731073                                        $body[]  = sprintf(
    10741074                                                /* translators: %s: Home URL. */
    1075                                                 __( 'Howdy! Plugins failed to update on your site at %s.' ),
     1075                                                __( 'Howdy! Plugins on your site at %s failed to update.' ),
    10761076                                                home_url()
    10771077                                        );
    10781078                                } else {
    class WP_Automatic_Updater { 
    10801080                                        $subject = __( '[%s] Some themes have failed to update' );
    10811081                                        $body[]  = sprintf(
    10821082                                                /* translators: %s: Home URL. */
    1083                                                 __( 'Howdy! Themes failed to update on your site at %s.' ),
     1083                                                __( 'Howdy! Themes on your site at %s failed to update.' ),
    10841084                                                home_url()
    10851085                                        );
    10861086                                }