Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/28/2020 01:49:36 PM (5 years ago)
Author:
imath
Message:

BP Templates: add missing /* translators */ comments

See #8260

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/data.php

    r12272 r12595  
    2222
    2323            <p><?php esc_html_e( 'Your request for an export of personal data has been completed.', 'buddypress' ); ?></p>
    24             <p><?php printf( esc_html__( 'You may download your personal data by clicking on the link below. For privacy and security, we will automatically delete the file on %s, so please download it before then.', 'buddypress' ), bp_settings_get_personal_data_expiration_date( $request ) ); ?></p>
     24            <p>
     25                <?php
     26                /* translators: %s: expiration date */
     27                printf( esc_html__( 'You may download your personal data by clicking on the link below. For privacy and security, we will automatically delete the file on %s, so please download it before then.', 'buddypress' ), bp_settings_get_personal_data_expiration_date( $request ) );
     28                ?>
     29            </p>
    2530
    2631            <p><strong><?php printf( '<a href="%1$s">%2$s</a>', bp_settings_get_personal_data_export_url( $request ), esc_html__( 'Download personal data', 'buddypress' ) ); ?></strong></p>
     
    4045    <?php elseif ( 'request-confirmed' === $request->status ) : ?>
    4146
    42         <p><?php printf( esc_html__( 'You previously requested an export of your personal data on %s.', 'buddypress' ), bp_settings_get_personal_data_confirmation_date( $request ) ); ?></p>
     47        <p>
     48            <?php
     49            /* translators: %s: confirmation date */
     50            printf( esc_html__( 'You previously requested an export of your personal data on %s.', 'buddypress' ), bp_settings_get_personal_data_confirmation_date( $request ) );
     51            ?>
     52        </p>
    4353        <p><?php esc_html_e( 'You will receive a link to download your export via email once we are able to fulfill your request.', 'buddypress' ); ?></p>
    4454
Note: See TracChangeset for help on using the changeset viewer.