Skip to:
Content

BuddyPress.org

Ticket #7895: 7895.3.patch

File 7895.3.patch, 2.5 KB (added by imath, 7 years ago)
  • src/bp-templates/bp-nouveau/buddypress/members/single/profile/change-avatar.php

    diff --git src/bp-templates/bp-nouveau/buddypress/members/single/profile/change-avatar.php src/bp-templates/bp-nouveau/buddypress/members/single/profile/change-avatar.php
    index fa1b4e1e8..51a530125 100644
     
    33 * BuddyPress - Members Profile Change Avatar
    44 *
    55 * @since 3.0.0
    6  * @version 3.1.0
     6 * @version 3.2.0
    77 */
    88?>
    99
     
    1515
    1616        <p class="bp-feedback info">
    1717                <span class="bp-icon" aria-hidden="true"></span>
    18                 <span class="bp-help-text"><?php esc_html_e( 'Your profile photo will be used on your profile and throughout the site. If there is a <a href="https://gravatar.com">Gravatar</a> associated with your account email we will use that, or you can upload an image from your computer.', 'buddypress' ); ?></span>
     18                <span class="bp-help-text">
     19                        <?php
     20                        /* Translators: %s is used to output the link to the Gravatar site */
     21                        printf( esc_html__( 'Your profile photo will be used on your profile and throughout the site. If there is a %s associated with your account email we will use that, or you can upload an image from your computer.', 'buddypress' ),
     22                                /* Translators: Url to the Gravatar site, you can use the one for your country eg: https://fr.gravatar.com for French translation */
     23                                '<a href="' . esc_url( __( 'https://gravatar.com', 'buddypress' ) ) . '">Gravatar</a>'
     24                        ); ?>
     25                </span>
    1926        </p>
    2027
    2128        <form action="" method="post" id="avatar-upload-form" class="standard-form" enctype="multipart/form-data">
     
    7481
    7582<?php else : ?>
    7683
    77         <p class="bp-help-text"><?php esc_html_e( 'Your profile photo will be used on your profile and throughout the site. To change your profile photo, create an account with <a href="https://gravatar.com">Gravatar</a> using the same email address as you used to register with this site.', 'buddypress' ); ?></p>
     84        <p class="bp-help-text">
     85                <?php
     86                /* Translators: %s is used to output the link to the Gravatar site */
     87                printf( esc_html__( 'Your profile photo will be used on your profile and throughout the site. To change your profile photo, create an account with %s using the same email address as you used to register with this site.', 'buddypress' ),
     88                        /* Translators: Url to the Gravatar site, you can use the one for your country eg: https://fr.gravatar.com for French translation */
     89                        '<a href="' . esc_url( __( 'https://gravatar.com', 'buddypress' ) ) . '">Gravatar</a>'
     90                ); ?>
     91        </p>
    7892
    7993<?php endif; ?>
    8094