Skip to content

Commit

Permalink
Add missing text-domains.
Browse files Browse the repository at this point in the history
  • Loading branch information
JJJ committed Apr 7, 2017
1 parent a942f07 commit 994f2aa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ protected function bulk_actions( $which = '' ) {
return;
}

echo "<label for='bulk-action-selector-" . esc_attr( $which ) . "' class='screen-reader-text'>" . __( 'Select bulk action' ) . "</label>";
echo "<label for='bulk-action-selector-" . esc_attr( $which ) . "' class='screen-reader-text'>" . __( 'Select bulk action', 'wp-site-aliases' ) . "</label>";
echo "<select name='bulk_action$two' id='bulk-action-selector-" . esc_attr( $which ) . "'>\n";
echo "<option value='-1' selected='selected'>" . __( 'Bulk Actions' ) . "</option>\n";
echo "<option value='-1' selected='selected'>" . __( 'Bulk Actions', 'wp-site-aliases' ) . "</option>\n";

foreach ( $this->_actions as $name => $title ) {
$class = ( 'edit' === $name )
Expand All @@ -161,7 +161,7 @@ protected function bulk_actions( $which = '' ) {
}

echo "</select>\n";
submit_button( __( 'Apply' ), 'action', false, false, array( 'id' => "doaction{$two}" ) );
submit_button( __( 'Apply', 'wp-site-aliases' ), 'action', false, false, array( 'id' => "doaction{$two}" ) );
echo "\n";
}

Expand Down

0 comments on commit 994f2aa

Please sign in to comment.