• Resolved CharlyG

    (@charlygaround)


    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)
  • Plugin Author Clayton R

    (@mrclayton)

    Hi @charlygaround

    Thank you for contacting us and pointing out that the text domain is missing for these two strings. I’ve made a note to include the text domain for these two strings in the next release.

    Kind Regards

Viewing 1 replies (of 1 total)

The topic ‘Empty text domain in strings & translation error’ is closed to new replies.