Make WordPress Core


Ignore:
Timestamp:
04/15/2019 10:38:59 PM (7 years ago)
Author:
johnbillion
Message:

I18N: Improvements to and additions of translator comments for various email subject strings.

Props ramiy

Fixes #46920

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/user.php

    r45137 r45204  
    30863086
    30873087    $subject = sprintf(
    3088         /* translators: 1: Site name. 2: Name of the confirmed action. */
     3088        /* translators: Privacy data request confirmed notification email subject. 1: Site title, 2: Name of the confirmed action. */
    30893089        __( '[%1$s] Action Confirmed: %2$s' ),
    30903090        $email_data['sitename'],
     
    34983498    $content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content );
    34993499
    3500     /* translators: Privacy data request subject. 1: Site name, 2: Name of the action */
     3500    /* translators: Confirm privacy data request notification email subject. 1: Site title, 2: Name of the action */
    35013501    $subject = sprintf( __( '[%1$s] Confirm Action: %2$s' ), $email_data['sitename'], $email_data['description'] );
    35023502
Note: See TracChangeset for help on using the changeset viewer.