- Timestamp:
- 04/29/2024 06:50:42 PM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/groups/index.php
r13442 r13822 64 64 <?php 65 65 /* translators: %s: all groups count */ 66 printf( __( 'All Groups %s', 'buddypress' ), '<span>' . bp_get_total_group_count() . '</span>' );66 printf( esc_html__( 'All Groups %s', 'buddypress' ), '<span>' . esc_html( bp_get_total_group_count() ) . '</span>' ); 67 67 ?> 68 68 </a> … … 74 74 <?php 75 75 /* translators: %s: current user groups count */ 76 printf( __( 'My Groups %s', 'buddypress' ), '<span>' . bp_get_total_group_count_for_user( bp_loggedin_user_id() ) . '</span>' );76 printf( esc_html__( 'My Groups %s', 'buddypress' ), '<span>' . esc_html( bp_get_total_group_count_for_user( bp_loggedin_user_id() ) ) . '</span>' ); 77 77 ?> 78 78 </a> … … 105 105 <li id="groups-order-select" class="last filter"> 106 106 107 <label for="groups-order-by"><?php _e( 'Order By:', 'buddypress' ); ?></label>107 <label for="groups-order-by"><?php esc_html_e( 'Order By:', 'buddypress' ); ?></label> 108 108 109 109 <select id="groups-order-by"> 110 <option value="active"><?php _e( 'Last Active', 'buddypress' ); ?></option>111 <option value="popular"><?php _e( 'Most Members', 'buddypress' ); ?></option>112 <option value="newest"><?php _e( 'Newly Created', 'buddypress' ); ?></option>113 <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option>110 <option value="active"><?php esc_html_e( 'Last Active', 'buddypress' ); ?></option> 111 <option value="popular"><?php esc_html_e( 'Most Members', 'buddypress' ); ?></option> 112 <option value="newest"><?php esc_html_e( 'Newly Created', 'buddypress' ); ?></option> 113 <option value="alphabetical"><?php esc_html_e( 'Alphabetical', 'buddypress' ); ?></option> 114 114 115 115 <?php … … 126 126 </div> 127 127 128 <h2 class="bp-screen-reader-text"><?php 129 /* translators: accessibility text */ 130 _e( 'Groups directory', 'buddypress' ); 131 ?></h2> 128 <h2 class="bp-screen-reader-text"> 129 <?php 130 /* translators: accessibility text */ 131 esc_html_e( 'Groups directory', 'buddypress' ); 132 ?> 133 </h2> 132 134 133 135 <div id="groups-dir-list" class="groups dir-list">
Note: See TracChangeset
for help on using the changeset viewer.