Changeset 12217 for trunk/src/bp-templates/bp-nouveau/buddypress/members/single/profile/change-avatar.php
- Timestamp:
- 09/05/2018 02:18:49 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/buddypress/members/single/profile/change-avatar.php
r12156 r12217 4 4 * 5 5 * @since 3.0.0 6 * @version 3. 1.06 * @version 3.2.0 7 7 */ 8 8 ?> … … 16 16 <p class="bp-feedback info"> 17 17 <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> 19 26 </p> 20 27 … … 75 82 <?php else : ?> 76 83 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> 78 92 79 93 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.