Make WordPress Core


Ignore:
Timestamp:
04/08/2019 06:16:41 AM (7 years ago)
Author:
pento
Message:

Text Changes: Tweak the wording of email notification subjects.

This change brings more coherence between the subject lines of the various emails WordPress will send.

Props ramiy, pento.
Fixes #37940.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-automatic-updater.php

    r43598 r45137  
    905905            $body[] = '';
    906906
    907             /* translators: %s: site title */
    908             $subject = sprintf( __( '[%s] There were failures during background updates' ), $site_title );
     907            /* translators: Background update failed notification email subject. %s: site title */
     908            $subject = sprintf( __( '[%s] Background Update Failed' ), $site_title );
    909909        } else {
    910             /* translators: %s: site title */
    911             $subject = sprintf( __( '[%s] Background updates have finished' ), $site_title );
     910            /* translators: Background update finished notification email subject. %s: site title */
     911            $subject = sprintf( __( '[%s] Background Update Finished' ), $site_title );
    912912        }
    913913
Note: See TracChangeset for help on using the changeset viewer.