mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-19 21:15:23 +00:00
Manual L10n JS strings in install.php. Remove stray line, see #13134
git-svn-id: http://svn.automattic.com/wordpress/trunk@13135 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
470f62dd8c
commit
b8a6d8add5
@ -220,11 +220,11 @@ switch($step) {
|
|||||||
/* <![CDATA[ */
|
/* <![CDATA[ */
|
||||||
try{convertEntities(commonL10n);}catch(e){};
|
try{convertEntities(commonL10n);}catch(e){};
|
||||||
var pwsL10n = {
|
var pwsL10n = {
|
||||||
empty: "Strength indicator",
|
empty: "<?php echo esc_js( __( 'Strength indicator' ) ); ?>",
|
||||||
short: "Very weak",
|
short: "<?php echo esc_js( __( 'Very weak' ) ); ?>",
|
||||||
bad: "Weak",
|
bad: "<?php echo esc_js( __( 'Weak' ) ); ?>",
|
||||||
good: "Medium",
|
good: "<?php echo esc_js( __( 'Medium' ) ); ?>",
|
||||||
strong: "Strong"
|
strong: "<?php echo esc_js( __( 'Strong' ) ); ?>"
|
||||||
};
|
};
|
||||||
try{convertEntities(pwsL10n);}catch(e){};
|
try{convertEntities(pwsL10n);}catch(e){};
|
||||||
/* ]]> */
|
/* ]]> */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user