Changeset 13938
- Timestamp:
- 06/24/2024 05:52:06 PM (8 months ago)
- Location:
- trunk/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/deprecated/2.8.php
r13911 r13938 144 144 $p, 145 145 esc_html__( 'A BuddyPress update is available, but your system is not compatible.', 'buddypress' ) . ' ' . 146 sprintf( esc_html__( 'See %s for more information.', 'buddypress' ), '<a href="https://codex.buddypress.org/getting-started/buddypress-2-8-will-require-php-5-3/">' . esc_html__( 'the Codex guide', 'buddypress' ) . '</a>' ) 146 sprintf( 147 /* translators: %s: the documentation page link giving more information */ 148 esc_html__( 'See %s for more information.', 'buddypress' ), 149 '<a href="https://codex.buddypress.org/getting-started/buddypress-2-8-will-require-php-5-3/">' . esc_html__( 'the Codex guide', 'buddypress' ) . '</a>' 150 ) 147 151 ); 148 152 -
trunk/src/bp-templates/bp-legacy/buddypress/activity/comment.php
r13822 r13938 27 27 <div class="acomment-meta"> 28 28 <?php 29 /* translators: 1: user profile link, 2: user name, 3: activity permalink, 4: ISO8601 timestamp, 5: activity relative timestamp */30 29 printf( 30 /* translators: 1: user profile link, 2: user name, 3: activity permalink, 4: ISO8601 timestamp, 5: activity relative timestamp */ 31 31 esc_html__( '%1$s replied %2$s', 'buddypress' ), 32 32 '<a href="' . esc_url( bp_get_activity_comment_user_link() ) . '">' . esc_html( bp_get_activity_comment_name() ) . '</a>', -
trunk/src/bp-templates/bp-legacy/buddypress/activity/post-form.php
r13822 r13938 30 30 <?php 31 31 if ( bp_is_group() ) { 32 /* translators: 1: group name. 2: member name. */33 32 printf( 33 /* translators: 1: group name. 2: member name. */ 34 34 esc_html__( 'What\'s new in %1$s, %2$s?', 'buddypress' ), 35 35 esc_html( bp_get_group_name() ), … … 37 37 ); 38 38 } else { 39 /* translators: %s: member name */40 39 printf( 40 /* translators: %s: member name */ 41 41 esc_html__( "What's new, %s?", 'buddypress' ), 42 42 esc_html( bp_get_user_firstname( bp_get_loggedin_user_fullname() ) ) -
trunk/src/bp-templates/bp-legacy/buddypress/members/activate.php
r13822 r13938 47 47 <p> 48 48 <?php 49 /* translators: %s: login url */50 49 printf( 50 /* translators: %s: login url */ 51 51 esc_html__( 'Your account was activated successfully! You can now %s with the username and password you provided when you signed up.', 'buddypress' ), 52 52 '<a href="'. esc_url( wp_login_url( bp_get_root_url() ) ) . '">' . esc_html__( 'log in', 'buddypress' ) . '</a>' -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php
r13822 r13938 26 26 <?php 27 27 printf( 28 /* Translators: %s is used to output the link to the Gravatar site */ 28 29 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' ), 29 30 '<a href="http://gravatar.com">Gravatar</a>' … … 95 96 <?php 96 97 printf( 98 /* Translators: %s is used to output the link to the Gravatar site */ 97 99 esc_html__( 'Your profile photo will be used on your profile and throughout the site. To change your profile photo, please create an account with %s using the same email address as you used to register with this site.', 'buddypress' ), 98 100 '<a href="https://gravatar.com">Gravatar</a>' -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/general.php
r13860 r13938 35 35 <input type="email" name="email" id="email" value="<?php echo esc_attr( bp_get_displayed_user_email() ); ?>" class="settings-input" <?php bp_form_field_attributes( 'email' ); ?>/> 36 36 37 <label for="pass1"><?php printf( esc_html__( 'Change Password %s', 'buddypress' ), '<span>' . esc_html__( '(leave blank for no change)', 'buddypress' ) . '</span>' ); ?></label> 37 <label for="pass1"> 38 <?php 39 /* translators: %s: Information about how to keep password unchanged. */ 40 printf( esc_html__( 'Change Password %s', 'buddypress' ), '<span>' . esc_html__( '(leave blank for no change)', 'buddypress' ) . '</span>' ); 41 ?> 42 </label> 38 43 <input type="password" name="pass1" id="pass1" size="16" value="" class="settings-input small password-entry" <?php bp_form_field_attributes( 'password' ); ?>/> 39 44 <div id="pass-strength-result"></div> -
trunk/src/bp-templates/bp-nouveau/buddypress/members/single/settings/general.php
r13443 r13938 23 23 <label for="pwd"> 24 24 <?php 25 /* translators: %s: email requirement explanations*/25 /* translators: %s: the required text information. */ 26 26 printf( esc_html__( 'Current Password %s', 'buddypress' ), '<span>' . esc_html__( '(required to update email or change current password)', 'buddypress' ) . '</span>' ); 27 27 ?>
Note: See TracChangeset
for help on using the changeset viewer.