Empty text domain in strings & translation error
-
IN /woo-stripe-payment/includes/admin/views/html-user-profile.php, lines 9 & 10 this code:
<p><?php esc_html_e( 'If you change a customer ID, the customer\'s payment methods will be imported from your Stripe account.' ); ?></p>
<p><?php esc_html_e( 'If you remove a customer ID, the customer\'s payment methods will be removed from the WC payment methods table.' ); ?></p>Text domain required for translations.
Solution:<p><?php esc_html_e( 'If you change a customer ID, the customer\'s payment methods will be imported from your Stripe account.', 'woo-stripe-payment' ); ?></p>
<p><?php esc_html_e( 'If you remove a customer ID, the customer\'s payment methods will be removed from the WC payment methods table.', 'woo-stripe-payment' ); ?></p>The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Empty text domain in strings & translation error’ is closed to new replies.