diff --git a/module/user/lang/en.php b/module/user/lang/en.php index 16b85fc75c..1b392424b6 100644 --- a/module/user/lang/en.php +++ b/module/user/lang/en.php @@ -51,6 +51,7 @@ $lang->user->loginFailed = "Login failed, please check your account and password $lang->user->lockWarning = "You only have %s times to try."; $lang->user->loginLocked = "You try the password too many times, please contact the administrator or try again after %s minutes."; +$lang->user->genderList = new stdclass(); $lang->user->genderList->m = 'Male'; $lang->user->genderList->f = 'Female'; @@ -87,10 +88,12 @@ $lang->user->ip = 'Last IP'; $lang->user->last = 'Last login'; $lang->user->status = 'Status'; +$lang->user->placeholder = new stdclass(); $lang->user->placeholder->account = 'Letters/underline/numbers, three above'; $lang->user->placeholder->password1 = 'Six above'; $lang->user->placeholder->join = 'The date the employee join the company'; +$lang->user->error = new stdclass(); $lang->user->error->account = "ID %s,account must be three letters at least"; $lang->user->error->accountDupl = "ID %s,this account has been exist"; $lang->user->error->realname = "ID %s,please input realname"; diff --git a/module/user/lang/zh-cn.php b/module/user/lang/zh-cn.php index e539a3a74f..8fbea7ea72 100644 --- a/module/user/lang/zh-cn.php +++ b/module/user/lang/zh-cn.php @@ -51,6 +51,7 @@ $lang->user->loginFailed = "登录失败,请检查您的用户名或密码是 $lang->user->lockWarning = "您还有%s次尝试机会。"; $lang->user->loginLocked = "密码尝试次数太多,请联系管理员解锁,或%s分钟后重试。"; +$lang->user->genderList = new stdclass(); $lang->user->genderList->m = '男'; $lang->user->genderList->f = '女'; @@ -87,10 +88,12 @@ $lang->user->ip = '最后IP'; $lang->user->last = '最后登录'; $lang->user->status = '状态'; +$lang->user->placeholder = new stdclass(); $lang->user->placeholder->account = '英文、数字和下划线的组合,三位以上'; $lang->user->placeholder->password1 = '六位以上'; $lang->user->placeholder->join = '入职日期'; +$lang->user->error = new stdclass(); $lang->user->error->account = "ID %s,用户名必须三位以上"; $lang->user->error->accountDupl = "ID %s,该用户名已经存在"; $lang->user->error->realname = "ID %s,必须填写真实姓名";