Home Forums WoodMart support forum Translation question: Password strength meter

Translation question: Password strength meter

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #316555

    axxo
    Participant

    Hi there,

    We’re using LocoTranslate for our multi-lingual page.

    We would like to translate the text from the password strength meter but couldn’t find those keys in LocoTranslate: https://www.screencast.com/t/qhXTPM8XK96U

    Do you know where to find these keys please?

    Many thanks
    -a

    #316820

    Luke Nielsen
    Keymaster

    Hello,

    Unfortunately, WooCommerce plugin can’t translate the password strength meter, so I might suggest adding the translation to the functions.php file in your child theme.

    if ( ! function_exists( 'wd_translate_password_messages' ) ) {
    
    	function wd_translate_password_messages() {
    		wp_localize_script(
    			'wc-password-strength-meter',
    			'pwsL10n',
    			array(
    				'short'    => 'Too short',
    				'bad'      => 'Too bad',
    				'good'     => 'Better but not enough',
    				'strong'   => 'Better',
    				'mismatch' => 'Your passwords do not match, please re-enter them.',
    			)
    		);
    	}
    
        add_action( 'wp_enqueue_scripts', 'wd_translate_password_messages', 9999 );
    }

    Kind Regards

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