外掛作者:VSE
外掛描述:This MOD will show users how strong (or weak) their password is as they type it into the password field. The password field will display a color code (red for weak to green for strong) as well as a text indicator for 'Very Weak', 'Weak', 'Good', 'Strong' and 'Very Strong' passwords. This feature is active on new user registration, and in the UCP and ACP areas where you can change existing passwords to new passwords.
Password strength is graded on finding the following criteria in a password:
1) Contains mixed case letters
2) Contains numbers
3) Contains special characters
4) Password exceeds 12 characters
外掛版本:1.0.1
外掛下載:password_strength_1.0.1.zip
資料來源:Show Password Strength
打開:language/zh_cmn_hant/ucp.php
中文化分享:
找到
代碼: 選擇全部
?>代碼: 選擇全部
// Begin : Show Password Strength
$lang = array_merge($lang, array(
'PS_VERY_WEAK' => '非常弱的',
'PS_WEAK' => '弱的',
'PS_GOOD' => '好的',
'PS_STRONG' => '強的',
'PS_VERY_STRONG' => '非常強的',
));
// End : Show Password Strength