fix: languages config, update-password

This commit is contained in:
jialin
2024-06-25 11:50:55 +08:00
parent bd6b3dcbe3
commit 9edce7116e
21 changed files with 435 additions and 128 deletions
+22
View File
@@ -0,0 +1,22 @@
export default {
'users.title': '用户',
'users.button.create': '新建用户',
'users.form.edit': '编辑用户',
'users.form.create': '新建用户',
'users.table.username': '用户名',
'users.table.role': '角色',
'users.form.fullname': '全名',
'users.table.user': '用户',
'users.form.admin': '管理员',
'users.form.user': '普通用户',
'users.form.newpassword': '新密码',
'users.form.currentpassword': '当前密码',
'users.form.updatepassword': '修改密码',
'users.form.rule.password':
'包含大小写字母、数字和特殊字符,6至12个字符,不允许有空格',
'users.password.uppcase': '至少包含一个大写字母',
'users.password.lowercase': '至少包含一个小写字母',
'users.password.number': '至少包含一个数字',
'users.password.special': '至少包含一个特殊字符',
'users.password.length': '长度在6至12个字符之间'
};