• Resolved dago

    (@debesyla)


    Hey, there seems to be a missing translation line that isn’t able to be translated trough Loco translate. I guess it’s missing it’s textdomain 🙂

    The line is:

    Your account with XXXX is using a temporary password. We emailed you a link to change your password.

    Where “XXXX” is site name.

    This WooCommerce notice appears in the default WooCommerce user account panel, after user registration using social networks (Google in this specific case).

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Robert

    (@robertnextendweb)

    Hi @debesyla

    The notice, including the text is from WooCommerce, so not from us.

    When Nextend Social Login registers a new account, by default, we generate a random password with the wp_generate_password() method of WordPress:

    and we also set the “default_password_nag” user option like this:

    update_user_option($user_id, 'default_password_nag', true, true);

    to let WordPress know that the password was an automatically generated password – so it wasn’t one that the user had set.
    This is why WooCommerce gives that warning, as they might display a warning when they see this user option being set.

    So if you are looking to translate the text, you need to look for it in WooCommerce. It should be available under the “woocommerce” text domain.

    Thread Starter dago

    (@debesyla)

    Oh! Thank you!!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Missing translation line’ is closed to new replies.