- Timestamp:
- 04/29/2024 06:50:42 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/members/single/friends.php
r12082 r13822 18 18 <li id="members-order-select" class="last filter"> 19 19 20 <label for="members-friends"><?php _e( 'Order By:', 'buddypress' ); ?></label>20 <label for="members-friends"><?php esc_html_e( 'Order By:', 'buddypress' ); ?></label> 21 21 <select id="members-friends"> 22 <option value="active"><?php _e( 'Last Active', 'buddypress' ); ?></option>23 <option value="newest"><?php _e( 'Newest Registered', 'buddypress' ); ?></option>24 <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option>22 <option value="active"><?php esc_html_e( 'Last Active', 'buddypress' ); ?></option> 23 <option value="newest"><?php esc_html_e( 'Newest Registered', 'buddypress' ); ?></option> 24 <option value="alphabetical"><?php esc_html_e( 'Alphabetical', 'buddypress' ); ?></option> 25 25 26 26 <?php … … 55 55 56 56 <?php if (is_user_logged_in() ) : ?> 57 <h2 class="bp-screen-reader-text"><?php 58 /* translators: accessibility text */ 59 _e( 'My friends', 'buddypress' ); 60 ?></h2> 57 <h2 class="bp-screen-reader-text"> 58 <?php 59 /* translators: accessibility text */ 60 esc_html_e( 'My friends', 'buddypress' ); 61 ?> 62 </h2> 61 63 <?php else : ?> 62 <h2 class="bp-screen-reader-text"><?php 63 /* translators: accessibility text */ 64 _e( 'Friends', 'buddypress' ); 65 ?></h2> 64 <h2 class="bp-screen-reader-text"> 65 <?php 66 /* translators: accessibility text */ 67 esc_html_e( 'Friends', 'buddypress' ); 68 ?> 69 </h2> 66 70 <?php endif ?> 67 71
Note: See TracChangeset
for help on using the changeset viewer.