Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
5f96f8c2
Commit
5f96f8c2
authored
Oct 10, 2019
by
BaiJiangJie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 优化节点删除 API,添加删除失败原因
parent
7e7583e4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
69 additions
and
49 deletions
+69
-49
node.py
apps/assets/api/node.py
+11
-1
node.py
apps/assets/models/node.py
+6
-1
django.mo
apps/locale/zh/LC_MESSAGES/django.mo
+0
-0
django.po
apps/locale/zh/LC_MESSAGES/django.po
+52
-47
No files found.
apps/assets/api/node.py
View file @
5f96f8c2
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
from
rest_framework
import
generics
from
rest_framework
import
generics
,
status
from
rest_framework.serializers
import
ValidationError
from
rest_framework.serializers
import
ValidationError
from
rest_framework.views
import
APIView
from
rest_framework.views
import
APIView
from
rest_framework.response
import
Response
from
rest_framework.response
import
Response
...
@@ -59,6 +59,16 @@ class NodeViewSet(OrgModelViewSet):
...
@@ -59,6 +59,16 @@ class NodeViewSet(OrgModelViewSet):
raise
ValidationError
({
"error"
:
msg
})
raise
ValidationError
({
"error"
:
msg
})
return
super
()
.
perform_update
(
serializer
)
return
super
()
.
perform_update
(
serializer
)
def
destroy
(
self
,
request
,
*
args
,
**
kwargs
):
node
=
self
.
get_object
()
if
node
.
has_children_or_contains_assets
():
msg
=
_
(
"Deletion failed "
"and the node contains children or assets"
)
return
Response
(
data
=
{
'msg'
:
msg
},
status
=
status
.
HTTP_500_INTERNAL_SERVER_ERROR
)
return
super
()
.
destroy
(
request
,
*
args
,
**
kwargs
)
class
NodeListAsTreeApi
(
generics
.
ListAPIView
):
class
NodeListAsTreeApi
(
generics
.
ListAPIView
):
"""
"""
...
...
apps/assets/models/node.py
View file @
5f96f8c2
...
@@ -470,8 +470,13 @@ class Node(OrgModelMixin, SomeNodesMixin, TreeMixin, FamilyMixin, FullValueMixin
...
@@ -470,8 +470,13 @@ class Node(OrgModelMixin, SomeNodesMixin, TreeMixin, FamilyMixin, FullValueMixin
tree_node
=
TreeNode
(
**
data
)
tree_node
=
TreeNode
(
**
data
)
return
tree_node
return
tree_node
def
delete
(
self
,
using
=
None
,
keep_parents
=
False
):
def
has_children_or_contains_assets
(
self
):
if
self
.
children
or
self
.
get_assets
():
if
self
.
children
or
self
.
get_assets
():
return
True
return
False
def
delete
(
self
,
using
=
None
,
keep_parents
=
False
):
if
self
.
has_children_or_contains_assets
():
return
return
return
super
()
.
delete
(
using
=
using
,
keep_parents
=
keep_parents
)
return
super
()
.
delete
(
using
=
using
,
keep_parents
=
keep_parents
)
...
...
apps/locale/zh/LC_MESSAGES/django.mo
View file @
5f96f8c2
No preview for this file type
apps/locale/zh/LC_MESSAGES/django.po
View file @
5f96f8c2
...
@@ -8,7 +8,7 @@ msgid ""
...
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Jumpserver 0.3.3\n"
"Project-Id-Version: Jumpserver 0.3.3\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-10-
08 17:09
+0800\n"
"POT-Creation-Date: 2019-10-
10 16:15
+0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: ibuler <ibuler@qq.com>\n"
"Last-Translator: ibuler <ibuler@qq.com>\n"
"Language-Team: Jumpserver team<ibuler@qq.com>\n"
"Language-Team: Jumpserver team<ibuler@qq.com>\n"
...
@@ -114,7 +114,7 @@ msgstr "资产"
...
@@ -114,7 +114,7 @@ msgstr "资产"
#: applications/templates/applications/user_remote_app_list.html:16
#: applications/templates/applications/user_remote_app_list.html:16
#: assets/forms/asset.py:24 assets/forms/domain.py:73 assets/forms/user.py:74
#: assets/forms/asset.py:24 assets/forms/domain.py:73 assets/forms/user.py:74
#: assets/forms/user.py:94 assets/models/base.py:28 assets/models/cluster.py:18
#: assets/forms/user.py:94 assets/models/base.py:28 assets/models/cluster.py:18
#: assets/models/cmd_filter.py:2
0
assets/models/domain.py:20
#: assets/models/cmd_filter.py:2
1
assets/models/domain.py:20
#: assets/models/group.py:20 assets/models/label.py:18
#: assets/models/group.py:20 assets/models/label.py:18
#: assets/templates/assets/admin_user_detail.html:56
#: assets/templates/assets/admin_user_detail.html:56
#: assets/templates/assets/admin_user_list.html:44
#: assets/templates/assets/admin_user_list.html:44
...
@@ -186,8 +186,8 @@ msgstr "参数"
...
@@ -186,8 +186,8 @@ msgstr "参数"
#: applications/models/remote_app.py:39
#: applications/models/remote_app.py:39
#: applications/templates/applications/remote_app_detail.html:73
#: applications/templates/applications/remote_app_detail.html:73
#: assets/models/asset.py:174 assets/models/base.py:36
#: assets/models/asset.py:174 assets/models/base.py:36
#: assets/models/cluster.py:28 assets/models/cmd_filter.py:2
5
#: assets/models/cluster.py:28 assets/models/cmd_filter.py:2
6
#: assets/models/cmd_filter.py:5
8
assets/models/group.py:21
#: assets/models/cmd_filter.py:5
9
assets/models/group.py:21
#: assets/templates/assets/admin_user_detail.html:68
#: assets/templates/assets/admin_user_detail.html:68
#: assets/templates/assets/asset_detail.html:124
#: assets/templates/assets/asset_detail.html:124
#: assets/templates/assets/cmd_filter_detail.html:77
#: assets/templates/assets/cmd_filter_detail.html:77
...
@@ -238,8 +238,8 @@ msgstr "创建日期"
...
@@ -238,8 +238,8 @@ msgstr "创建日期"
#: applications/templates/applications/remote_app_list.html:23
#: applications/templates/applications/remote_app_list.html:23
#: applications/templates/applications/user_remote_app_list.html:19
#: applications/templates/applications/user_remote_app_list.html:19
#: assets/models/asset.py:176 assets/models/base.py:33
#: assets/models/asset.py:176 assets/models/base.py:33
#: assets/models/cluster.py:29 assets/models/cmd_filter.py:2
2
#: assets/models/cluster.py:29 assets/models/cmd_filter.py:2
3
#: assets/models/cmd_filter.py:5
5
assets/models/domain.py:21
#: assets/models/cmd_filter.py:5
6
assets/models/domain.py:21
#: assets/models/domain.py:53 assets/models/group.py:23
#: assets/models/domain.py:53 assets/models/group.py:23
#: assets/models/label.py:23 assets/templates/assets/admin_user_detail.html:72
#: assets/models/label.py:23 assets/templates/assets/admin_user_detail.html:72
#: assets/templates/assets/admin_user_list.html:50
#: assets/templates/assets/admin_user_list.html:50
...
@@ -498,7 +498,7 @@ msgstr "创建远程应用"
...
@@ -498,7 +498,7 @@ msgstr "创建远程应用"
#: applications/templates/applications/remote_app_list.html:24
#: applications/templates/applications/remote_app_list.html:24
#: applications/templates/applications/user_remote_app_list.html:20
#: applications/templates/applications/user_remote_app_list.html:20
#: assets/models/cmd_filter.py:5
4
#: assets/models/cmd_filter.py:5
5
#: assets/templates/assets/_asset_user_list.html:25
#: assets/templates/assets/_asset_user_list.html:25
#: assets/templates/assets/admin_user_list.html:51
#: assets/templates/assets/admin_user_list.html:51
#: assets/templates/assets/asset_list.html:100
#: assets/templates/assets/asset_list.html:100
...
@@ -568,11 +568,15 @@ msgstr "我的远程应用"
...
@@ -568,11 +568,15 @@ msgstr "我的远程应用"
msgid "You can't update the root node name"
msgid "You can't update the root node name"
msgstr "不能修改根节点名称"
msgstr "不能修改根节点名称"
#: assets/api/node.py:266
#: assets/api/node.py:65
msgid "Deletion failed and the node contains children or assets"
msgstr "删除失败,节点包含子节点或资产"
#: assets/api/node.py:276
msgid "Update node asset hardware information: {}"
msgid "Update node asset hardware information: {}"
msgstr "更新节点资产硬件信息: {}"
msgstr "更新节点资产硬件信息: {}"
#: assets/api/node.py:2
8
0
#: assets/api/node.py:2
9
0
msgid "Test if the assets under the node are connectable: {}"
msgid "Test if the assets under the node are connectable: {}"
msgstr "测试节点下资产是否可连接: {}"
msgstr "测试节点下资产是否可连接: {}"
...
@@ -745,7 +749,7 @@ msgstr "不合法的密钥,仅支持RSA/DSA格式的密钥"
...
@@ -745,7 +749,7 @@ msgstr "不合法的密钥,仅支持RSA/DSA格式的密钥"
msgid "Password and private key file must be input one"
msgid "Password and private key file must be input one"
msgstr "密码和私钥, 必须输入一个"
msgstr "密码和私钥, 必须输入一个"
#: assets/forms/user.py:97 assets/models/cmd_filter.py:3
1
#: assets/forms/user.py:97 assets/models/cmd_filter.py:3
2
#: assets/models/user.py:118 assets/templates/assets/_system_user.html:66
#: assets/models/user.py:118 assets/templates/assets/_system_user.html:66
#: assets/templates/assets/system_user_detail.html:165
#: assets/templates/assets/system_user_detail.html:165
msgid "Command filter"
msgid "Command filter"
...
@@ -828,7 +832,7 @@ msgid "Platform"
...
@@ -828,7 +832,7 @@ msgid "Platform"
msgstr "系统平台"
msgstr "系统平台"
#: assets/models/asset.py:146 assets/models/authbook.py:27
#: assets/models/asset.py:146 assets/models/authbook.py:27
#: assets/models/cmd_filter.py:2
1
assets/models/domain.py:54
#: assets/models/cmd_filter.py:2
2
assets/models/domain.py:54
#: assets/models/label.py:22 assets/templates/assets/asset_detail.html:112
#: assets/models/label.py:22 assets/templates/assets/asset_detail.html:112
msgid "Is active"
msgid "Is active"
msgstr "激活"
msgstr "激活"
...
@@ -994,11 +998,11 @@ msgstr "北京电信"
...
@@ -994,11 +998,11 @@ msgstr "北京电信"
msgid "BGP full netcom"
msgid "BGP full netcom"
msgstr "BGP全网通"
msgstr "BGP全网通"
#: assets/models/cmd_filter.py:3
8
#: assets/models/cmd_filter.py:3
9
msgid "Regex"
msgid "Regex"
msgstr "正则表达式"
msgstr "正则表达式"
#: assets/models/cmd_filter.py:
39
ops/models/command.py:21
#: assets/models/cmd_filter.py:
40
ops/models/command.py:21
#: ops/templates/ops/command_execution_list.html:64 terminal/models.py:163
#: ops/templates/ops/command_execution_list.html:64 terminal/models.py:163
#: terminal/templates/terminal/command_list.html:28
#: terminal/templates/terminal/command_list.html:28
#: terminal/templates/terminal/command_list.html:68
#: terminal/templates/terminal/command_list.html:68
...
@@ -1007,19 +1011,19 @@ msgstr "正则表达式"
...
@@ -1007,19 +1011,19 @@ msgstr "正则表达式"
msgid "Command"
msgid "Command"
msgstr "命令"
msgstr "命令"
#: assets/models/cmd_filter.py:4
4
#: assets/models/cmd_filter.py:4
5
msgid "Deny"
msgid "Deny"
msgstr "拒绝"
msgstr "拒绝"
#: assets/models/cmd_filter.py:4
5
#: assets/models/cmd_filter.py:4
6
msgid "Allow"
msgid "Allow"
msgstr "允许"
msgstr "允许"
#: assets/models/cmd_filter.py:
49
#: assets/models/cmd_filter.py:
50
msgid "Filter"
msgid "Filter"
msgstr "过滤器"
msgstr "过滤器"
#: assets/models/cmd_filter.py:5
0
#: assets/models/cmd_filter.py:5
1
#: assets/templates/assets/cmd_filter_rule_list.html:58
#: assets/templates/assets/cmd_filter_rule_list.html:58
#: audits/templates/audits/login_log_list.html:58
#: audits/templates/audits/login_log_list.html:58
#: perms/templates/perms/remote_app_permission_remote_app.html:54
#: perms/templates/perms/remote_app_permission_remote_app.html:54
...
@@ -1030,26 +1034,26 @@ msgstr "过滤器"
...
@@ -1030,26 +1034,26 @@ msgstr "过滤器"
msgid "Type"
msgid "Type"
msgstr "类型"
msgstr "类型"
#: assets/models/cmd_filter.py:5
1
assets/models/user.py:112
#: assets/models/cmd_filter.py:5
2
assets/models/user.py:112
#: assets/templates/assets/cmd_filter_rule_list.html:60
#: assets/templates/assets/cmd_filter_rule_list.html:60
msgid "Priority"
msgid "Priority"
msgstr "优先级"
msgstr "优先级"
#: assets/models/cmd_filter.py:5
1
#: assets/models/cmd_filter.py:5
2
msgid "1-100, the higher will be match first"
msgid "1-100, the higher will be match first"
msgstr "优先级可选范围为1-100,1最低优先级,100最高优先级"
msgstr "优先级可选范围为1-100,1最低优先级,100最高优先级"
#: assets/models/cmd_filter.py:5
3
#: assets/models/cmd_filter.py:5
4
#: assets/templates/assets/cmd_filter_rule_list.html:59
#: assets/templates/assets/cmd_filter_rule_list.html:59
#: xpack/plugins/license/models.py:29
#: xpack/plugins/license/models.py:29
msgid "Content"
msgid "Content"
msgstr "内容"
msgstr "内容"
#: assets/models/cmd_filter.py:5
3
#: assets/models/cmd_filter.py:5
4
msgid "One line one command"
msgid "One line one command"
msgstr "每行一个命令"
msgstr "每行一个命令"
#: assets/models/cmd_filter.py:6
4
#: assets/models/cmd_filter.py:6
3
msgid "Command filter rule"
msgid "Command filter rule"
msgstr "命令过滤规则"
msgstr "命令过滤规则"
...
@@ -1208,16 +1212,16 @@ msgstr "系统用户"
...
@@ -1208,16 +1212,16 @@ msgstr "系统用户"
msgid "%(value)s is not an even number"
msgid "%(value)s is not an even number"
msgstr "%(value)s is not an even number"
msgstr "%(value)s is not an even number"
#: assets/models/utils.py:43 assets/tasks/const.py:8
1
#: assets/models/utils.py:43 assets/tasks/const.py:8
4
msgid "Unreachable"
msgid "Unreachable"
msgstr "不可达"
msgstr "不可达"
#: assets/models/utils.py:44 assets/tasks/const.py:8
2
#: assets/models/utils.py:44 assets/tasks/const.py:8
5
#: assets/templates/assets/asset_list.html:99
#: assets/templates/assets/asset_list.html:99
msgid "Reachable"
msgid "Reachable"
msgstr "可连接"
msgstr "可连接"
#: assets/models/utils.py:45 assets/tasks/const.py:8
3
#: assets/models/utils.py:45 assets/tasks/const.py:8
6
#: authentication/utils.py:13 xpack/plugins/license/models.py:78
#: authentication/utils.py:13 xpack/plugins/license/models.py:78
msgid "Unknown"
msgid "Unknown"
msgstr "未知"
msgstr "未知"
...
@@ -1424,6 +1428,7 @@ msgstr "资产列表"
...
@@ -1424,6 +1428,7 @@ msgstr "资产列表"
#: assets/templates/assets/_asset_list_modal.html:33
#: assets/templates/assets/_asset_list_modal.html:33
#: assets/templates/assets/_node_tree.html:40
#: assets/templates/assets/_node_tree.html:40
#: ops/templates/ops/command_execution_create.html:49
#: ops/templates/ops/command_execution_create.html:49
#: ops/templates/ops/command_execution_create.html:143
#: users/templates/users/_granted_assets.html:7
#: users/templates/users/_granted_assets.html:7
#: xpack/plugins/cloud/templates/cloud/sync_instance_task_create_update.html:66
#: xpack/plugins/cloud/templates/cloud/sync_instance_task_create_update.html:66
msgid "Loading"
msgid "Loading"
...
@@ -1639,7 +1644,7 @@ msgstr "选择节点"
...
@@ -1639,7 +1644,7 @@ msgstr "选择节点"
#: assets/templates/assets/system_user_list.html:139
#: assets/templates/assets/system_user_list.html:139
#: authentication/templates/authentication/_mfa_confirm_modal.html:20
#: authentication/templates/authentication/_mfa_confirm_modal.html:20
#: settings/templates/settings/terminal_setting.html:168
#: settings/templates/settings/terminal_setting.html:168
#: templates/_modal.html:23 terminal/templates/terminal/session_detail.html:1
08
#: templates/_modal.html:23 terminal/templates/terminal/session_detail.html:1
12
#: users/templates/users/user_detail.html:394
#: users/templates/users/user_detail.html:394
#: users/templates/users/user_detail.html:420
#: users/templates/users/user_detail.html:420
#: users/templates/users/user_detail.html:443
#: users/templates/users/user_detail.html:443
...
@@ -1720,7 +1725,7 @@ msgstr "资产用户"
...
@@ -1720,7 +1725,7 @@ msgstr "资产用户"
#: assets/templates/assets/asset_asset_user_list.html:47
#: assets/templates/assets/asset_asset_user_list.html:47
#: assets/templates/assets/asset_detail.html:144
#: assets/templates/assets/asset_detail.html:144
#: terminal/templates/terminal/session_detail.html:8
1
#: terminal/templates/terminal/session_detail.html:8
5
#: users/templates/users/user_detail.html:140
#: users/templates/users/user_detail.html:140
#: users/templates/users/user_profile.html:150
#: users/templates/users/user_profile.html:150
#: xpack/plugins/change_auth_plan/templates/change_auth_plan/plan_detail.html:128
#: xpack/plugins/change_auth_plan/templates/change_auth_plan/plan_detail.html:128
...
@@ -2984,38 +2989,38 @@ msgid "Task log"
...
@@ -2984,38 +2989,38 @@ msgid "Task log"
msgstr "任务列表"
msgstr "任务列表"
#: ops/templates/ops/command_execution_create.html:90
#: ops/templates/ops/command_execution_create.html:90
#: terminal/templates/terminal/session_detail.html:9
1
#: terminal/templates/terminal/session_detail.html:9
5
#: terminal/templates/terminal/session_detail.html:10
0
#: terminal/templates/terminal/session_detail.html:10
4
msgid "Go"
msgid "Go"
msgstr ""
msgstr ""
#: ops/templates/ops/command_execution_create.html:21
5
#: ops/templates/ops/command_execution_create.html:21
6
msgid "Selected assets"
msgid "Selected assets"
msgstr "已选择资产"
msgstr "已选择资产"
#: ops/templates/ops/command_execution_create.html:21
8
#: ops/templates/ops/command_execution_create.html:21
9
msgid "In total"
msgid "In total"
msgstr "总共"
msgstr "总共"
#: ops/templates/ops/command_execution_create.html:25
4
#: ops/templates/ops/command_execution_create.html:25
6
msgid ""
msgid ""
"Select the left asset, select the running system user, execute command in "
"Select the left asset, select the running system user, execute command in "
"batch"
"batch"
msgstr "选择左侧资产, 选择运行的系统用户,批量执行命令"
msgstr "选择左侧资产, 选择运行的系统用户,批量执行命令"
#: ops/templates/ops/command_execution_create.html:2
75
#: ops/templates/ops/command_execution_create.html:2
99
msgid "Unselected assets"
msgid "Unselected assets"
msgstr "没有选中资产"
msgstr "没有选中资产"
#: ops/templates/ops/command_execution_create.html:
279
#: ops/templates/ops/command_execution_create.html:
303
msgid "No input command"
msgid "No input command"
msgstr "没有输入命令"
msgstr "没有输入命令"
#: ops/templates/ops/command_execution_create.html:
283
#: ops/templates/ops/command_execution_create.html:
307
msgid "No system user was selected"
msgid "No system user was selected"
msgstr "没有选择系统用户"
msgstr "没有选择系统用户"
#: ops/templates/ops/command_execution_create.html:3
28
#: ops/templates/ops/command_execution_create.html:3
17
msgid "Pending"
msgid "Pending"
msgstr "等待"
msgstr "等待"
...
@@ -3394,21 +3399,21 @@ msgstr "连接LDAP成功"
...
@@ -3394,21 +3399,21 @@ msgstr "连接LDAP成功"
msgid "Match {} s users"
msgid "Match {} s users"
msgstr "匹配 {} 个用户"
msgstr "匹配 {} 个用户"
#: settings/api.py:1
63
#: settings/api.py:1
51
msgid "succeed: {} failed: {} total: {}"
msgid "succeed: {} failed: {} total: {}"
msgstr "成功:{} 失败:{} 总数:{}"
msgstr "成功:{} 失败:{} 总数:{}"
#: settings/api.py:1
85 settings/api.py:221
#: settings/api.py:1
73 settings/api.py:209
msgid ""
msgid ""
"Error: Account invalid (Please make sure the information such as Access key "
"Error: Account invalid (Please make sure the information such as Access key "
"or Secret key is correct)"
"or Secret key is correct)"
msgstr "错误:账户无效 (请确保 Access key 或 Secret key 等信息正确)"
msgstr "错误:账户无效 (请确保 Access key 或 Secret key 等信息正确)"
#: settings/api.py:1
91 settings/api.py:227
#: settings/api.py:1
79 settings/api.py:215
msgid "Create succeed"
msgid "Create succeed"
msgstr "创建成功"
msgstr "创建成功"
#: settings/api.py:
209 settings/api.py:247
#: settings/api.py:
197 settings/api.py:235
#: settings/templates/settings/terminal_setting.html:154
#: settings/templates/settings/terminal_setting.html:154
msgid "Delete succeed"
msgid "Delete succeed"
msgstr "删除成功"
msgstr "删除成功"
...
@@ -3923,11 +3928,11 @@ msgstr "删除失败"
...
@@ -3923,11 +3928,11 @@ msgstr "删除失败"
msgid "Are you sure about deleting it?"
msgid "Are you sure about deleting it?"
msgstr "您确定删除吗?"
msgstr "您确定删除吗?"
#: settings/utils.py:9
1
#: settings/utils.py:9
8
msgid "Search no entry matched in ou {}"
msgid "Search no entry matched in ou {}"
msgstr "在ou:{}中没有匹配条目"
msgstr "在ou:{}中没有匹配条目"
#: settings/utils.py:1
46
#: settings/utils.py:1
72
msgid "The user source is not LDAP"
msgid "The user source is not LDAP"
msgstr "用户来源不是LDAP"
msgstr "用户来源不是LDAP"
...
@@ -4404,7 +4409,7 @@ msgstr "参数"
...
@@ -4404,7 +4409,7 @@ msgstr "参数"
msgid "Export command"
msgid "Export command"
msgstr "导出命令"
msgstr "导出命令"
#: terminal/templates/terminal/command_list.html:
191
#: terminal/templates/terminal/command_list.html:
205
msgid "Goto"
msgid "Goto"
msgstr "转到"
msgstr "转到"
...
@@ -4418,19 +4423,19 @@ msgstr "会话详情"
...
@@ -4418,19 +4423,19 @@ msgstr "会话详情"
msgid "Command list"
msgid "Command list"
msgstr "命令记录列表"
msgstr "命令记录列表"
#: terminal/templates/terminal/session_detail.html:6
3
#: terminal/templates/terminal/session_detail.html:6
7
msgid "There is no command about this session"
msgid "There is no command about this session"
msgstr "该会话没有命令记录"
msgstr "该会话没有命令记录"
#: terminal/templates/terminal/session_detail.html:
88
#: terminal/templates/terminal/session_detail.html:
92
msgid "Replay session"
msgid "Replay session"
msgstr "回放会话"
msgstr "回放会话"
#: terminal/templates/terminal/session_detail.html:
97
#: terminal/templates/terminal/session_detail.html:
101
msgid "Monitor session"
msgid "Monitor session"
msgstr "监控"
msgstr "监控"
#: terminal/templates/terminal/session_detail.html:10
5
#: terminal/templates/terminal/session_detail.html:10
9
msgid "Terminate session"
msgid "Terminate session"
msgstr "终止会话"
msgstr "终止会话"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment