* Modify the prompt information when the user account is invalid

This commit is contained in:
wumo
2018-03-16 15:35:13 +08:00
parent eb45ec5a31
commit e7eedb4129
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -139,7 +139,7 @@ $lang->user->placeholder->passwordStrength[1] = 'Letters and Numbers, at least 6
$lang->user->placeholder->passwordStrength[2] = 'Letters, Numbers and special characters, at lease 10 characters';
$lang->user->error = new stdclass();
$lang->user->error->account = "ID %smust be contain letters, underline, and numbers,at lease three characters";
$lang->user->error->account = "ID %saccount must contain letters, underline, or numbers,at lease three characters";
$lang->user->error->accountDupl = "ID %saccount has been used.";
$lang->user->error->realname = "ID %smust be real name";
$lang->user->error->password = "ID %spassword must be 6 characters at least.";
+7 -7
View File
@@ -139,13 +139,13 @@ $lang->user->placeholder->passwordStrength[1] = '6位以上,包含大小写字
$lang->user->placeholder->passwordStrength[2] = '10位以上,包含大小写字母,数字,特殊字符。';
$lang->user->error = new stdclass();
$lang->user->error->account = "ID %s英文、数字下划线的组合,三位以上";
$lang->user->error->accountDupl = "ID %s,该用户名已经存在";
$lang->user->error->realname = "ID %s,必须填写真实姓名";
$lang->user->error->password = "ID %s密码必须六位以上";
$lang->user->error->mail = "ID %s,请填写正确的邮箱地址";
$lang->user->error->role = "ID %s职位不能为空";
$lang->user->error->reserved = "ID %s,该用户名系统预留";
$lang->user->error->account = "ID %s】的用户名应该为:三位以上的英文、数字下划线的组合";
$lang->user->error->accountDupl = "ID %s】的用户名已经存在";
$lang->user->error->realname = "ID %s】的真实姓名必须填写";
$lang->user->error->password = "ID %s】的密码必须六位以上";
$lang->user->error->mail = "ID %s的邮箱地址不正确";
$lang->user->error->role = "ID %s】的职位不能为空";
$lang->user->error->reserved = "ID %s】的用户名已被系统预留";
$lang->user->error->verifyPassword = "安全验证密码错误,请输入你的登录密码";
$lang->user->error->originalPassword = "原密码不正确";