Changeset 10276
- Timestamp:
- 10/14/2015 04:03:03 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-filters.php
r10220 r10276 759 759 // Activation page 760 760 } elseif ( bp_is_activation_page() ) { 761 $title_parts = array( __( 'Activate your Account', 'buddypress' ) );761 $title_parts = array( __( 'Activate Your Account', 'buddypress' ) ); 762 762 763 763 // Group creation page -
trunk/src/bp-friends/bp-friends-widgets.php
r10251 r10276 71 71 $user_id = bp_displayed_user_id(); 72 72 $link = trailingslashit( bp_displayed_user_domain() . bp_get_friends_slug() ); 73 $instance['title'] = sprintf( __( '%s’s Friends', 'buddypress' ), bp_get_displayed_user_fullname() );73 $instance['title'] = sprintf( __( "%s's Friends", 'buddypress' ), bp_get_displayed_user_fullname() ); 74 74 75 75 if ( empty( $instance['friend_default'] ) ) { -
trunk/src/bp-groups/bp-groups-actions.php
r10160 r10276 341 341 bp_core_add_message( __( 'There was an error saving the group profile photo, please try uploading again.', 'buddypress' ), 'error' ); 342 342 else 343 bp_core_add_message( __( 'The group profile photo was uploaded successfully !', 'buddypress' ) );343 bp_core_add_message( __( 'The group profile photo was uploaded successfully.', 'buddypress' ) ); 344 344 } 345 345 } -
trunk/src/bp-groups/bp-groups-screens.php
r10184 r10276 1333 1333 bp_core_add_message( __( 'There was an error deleting the group. Please try again.', 'buddypress' ), 'error' ); 1334 1334 } else { 1335 bp_core_add_message( __( 'The group was deleted successfully ', 'buddypress' ) );1335 bp_core_add_message( __( 'The group was deleted successfully.', 'buddypress' ) ); 1336 1336 1337 1337 /** -
trunk/src/bp-members/bp-members-functions.php
r10253 r10276 1976 1976 // Change the user's status so they become active 1977 1977 if ( ! $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET user_status = 0 WHERE ID = %d", $user_id ) ) ) { 1978 return new WP_Error( 'invalid_key', __( 'Invalid activation key ', 'buddypress' ) );1978 return new WP_Error( 'invalid_key', __( 'Invalid activation key.', 'buddypress' ) ); 1979 1979 } 1980 1980 -
trunk/src/bp-members/bp-members-screens.php
r10232 r10276 680 680 // Activation page 681 681 } else { 682 $title = __( 'Activate your Account', 'buddypress' );682 $title = __( 'Activate Your Account', 'buddypress' ); 683 683 684 684 if ( bp_account_was_activated() ) { -
trunk/src/bp-members/bp-members-widgets.php
r10149 r10276 372 372 <p> 373 373 <label for="<?php echo $this->get_field_id( 'max_members' ); ?>"> 374 <?php esc_html_e( 'Max Members to show:', 'buddypress' ); ?>374 <?php esc_html_e( 'Max members to show:', 'buddypress' ); ?> 375 375 <input class="widefat" id="<?php echo $this->get_field_id( 'max_members' ); ?>" name="<?php echo $this->get_field_name( 'max_members' ); ?>" type="text" value="<?php echo esc_attr( $max_members ); ?>" style="width: 30%" /> 376 376 </label> … … 522 522 <p> 523 523 <label for="<?php echo $this->get_field_id( 'max_members' ); ?>"> 524 <?php esc_html_e( 'Max Members to show:', 'buddypress' ); ?>524 <?php esc_html_e( 'Max members to show:', 'buddypress' ); ?> 525 525 <input class="widefat" id="<?php echo $this->get_field_id( 'max_members' ); ?>" name="<?php echo $this->get_field_name( 'max_members' ); ?>" type="text" value="<?php echo esc_attr( $max_members ); ?>" style="width: 30%" /> 526 526 </label> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php
r10181 r10276 49 49 <h5><?php _e( 'Crop Your New Profile Photo', 'buddypress' ); ?></h5> 50 50 51 <img src="<?php bp_avatar_to_crop(); ?>" id="avatar-to-crop" class="avatar" alt="<?php esc_attr_e( 'Profile Photo to crop', 'buddypress' ); ?>" />51 <img src="<?php bp_avatar_to_crop(); ?>" id="avatar-to-crop" class="avatar" alt="<?php esc_attr_e( 'Profile photo to crop', 'buddypress' ); ?>" /> 52 52 53 53 <div id="avatar-crop-pane"> 54 <img src="<?php bp_avatar_to_crop(); ?>" id="avatar-crop-preview" class="avatar" alt="<?php esc_attr_e( 'Profile Photo preview', 'buddypress' ); ?>" />54 <img src="<?php bp_avatar_to_crop(); ?>" id="avatar-crop-preview" class="avatar" alt="<?php esc_attr_e( 'Profile photo preview', 'buddypress' ); ?>" /> 55 55 </div> 56 56 -
trunk/src/bp-xprofile/bp-xprofile-activity.php
r10163 r10276 97 97 // natural translation. 98 98 $profile_link = trailingslashit( bp_core_get_user_domain( $activity->user_id ) . bp_get_profile_slug() ); 99 $action = sprintf( __( '%s’s profile was updated', 'buddypress' ), '<a href="' . $profile_link . '">' . bp_core_get_user_displayname( $activity->user_id ) . '</a>' );99 $action = sprintf( __( "%s's profile was updated", 'buddypress' ), '<a href="' . $profile_link . '">' . bp_core_get_user_displayname( $activity->user_id ) . '</a>' ); 100 100 101 101 /** -
trunk/tests/phpunit/testcases/xprofile/activity.php
r10004 r10276 304 304 ) ); 305 305 306 $expected = sprintf( __( '%s’s profile was updated', 'buddypress' ), '<a href="' . bp_core_get_user_domain( $u ) . bp_get_profile_slug() . '/">' . bp_core_get_user_displayname( $u ) . '</a>' );306 $expected = sprintf( __( "%s's profile was updated", 'buddypress' ), '<a href="' . bp_core_get_user_domain( $u ) . bp_get_profile_slug() . '/">' . bp_core_get_user_displayname( $u ) . '</a>' ); 307 307 308 308 $a_obj = new BP_Activity_Activity( $a );
Note: See TracChangeset
for help on using the changeset viewer.