Context for the medium password strength string to disabiguate it. Fixes #14431 for 3.0.1 props demetris

git-svn-id: http://svn.automattic.com/wordpress/branches/3.0@15476 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2010-07-29 20:44:41 +00:00
parent 04be3b707b
commit a5285cccfe

View File

@ -253,7 +253,7 @@ var pwsL10n = {
empty: "<?php echo esc_js( __( 'Strength indicator' ) ); ?>",
short: "<?php echo esc_js( __( 'Very weak' ) ); ?>",
bad: "<?php echo esc_js( __( 'Weak' ) ); ?>",
good: "<?php echo esc_js( __( 'Medium' ) ); ?>",
good: "<?php echo esc_js( _x( 'Medium', 'password strength' ) ); ?>",
strong: "<?php echo esc_js( __( 'Strong' ) ); ?>",
mismatch: "<?php echo esc_js( __( 'Mismatch' ) ); ?>"
};