Make WordPress Core

Ticket #46920: 46920.patch

File 46920.patch, 1.8 KB (added by ramiy, 6 years ago)
  • wp-admin/includes/class-wp-automatic-updater.php

     
    648648
    649649                switch ( $type ) {
    650650                        case 'success': // We updated.
    651                                 /* translators: 1: Site name, 2: WordPress version number. */
     651                                /* translators: Site updated notification email subject. 1: Site name, 2: WordPress version number. */
    652652                                $subject = __( '[%1$s] Your site has updated to WordPress %2$s' );
    653653                                break;
    654654
    655655                        case 'fail':   // We tried to update but couldn't.
    656656                        case 'manual': // We can't update (and made no attempt).
    657                                 /* translators: 1: Site name, 2: WordPress version number. */
     657                                /* translators: Updated available notification email subject. 1: Site name, 2: WordPress version number. */
    658658                                $subject = __( '[%1$s] WordPress %2$s is available. Please update!' );
    659659                                break;
    660660
    661661                        case 'critical': // We tried to update, started to copy files, then things went wrong.
    662                                 /* translators: 1: Site name. */
     662                                /* translators: Site down notification email subject. 1: Site name. */
    663663                                $subject = __( '[%1$s] URGENT: Your site may be down due to a failed update' );
    664664                                break;
    665665
     
    911911                        );
    912912                        $body[] = '';
    913913
    914                         /* translators: Background update failed notification email subject. %s: site title */
     914                        /* translators: Background update failed notification email subject. %s: Site name */
    915915                        $subject = sprintf( __( '[%s] Background Update Failed' ), $site_title );
    916916                } else {
    917                         /* translators: Background update finished notification email subject. %s: site title */
     917                        /* translators: Background update finished notification email subject. %s: Site name */
    918918                        $subject = sprintf( __( '[%s] Background Update Finished' ), $site_title );
    919919                }
    920920