perf: 继续优化名称 (#842)

* perf: 修改命令存储创建

* perf: 继续优化名称

xxx

Co-authored-by: ibuler <ibuler@qq.com>
This commit is contained in:
fit2bot
2021-06-10 19:18:32 +08:00
committed by GitHub
parent ee53941fb0
commit ca8307338f
3 changed files with 14 additions and 8 deletions

View File

@@ -200,13 +200,14 @@
"HostProtocol": "主机协议",
"DatabaseProtocol": "数据库协议",
"OtherProtocol": "其它协议"
},
"audits": {
"Hosts": "主机",
"RunUser": "运行用户",
"User": "用户",
"View": "查看"
"Username": "用户名",
"View": "查看",
"SystemUserName": "系统用户名"
},
"auth": {
"LoginRequiredMsg": "账号已退出,请重新登录",
@@ -303,6 +304,7 @@
"View": "查看",
"Yes": "是",
"action": "动作",
"User": "用户",
"activateSelected": "激活所选",
"bulkDeleteErrorMsg": "批量删除失败: ",
"bulkDeleteSuccessMsg": "批量删除成功",
@@ -931,6 +933,7 @@
"UpdateNodeAssetHardwareInfo": "更新节点资产硬件信息"
},
"users": {
"UserName": "姓名",
"Account": "账户",
"Authentication": "认证",
"Comment": "备注",

View File

@@ -198,12 +198,14 @@
"ipDomain": "IP(Domain)",
"HostProtocol": "Host Protocol",
"DatabaseProtocol": "Database Protocol",
"Other Protocol": "Database Protocol"
"OtherProtocol": "Other Protocol"
},
"audits": {
"Hosts": "Host",
"RunUser": "Run user",
"User": "User",
"Username": "Username",
"SystemUserName": "System username",
"View": "View"
},
"auth": {
@@ -712,8 +714,8 @@
"common": "common"
},
"Monitor": "Monitor",
"sessionMonitor": "Session Monitor",
"XRDPNotSupport": "RDP Client session not support now",
"sessionMonitor": "Session Monitor",
"TerminateTaskSendSuccessMsg": "Terminate task has been send, Please check later",
"helpText": {
"esUrl": "Tip: If you have multiple hosts, use comma (,) to split (eg: http://www.jumpserver.a.com,http://www.jumpserver.b.com)",
@@ -927,6 +929,7 @@
"UpdateNodeAssetHardwareInfo": "Update node asset hardware information"
},
"users": {
"UserName": "Name",
"Account": "Account",
"Existing":"Existing",
"Authentication": "Account",

View File

@@ -99,12 +99,12 @@ export default {
searchConfig: {
options: [
{
label: this.$t('audits.User'),
value: 'user__name'
label: this.$t('audits.Username'),
value: 'user__username'
},
{
label: this.$t('audits.RunUser'),
value: 'run_as__name'
label: this.$t('audits.SystemUserName'),
value: 'run_as__username'
}
]
},