Changeset 10739
- Timestamp:
- 05/06/2016 12:57:48 AM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-admin.php
r10673 r10739 302 302 if ( bp_get_major_wp_version() >= 4.4 ) { 303 303 get_current_screen()->set_screen_reader_content( array( 304 /* translators: accessibility text */ 304 305 'heading_pagination' => __( 'Activity list navigation', 'buddypress' ), 305 306 ) ); -
trunk/src/bp-activity/classes/class-bp-activity-list-table.php
r10590 r10739 305 305 $url_base = add_query_arg( array( 'page' => 'bp-activity' ), bp_get_admin_url( 'admin.php' ) ); ?> 306 306 307 <h2 class="screen-reader-text"><?php _e( 'Filter activities list', 'buddypress' ); ?></h2> 307 <h2 class="screen-reader-text"><?php 308 /* translators: accessibility text */ 309 _e( 'Filter activities list', 'buddypress' ); 310 ?></h2> 308 311 309 312 <ul class="subsubsub"> … … 415 418 416 419 <div class="alignleft actions"> 417 <label for="activity-type" class="screen-reader-text"><?php _e( 'Filter by activity type', 'buddypress' ); ?></label> 420 <label for="activity-type" class="screen-reader-text"><?php 421 /* translators: accessibility text */ 422 _e( 'Filter by activity type', 'buddypress' ); 423 ?></label> 418 424 <select name="activity_type" id="activity-type"> 419 425 <option value="" <?php selected( ! $selected ); ?>><?php _e( 'View all actions', 'buddypress' ); ?></option> -
trunk/src/bp-core/admin/bp-core-admin-components.php
r10726 r10739 151 151 } ?> 152 152 153 <h3 class="screen-reader-text"><?php _e( 'Filter components list', 'buddypress' ); ?></h3> 153 <h3 class="screen-reader-text"><?php 154 /* translators: accessibility text */ 155 _e( 'Filter components list', 'buddypress' ); 156 ?></h3> 154 157 155 158 <ul class="subsubsub"> -
trunk/src/bp-groups/bp-groups-admin.php
r10673 r10739 180 180 if ( bp_get_major_wp_version() >= 4.4 ) { 181 181 get_current_screen()->set_screen_reader_content( array( 182 /* translators: accessibility text */ 182 183 'heading_pagination' => __( 'Groups list navigation', 'buddypress' ), 183 184 ) ); -
trunk/src/bp-groups/classes/class-bp-groups-list-table.php
r10520 r10739 217 217 $this->display_tablenav( 'top' ); ?> 218 218 219 <h2 class="screen-reader-text"><?php _e( 'Groups list', 'buddypress' ); ?></h2> 219 <h2 class="screen-reader-text"><?php 220 /* translators: accessibility text */ 221 _e( 'Groups list', 'buddypress' ); 222 ?></h2> 220 223 221 224 <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0"> … … 285 288 $url_base = bp_get_admin_url( 'admin.php?page=bp-groups' ); ?> 286 289 287 <h2 class="screen-reader-text"><?php _e( 'Filter groups list', 'buddypress' ); ?></h2> 290 <h2 class="screen-reader-text"><?php 291 /* translators: accessibility text */ 292 _e( 'Filter groups list', 'buddypress' ); 293 ?></h2> 288 294 289 295 <ul class="subsubsub"> -
trunk/src/bp-members/classes/class-bp-members-admin.php
r10673 r10739 1462 1462 if ( bp_get_major_wp_version() >= 4.4 ) { 1463 1463 get_current_screen()->set_screen_reader_content( array( 1464 /* translators: accessibility text */ 1464 1465 'heading_views' => __( 'Filter users list', 'buddypress' ), 1466 /* translators: accessibility text */ 1465 1467 'heading_pagination' => __( 'Pending users list navigation', 'buddypress' ), 1468 /* translators: accessibility text */ 1466 1469 'heading_list' => __( 'Pending users list', 'buddypress' ), 1467 1470 ) );
Note: See TracChangeset
for help on using the changeset viewer.