Replace 'All' with 'All sources' in dropdown

This commit is contained in:
Jon Surrell 2017-01-05 16:23:03 +01:00
parent 14e5bdcf91
commit e6bcc1aeb6
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ class WC_Admin_Log_Table_List extends WP_List_Table {
?>
<label for="filter-by-source" class="screen-reader-text"><?php _e( 'Filter by source', 'woocommerce' ); ?></label>
<select name="source" id="filter-by-source">
<option<?php selected( $selected_source, '' ); ?> value=""><?php _e( 'All', 'woocommerce' ); ?></option>
<option<?php selected( $selected_source, '' ); ?> value=""><?php _e( 'All sources', 'woocommerce' ); ?></option>
<?php foreach ( $sources as $s ) {
printf( '<option%1$s value="%2$s">%3$s</option>',
selected( $selected_source, $s, false ),