Changeset 10562
- Timestamp:
- 02/08/2016 05:18:31 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/bp-groups-template.php
r10531 r10562 478 478 479 479 if ( 'public' == $group->status ) { 480 $type = __( "Public Group", "buddypress");480 $type = __( "Public Group", 'buddypress' ); 481 481 } elseif ( 'hidden' == $group->status ) { 482 $type = __( "Hidden Group", "buddypress");482 $type = __( "Hidden Group", 'buddypress' ); 483 483 } elseif ( 'private' == $group->status ) { 484 $type = __( "Private Group", "buddypress");484 $type = __( "Private Group", 'buddypress' ); 485 485 } else { 486 486 $type = ucwords( $group->status ) . ' ' . __( 'Group', 'buddypress' ); -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/admin.php
r10487 r10562 314 314 315 315 <div class="bp-widget"> 316 <h4><?php _e( "Members", "buddypress"); ?></h4>316 <h4><?php _e( "Members", 'buddypress' ); ?></h4> 317 317 318 318 <?php if ( bp_group_has_members( 'per_page=15&exclude_banned=0' ) ) : ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/request-membership.php
r10181 r10562 15 15 16 16 <?php if ( !bp_group_has_requested_membership() ) : ?> 17 <p><?php printf( __( "You are requesting to become a member of the group '%s'.", "buddypress"), bp_get_group_name( false ) ); ?></p>17 <p><?php printf( __( "You are requesting to become a member of the group '%s'.", 'buddypress' ), bp_get_group_name( false ) ); ?></p> 18 18 19 19 <form action="<?php bp_group_form_action('request-membership' ); ?>" method="post" name="request-membership-form" id="request-membership-form" class="standard-form"> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/compose.php
r10181 r10562 28 28 29 29 <?php if ( bp_current_user_can( 'bp_moderate' ) ) : ?> 30 <p><label for="send-notice"><input type="checkbox" id="send-notice" name="send-notice" value="1" /> <?php _e( "This is a notice to all users.", "buddypress"); ?></label></p>30 <p><label for="send-notice"><input type="checkbox" id="send-notice" name="send-notice" value="1" /> <?php _e( "This is a notice to all users.", 'buddypress' ); ?></label></p> 31 31 <?php endif; ?> 32 32 -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php
r10250 r10562 102 102 103 103 <td class="thread-info"> 104 <p><a href="<?php bp_message_thread_view_link(); ?>" title="<?php esc_attr_e( "View Message", "buddypress"); ?>"><?php bp_message_thread_subject(); ?></a></p>104 <p><a href="<?php bp_message_thread_view_link(); ?>" title="<?php esc_attr_e( "View Message", 'buddypress' ); ?>"><?php bp_message_thread_subject(); ?></a></p> 105 105 <p class="thread-excerpt"><?php bp_message_thread_excerpt(); ?></p> 106 106 </td> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php
r10181 r10562 75 75 <td width="10%"> 76 76 <a class="button" href="<?php bp_message_activate_deactivate_link(); ?>" class="confirm"><?php bp_message_activate_deactivate_text(); ?></a> 77 <a class="button" href="<?php bp_message_notice_delete_link(); ?>" class="confirm" title="<?php esc_attr_e( "Delete Message", "buddypress"); ?>">x</a>77 <a class="button" href="<?php bp_message_notice_delete_link(); ?>" class="confirm" title="<?php esc_attr_e( "Delete Message", 'buddypress' ); ?>">x</a> 78 78 </td> 79 79 </tr> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/single.php
r10181 r10562 42 42 </span> 43 43 44 <a class="button confirm" href="<?php bp_the_thread_delete_link(); ?>" title="<?php esc_attr_e( "Delete Conversation", "buddypress"); ?>"><?php _e( 'Delete', 'buddypress' ); ?></a>44 <a class="button confirm" href="<?php bp_the_thread_delete_link(); ?>" title="<?php esc_attr_e( "Delete Conversation", 'buddypress' ); ?>"><?php _e( 'Delete', 'buddypress' ); ?></a> 45 45 </p> 46 46 -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php
r10272 r10562 24 24 do_action( 'bp_before_profile_field_content' ); ?> 25 25 26 <h4><?php printf( __( "Editing '%s' Profile Group", "buddypress"), bp_get_the_profile_group_name() ); ?></h4>26 <h4><?php printf( __( "Editing '%s' Profile Group", 'buddypress' ), bp_get_the_profile_group_name() ); ?></h4> 27 27 28 28 <?php if ( bp_profile_has_multiple_groups() ) : ?>
Note: See TracChangeset
for help on using the changeset viewer.