Changeset 55276 for trunk/src/wp-admin/includes/dashboard.php
- Timestamp:
- 02/07/2023 05:08:26 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r54739 r55276 493 493 <form action="<?php echo esc_url( network_admin_url( 'users.php' ) ); ?>" method="get"> 494 494 <p> 495 <label class="screen-reader-text" for="search-users"><?php _e( 'Search Users' ); ?></label> 495 <label class="screen-reader-text" for="search-users"> 496 <?php 497 /* translators: Hidden accessibility text. */ 498 _e( 'Search Users' ); 499 ?> 500 </label> 496 501 <input type="search" name="s" value="" size="30" autocomplete="off" id="search-users" /> 497 502 <?php submit_button( __( 'Search Users' ), '', false, false, array( 'id' => 'submit_users' ) ); ?> … … 501 506 <form action="<?php echo esc_url( network_admin_url( 'sites.php' ) ); ?>" method="get"> 502 507 <p> 503 <label class="screen-reader-text" for="search-sites"><?php _e( 'Search Sites' ); ?></label> 508 <label class="screen-reader-text" for="search-sites"> 509 <?php 510 /* translators: Hidden accessibility text. */ 511 _e( 'Search Sites' ); 512 ?> 513 </label> 504 514 <input type="search" name="s" value="" size="30" autocomplete="off" id="search-sites" /> 505 515 <?php submit_button( __( 'Search Sites' ), '', false, false, array( 'id' => 'submit_sites' ) ); ?> … … 1097 1107 1098 1108 if ( current_user_can( 'edit_posts' ) ) { 1099 echo '<h3 class="screen-reader-text">' . __( 'View more comments' ) . '</h3>'; 1109 echo '<h3 class="screen-reader-text">' . 1110 /* translators: Hidden accessibility text. */ 1111 __( 'View more comments' ) . 1112 '</h3>'; 1100 1113 _get_list_table( 'WP_Comments_List_Table' )->views(); 1101 1114 } … … 1288 1301 'https://make.wordpress.org/community/meetups-landing-page', 1289 1302 __( 'Meetups' ), 1290 /* translators: Accessibility text. */1303 /* translators: Hidden accessibility text. */ 1291 1304 __( '(opens in a new tab)' ) 1292 1305 ); … … 1300 1313 'https://central.wordcamp.org/schedule/', 1301 1314 __( 'WordCamps' ), 1302 /* translators: Accessibility text. */1315 /* translators: Hidden accessibility text. */ 1303 1316 __( '(opens in a new tab)' ) 1304 1317 ); … … 1313 1326 esc_url( _x( 'https://wordpress.org/news/', 'Events and News dashboard widget' ) ), 1314 1327 __( 'News' ), 1315 /* translators: Accessibility text. */1328 /* translators: Hidden accessibility text. */ 1316 1329 __( '(opens in a new tab)' ) 1317 1330 ); … … 1638 1651 esc_url( admin_url( 'upload.php' ) ), 1639 1652 $text, 1653 /* translators: Hidden accessibility text. */ 1640 1654 __( 'Manage Uploads' ) 1641 1655 ); … … 1653 1667 esc_url( admin_url( 'upload.php' ) ), 1654 1668 $text, 1669 /* translators: Hidden accessibility text. */ 1655 1670 __( 'Manage Uploads' ) 1656 1671 ); … … 1883 1898 esc_url( wp_get_update_php_url() ), 1884 1899 __( 'Learn more about updating PHP' ), 1885 /* translators: Accessibility text. */1900 /* translators: Hidden accessibility text. */ 1886 1901 __( '(opens in a new tab)' ) 1887 1902 );
Note: See TracChangeset
for help on using the changeset viewer.