This commit is contained in:
jym503558564
2020-05-22 15:12:39 +08:00
5 changed files with 24 additions and 16 deletions

View File

@@ -462,7 +462,9 @@
"terminate": "终断",
"test": "测试",
"type": "类型",
"user": "用户"
"user": "用户",
"createReplayStorage": "创建录像存储",
"createCommandStorage": "创建命令存储"
},
"setting": {
"Basic": "基本设置",

View File

@@ -50,7 +50,7 @@
"Type": "",
"Database": "",
"Comment": "",
"Action": "",
"Action": "Action",
"RemoteType": "",
"Asset": "",
"SetMFA": "",
@@ -107,7 +107,7 @@
"LoginRequiredMsg": ""
},
"common": {
"Action": "",
"Action": "Action",
"Actions": "Actions",
"Activate": "Activate",
"Active": "",
@@ -143,7 +143,7 @@
"Update success": "",
"Username": "",
"Validity": "Validity",
"action": "",
"action": "Action",
"actions": {
"Create": "",
"cancel": ""
@@ -180,7 +180,7 @@
},
"rows": "",
"table": {
"Actions": ""
"Actions": "Action"
},
"tree": {
"Empty": "Empty",
@@ -344,18 +344,18 @@
"WebFTP": ""
},
"sessions": {
"StorageConfiguration": "",
"StorageConfiguration": "Storage configuration",
"accountKey": "Account key",
"accountName": "Account name",
"active": "",
"alive": "",
"active": "active",
"alive": "alive",
"asset": "Asset",
"bucket": "Bucket",
"command": "Command",
"commandStorage": "Command storage",
"comment": "Comment:",
"containerName": "Container name",
"date": "",
"date": "Datetime",
"dateCreated": "Date created:",
"dateEnd": "Date end",
"dateStart": "Date start",
@@ -369,7 +369,7 @@
"goto": "Goto",
"hosts": "Hosts",
"httpPort": "Http port:",
"id": "",
"id": "ID",
"index": "Index",
"info": "",
"join": "join",
@@ -377,7 +377,7 @@
"name": "Name:",
"protocol": "Protocol",
"quickModify": "Quick Modify",
"region": "",
"region": "Region",
"remoteAddr": "Remote addr",
"replay": "replay",
"replaySession": "Replay session:",
@@ -392,7 +392,9 @@
"terminate": "Terminate",
"test": "Test",
"type": "Type",
"user": "Use"
"user": "Use",
"createReplayStorage": "Create replay storage",
"createCommandStorage": "Create command storage"
},
"setting": {
"Basic": "Basic setting",

View File

@@ -75,7 +75,9 @@ export default {
label: this.$t('sessions.go')
},
callbacks: {
click: this.openReplaySession(this.sessionData.id)
click: function() {
this.openReplaySession(this.sessionData.id)
}
}
},
@@ -86,7 +88,9 @@ export default {
label: this.$t('sessions.download')
},
callbacks: {
click: this.openReplayDownload(this.sessionData.id)
click: function() {
this.openReplayDownload(this.sessionData.id)
}
}
}
]

View File

@@ -33,7 +33,7 @@ export default {
callback: this.createEs.bind(this)
}
],
moreActionsTitle: '创建'
moreActionsTitle: this.$t('sessions.createCommandStorage')
},
commandTableConfig: {
title: 'command',

View File

@@ -18,7 +18,7 @@ export default {
hasBulkDelete: false,
hasBulkUpdate: false,
hasCreate: false,
moreActionsTitle: '创建',
moreActionsTitle: this.$t('sessions.createReplayStorage'),
extraMoreActions: [
{
name: 'S3',