Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two strings in pmpro-gift-levels.php can now be localized #206

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions includes/pmpro-gift-levels.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ function pmprowoo_gift_levels_add_recipient_fields() {
<td class="label"><label for="gift-recipient-email">'. esc_html__( 'Send Email to Recipient?', 'pmpro-woocommerce' ) . '</label></td>
<td class="value"><select id="pa_send-email" class="" name="gift-send-email">
<option selected="selected" value="">' . esc_html__( 'Choose an option', 'pmpro-woocommerce' ) . '</option>
<option class="attached enabled" value="1">' . esc_html( 'YES', 'pmpro-woocommerce' ) . '</option>
<option class="attached enabled" value="0">' . esc_html( 'NO', 'pmpro-woocommerce' ) . '</option>
<option class="attached enabled" value="1">' . esc_html__( 'YES', 'pmpro-woocommerce' ) . '</option>
<option class="attached enabled" value="0">' . esc_html__( 'NO', 'pmpro-woocommerce' ) . '</option>
</select></td>
</tr>
<tr id="recipient-name" style="display:none;">
Expand Down