diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup.jelly b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup.jelly index 6312f5b8b4db9b9edeface93eb013a5f356f0bd3..f588306700bee5fbaf2bbe15672e5ad773f723f8 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup.jelly +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/signup.jelly @@ -188,15 +188,15 @@ THE SOFTWARE. const passwordStrength = function(score) { if (score > 80) { - return "Strong"; + return "${%Strong}"; } if (score > 60) { - return "Moderate"; + return "${%Moderate}"; } if (score >= 30) { - return "Weak"; + return "${%Weak}"; } - return "Poor"; + return "${%Poor}"; }; const passwordStrengthColor = function(score) { @@ -262,7 +262,7 @@ THE SOFTWARE. name="password1" id="password1" /> -
Strength:  
+
${%Strength}: