mirror of https://github.com/jumpserver/jumpserver
perf: report
parent
88450d796f
commit
94a8122eac
|
@ -274,6 +274,6 @@ class CheckAccountManager(BaseManager):
|
||||||
self.summary[RiskChoice.leaked_password],
|
self.summary[RiskChoice.leaked_password],
|
||||||
self.summary[RiskChoice.repeated_password],
|
self.summary[RiskChoice.repeated_password],
|
||||||
self.summary["no_secret"],
|
self.summary["no_secret"],
|
||||||
int(self.duration)
|
self.duration
|
||||||
)
|
)
|
||||||
print(tmpl)
|
print(tmpl)
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<span class="item-label">{% trans 'Accounts amount' %}</span>
|
<span class="item-label">{% trans 'Accounts amount' %}</span>
|
||||||
<span class="item-value">{{ summary.total_accounts }}</span>
|
<span class="item-value">{{ summary.total_accounts | default:0 }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<span class="item-label">{% trans 'Assets amount' %}</span>
|
<span class="item-label">{% trans 'Assets amount' %}</span>
|
||||||
<span class="item-value">{{ summary.total_assets }}</span>
|
<span class="item-value">{{ summary.total_assets | default:0 }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
|
|
|
@ -25,23 +25,28 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<span class="item-label">{% trans 'Accounts amount' %}</span>
|
<span class="item-label">{% trans 'Normal' %}</span>
|
||||||
<span class="item-value">{{ summary.accounts }}</span>
|
<span class="item-value">{{ summary.ok | default:0 }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<span class="item-label">{% trans 'Asset success count' %}</span>
|
<span class="item-label">{% trans 'Weak password' %}</span>
|
||||||
<span class="item-value">{{ summary.ok_assets | default:0 }}</span>
|
<span class="item-value">{{ summary.weak_password | default:0 }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<span class="item-label">{% trans 'Asset failed count' %}</span>
|
<span class="item-label">{% trans 'Leaked password' %}</span>
|
||||||
<span class="item-value">{{ summary.fail_assets | default:0 }}</span>
|
<span class="item-value">{{ summary.leaked_password | default:0 }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<span class="item-label">{% trans 'Asset not support count' %}</span>
|
<span class="item-label">{% trans 'Repeated password' %}</span>
|
||||||
<span class="item-value">{{ summary.error_assets | default:0 }}</span>
|
<span class="item-value">{{ summary.repeated_password | default:0 }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<span class="item-label">{% trans 'No secret' %}</span>
|
||||||
|
<span class="item-value">{{ summary.no_secret | default:0 }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
|
@ -53,58 +58,6 @@
|
||||||
<span class="item-label">{% trans 'Time using' %}</span>
|
<span class="item-label">{% trans 'Time using' %}</span>
|
||||||
<span class="item-value">{{ execution.duration }}s</span>
|
<span class="item-value">{{ execution.duration }}s</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item">
|
|
||||||
<span class="item-label">{% trans 'Ok count' %}</span>
|
|
||||||
<span class="item-value">{{ summary.ok }}</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="item">
|
|
||||||
<span class="item-label">{% trans 'No password count' %}</span>
|
|
||||||
<span class="item-value">{{ summary.no_secret }}</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="success">
|
|
||||||
<div class="header-container">
|
|
||||||
<span
|
|
||||||
class="triangle-down-icon collapse-toggle"
|
|
||||||
data-target="success"
|
|
||||||
></span>
|
|
||||||
|
|
||||||
<h2>
|
|
||||||
{% trans 'Weak password' %}:
|
|
||||||
|
|
||||||
<span> {{ summary.weak_password | default:0 }} </span>
|
|
||||||
</h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="container-section collapsible-content" id="success-content">
|
|
||||||
{% if summary.ok_accounts %}
|
|
||||||
<table class="custom-table table-striped table-hover data-table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>{% trans 'No' %}</th>
|
|
||||||
<th>{% trans 'Asset' %}</th>
|
|
||||||
<th>{% trans 'Username' %}</th>
|
|
||||||
<th>{% trans 'Result' %}</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{% for account in result.weak_password %}
|
|
||||||
<tr>
|
|
||||||
<td>{{ forloop.counter }}</td>
|
|
||||||
<td>{{ account.asset }}</td>
|
|
||||||
<td>{{ account.username }}</td>
|
|
||||||
<td style="color: red">{% trans 'Weak password' %}</td>
|
|
||||||
</tr>
|
|
||||||
{% endfor %}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
{% else %}
|
|
||||||
<p class="no-data">{% trans 'No weak password' %}</p>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<span class="item-label">{% trans 'Assets amount' %}</span>
|
<span class="item-label">{% trans 'Assets amount' %}</span>
|
||||||
<span class="item-value">{{ summary.total_assets }}</span>
|
<span class="item-value">{{ summary.total_assets | default:0 }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<span class="item-label">{% trans 'Assets amount' %}</span>
|
<span class="item-label">{% trans 'Assets amount' %}</span>
|
||||||
<span class="item-value">{{ summary.total_assets }}</span>
|
<span class="item-value">{{ summary.total_assets | default:0 }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
|
|
|
@ -116,7 +116,7 @@ class BaseManager:
|
||||||
automation.save(update_fields=['last_execution_date'])
|
automation.save(update_fields=['last_execution_date'])
|
||||||
|
|
||||||
def update_execution(self):
|
def update_execution(self):
|
||||||
self.duration = int(time.time() - self.time_start)
|
self.duration = time.time() - self.time_start
|
||||||
self.execution.date_finished = timezone.now()
|
self.execution.date_finished = timezone.now()
|
||||||
self.execution.duration = self.duration
|
self.execution.duration = self.duration
|
||||||
self.execution.summary = self.summary
|
self.execution.summary = self.summary
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 4.1.13 on 2025-03-12 09:39
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('assets', '0013_baseautomation_last_execution_date'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='automationexecution',
|
||||||
|
name='duration',
|
||||||
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=10, verbose_name='Duration'),
|
||||||
|
),
|
||||||
|
]
|
|
@ -142,7 +142,7 @@ class AutomationExecution(OrgModelMixin):
|
||||||
null=True, verbose_name=_("Date start"), db_index=True
|
null=True, verbose_name=_("Date start"), db_index=True
|
||||||
)
|
)
|
||||||
date_finished = models.DateTimeField(null=True, verbose_name=_("Date finished"))
|
date_finished = models.DateTimeField(null=True, verbose_name=_("Date finished"))
|
||||||
duration = models.IntegerField(default=0, verbose_name=_("Duration"))
|
duration = models.DecimalField(default=0, max_digits=10, decimal_places=2, verbose_name=_("Duration"))
|
||||||
snapshot = EncryptJsonDictTextField(
|
snapshot = EncryptJsonDictTextField(
|
||||||
default=dict, blank=True, null=True, verbose_name=_("Automation snapshot")
|
default=dict, blank=True, null=True, verbose_name=_("Automation snapshot")
|
||||||
)
|
)
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2025-03-12 10:30+0800\n"
|
"POT-Creation-Date: 2025-03-12 17:42+0800\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -374,7 +374,7 @@ msgstr ""
|
||||||
msgid "Privileged"
|
msgid "Privileged"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/const/automation.py:131 perms/serializers/permission.py:44
|
#: accounts/const/automation.py:131 perms/serializers/permission.py:55
|
||||||
#: users/serializers/user.py:245
|
#: users/serializers/user.py:245
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -429,7 +429,7 @@ msgid "User %s view/export secret"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/account.py:83
|
#: accounts/models/account.py:83
|
||||||
#: accounts/models/automations/check_account.py:62
|
#: accounts/models/automations/check_account.py:57
|
||||||
#: accounts/models/automations/gather_account.py:16
|
#: accounts/models/automations/gather_account.py:16
|
||||||
#: accounts/serializers/account/account.py:226
|
#: accounts/serializers/account/account.py:226
|
||||||
#: accounts/serializers/account/account.py:274
|
#: accounts/serializers/account/account.py:274
|
||||||
|
@ -441,7 +441,6 @@ msgstr ""
|
||||||
#: accounts/templates/accounts/change_secret_failed_info.html:11
|
#: accounts/templates/accounts/change_secret_failed_info.html:11
|
||||||
#: accounts/templates/accounts/change_secret_report.html:79
|
#: accounts/templates/accounts/change_secret_report.html:79
|
||||||
#: accounts/templates/accounts/change_secret_report.html:119
|
#: accounts/templates/accounts/change_secret_report.html:119
|
||||||
#: accounts/templates/accounts/check_account_report.html:89
|
|
||||||
#: accounts/templates/accounts/gather_account_report.html:77
|
#: accounts/templates/accounts/gather_account_report.html:77
|
||||||
#: accounts/templates/accounts/gather_account_report.html:117
|
#: accounts/templates/accounts/gather_account_report.html:117
|
||||||
#: accounts/templates/accounts/push_account_report.html:78
|
#: accounts/templates/accounts/push_account_report.html:78
|
||||||
|
@ -507,7 +506,7 @@ msgid "Change secret status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/account.py:103
|
#: accounts/models/account.py:103
|
||||||
#: accounts/models/automations/check_account.py:67
|
#: accounts/models/automations/check_account.py:62
|
||||||
#: accounts/serializers/account/service.py:11
|
#: accounts/serializers/account/service.py:11
|
||||||
#: accounts/serializers/automations/change_secret.py:115
|
#: accounts/serializers/automations/change_secret.py:115
|
||||||
#: accounts/serializers/automations/change_secret.py:146
|
#: accounts/serializers/automations/change_secret.py:146
|
||||||
|
@ -551,7 +550,7 @@ msgid "Can remove account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/application.py:16
|
#: accounts/models/application.py:16
|
||||||
#: accounts/models/automations/check_account.py:119 accounts/models/base.py:63
|
#: accounts/models/automations/check_account.py:114 accounts/models/base.py:63
|
||||||
#: accounts/serializers/account/service.py:27
|
#: accounts/serializers/account/service.py:27
|
||||||
#: accounts/serializers/account/virtual.py:20 acls/models/base.py:35
|
#: accounts/serializers/account/virtual.py:20 acls/models/base.py:35
|
||||||
#: acls/models/base.py:96 acls/models/command_acl.py:21
|
#: acls/models/base.py:96 acls/models/command_acl.py:21
|
||||||
|
@ -600,7 +599,7 @@ msgstr ""
|
||||||
#: accounts/models/application.py:21 acls/models/base.py:98
|
#: accounts/models/application.py:21 acls/models/base.py:98
|
||||||
#: assets/models/automations/base.py:22 assets/models/cmd_filter.py:38
|
#: assets/models/automations/base.py:22 assets/models/cmd_filter.py:38
|
||||||
#: assets/serializers/asset/common.py:148
|
#: assets/serializers/asset/common.py:148
|
||||||
#: assets/serializers/asset/common.py:420 perms/serializers/permission.py:55
|
#: assets/serializers/asset/common.py:420 perms/serializers/permission.py:66
|
||||||
#: perms/serializers/user_permission.py:75 rbac/tree.py:35
|
#: perms/serializers/user_permission.py:75 rbac/tree.py:35
|
||||||
msgid "Accounts"
|
msgid "Accounts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -721,7 +720,7 @@ msgid "Check connection after change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/change_secret.py:17
|
#: accounts/models/automations/change_secret.py:17
|
||||||
#: accounts/models/automations/check_account.py:19
|
#: accounts/models/automations/check_account.py:18
|
||||||
#: accounts/models/automations/gather_account.py:92
|
#: accounts/models/automations/gather_account.py:92
|
||||||
#: accounts/serializers/automations/change_secret.py:59
|
#: accounts/serializers/automations/change_secret.py:59
|
||||||
#: settings/serializers/auth/ldap.py:101
|
#: settings/serializers/auth/ldap.py:101
|
||||||
|
@ -741,7 +740,7 @@ msgid "Date finished"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/change_secret.py:49
|
#: accounts/models/automations/change_secret.py:49
|
||||||
#: accounts/models/automations/check_account.py:75
|
#: accounts/models/automations/check_account.py:70
|
||||||
#: accounts/models/automations/gather_account.py:25
|
#: accounts/models/automations/gather_account.py:25
|
||||||
#: accounts/serializers/automations/check_account.py:39
|
#: accounts/serializers/automations/check_account.py:39
|
||||||
#: assets/models/automations/base.py:136
|
#: assets/models/automations/base.py:136
|
||||||
|
@ -785,87 +784,71 @@ msgstr ""
|
||||||
msgid "Change secret record"
|
msgid "Change secret record"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:18
|
#: accounts/models/automations/check_account.py:17
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:34
|
#: accounts/models/automations/check_account.py:33
|
||||||
msgid "account check automation"
|
msgid "account check automation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:36
|
#: accounts/models/automations/check_account.py:35
|
||||||
msgid "Can view check account execution"
|
msgid "Can view check account execution"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:37
|
#: accounts/models/automations/check_account.py:36
|
||||||
msgid "Can add check account execution"
|
msgid "Can add check account execution"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:43
|
#: accounts/models/automations/check_account.py:42
|
||||||
msgid "Long time no login"
|
msgid "Long time no login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:44
|
#: accounts/models/automations/check_account.py:43
|
||||||
msgid "New found"
|
msgid "New found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:45
|
#: accounts/models/automations/check_account.py:44
|
||||||
msgid "Groups change"
|
msgid "Groups change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:46
|
#: accounts/models/automations/check_account.py:45
|
||||||
msgid "Sudo changed"
|
msgid "Sudo changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:47
|
#: accounts/models/automations/check_account.py:46
|
||||||
msgid "Authorized keys changed"
|
msgid "Authorized keys changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:48
|
#: accounts/models/automations/check_account.py:47
|
||||||
msgid "Account delete"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:49
|
|
||||||
#: authentication/errors/const.py:23
|
#: authentication/errors/const.py:23
|
||||||
msgid "Password expired"
|
msgid "Password expired"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:50
|
#: accounts/models/automations/check_account.py:48
|
||||||
msgid "Long time no change"
|
msgid "Long time no change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:52
|
#: accounts/models/automations/check_account.py:50
|
||||||
#: accounts/templates/accounts/check_account_report.html:77
|
#: accounts/templates/accounts/check_account_report.html:33
|
||||||
#: accounts/templates/accounts/check_account_report.html:100
|
|
||||||
msgid "Weak password"
|
msgid "Weak password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:53
|
#: accounts/models/automations/check_account.py:51
|
||||||
|
#: accounts/templates/accounts/check_account_report.html:38
|
||||||
msgid "Leaked password"
|
msgid "Leaked password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:54
|
#: accounts/models/automations/check_account.py:52
|
||||||
|
#: accounts/templates/accounts/check_account_report.html:43
|
||||||
msgid "Repeated password"
|
msgid "Repeated password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:55
|
#: accounts/models/automations/check_account.py:59
|
||||||
msgid "Password error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:56
|
|
||||||
msgid "No admin account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:57
|
|
||||||
msgid "Others"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:64
|
|
||||||
#: accounts/models/automations/gather_account.py:17 accounts/models/base.py:64
|
#: accounts/models/automations/gather_account.py:17 accounts/models/base.py:64
|
||||||
#: accounts/serializers/account/virtual.py:21
|
#: accounts/serializers/account/virtual.py:21
|
||||||
#: accounts/templates/accounts/change_secret_report.html:80
|
#: accounts/templates/accounts/change_secret_report.html:80
|
||||||
#: accounts/templates/accounts/change_secret_report.html:120
|
#: accounts/templates/accounts/change_secret_report.html:120
|
||||||
#: accounts/templates/accounts/check_account_report.html:90
|
|
||||||
#: accounts/templates/accounts/gather_account_report.html:78
|
#: accounts/templates/accounts/gather_account_report.html:78
|
||||||
#: accounts/templates/accounts/gather_account_report.html:118
|
#: accounts/templates/accounts/gather_account_report.html:118
|
||||||
#: accounts/templates/accounts/push_account_report.html:79
|
#: accounts/templates/accounts/push_account_report.html:79
|
||||||
|
@ -883,57 +866,57 @@ msgstr ""
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:73
|
#: accounts/models/automations/check_account.py:68
|
||||||
#: accounts/serializers/automations/check_account.py:36
|
#: accounts/serializers/automations/check_account.py:36
|
||||||
msgid "Risk"
|
msgid "Risk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:76
|
#: accounts/models/automations/check_account.py:71
|
||||||
#: accounts/models/automations/gather_account.py:26 audits/models.py:151
|
#: accounts/models/automations/gather_account.py:26 audits/models.py:151
|
||||||
msgid "Detail"
|
msgid "Detail"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:79
|
#: accounts/models/automations/check_account.py:74
|
||||||
msgid "Account risk"
|
msgid "Account risk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:120
|
#: accounts/models/automations/check_account.py:115
|
||||||
msgid "Slug"
|
msgid "Slug"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:131
|
#: accounts/models/automations/check_account.py:126
|
||||||
msgid "Check the discovered accounts"
|
msgid "Check the discovered accounts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:133
|
#: accounts/models/automations/check_account.py:128
|
||||||
msgid ""
|
msgid ""
|
||||||
"Perform checks and analyses based on automatically discovered account "
|
"Perform checks and analyses based on automatically discovered account "
|
||||||
"results, including user groups, public keys, sudoers, and other information"
|
"results, including user groups, public keys, sudoers, and other information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:140
|
#: accounts/models/automations/check_account.py:135
|
||||||
msgid "Check the strength of your account and password"
|
msgid "Check the strength of your account and password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:142
|
#: accounts/models/automations/check_account.py:137
|
||||||
msgid ""
|
msgid ""
|
||||||
"Perform checks and analyses based on the security of account passwords, "
|
"Perform checks and analyses based on the security of account passwords, "
|
||||||
"including password strength, leakage, etc."
|
"including password strength, leakage, etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:149
|
#: accounts/models/automations/check_account.py:144
|
||||||
msgid "Check if the account and password are repeated"
|
msgid "Check if the account and password are repeated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:150
|
#: accounts/models/automations/check_account.py:145
|
||||||
msgid "Check if the account is the same as other accounts"
|
msgid "Check if the account is the same as other accounts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:155
|
#: accounts/models/automations/check_account.py:150
|
||||||
msgid "Check whether the account password is a common password"
|
msgid "Check whether the account password is a common password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:156
|
#: accounts/models/automations/check_account.py:151
|
||||||
msgid "Check whether the account password is a commonly leaked password"
|
msgid "Check whether the account password is a commonly leaked password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1209,7 +1192,7 @@ msgstr ""
|
||||||
#: assets/serializers/platform.py:181 assets/serializers/platform.py:213
|
#: assets/serializers/platform.py:181 assets/serializers/platform.py:213
|
||||||
#: authentication/api/connection_token.py:463 ops/models/base.py:17
|
#: authentication/api/connection_token.py:463 ops/models/base.py:17
|
||||||
#: ops/models/job.py:155 ops/serializers/job.py:21
|
#: ops/models/job.py:155 ops/serializers/job.py:21
|
||||||
#: perms/serializers/permission.py:46
|
#: perms/serializers/permission.py:57
|
||||||
#: terminal/templates/terminal/_msg_command_execute_alert.html:16
|
#: terminal/templates/terminal/_msg_command_execute_alert.html:16
|
||||||
#: xpack/plugins/cloud/manager.py:93
|
#: xpack/plugins/cloud/manager.py:93
|
||||||
msgid "Assets"
|
msgid "Assets"
|
||||||
|
@ -1298,7 +1281,6 @@ msgstr "Description"
|
||||||
|
|
||||||
#: accounts/serializers/account/service.py:28
|
#: accounts/serializers/account/service.py:28
|
||||||
#: accounts/templates/accounts/backup_account_report.html:28
|
#: accounts/templates/accounts/backup_account_report.html:28
|
||||||
#: accounts/templates/accounts/check_account_report.html:28
|
|
||||||
#: assets/serializers/asset/common.py:151
|
#: assets/serializers/asset/common.py:151
|
||||||
msgid "Accounts amount"
|
msgid "Accounts amount"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1608,7 +1590,7 @@ msgstr ""
|
||||||
#: accounts/templates/accounts/backup_account_report.html:33
|
#: accounts/templates/accounts/backup_account_report.html:33
|
||||||
#: accounts/templates/accounts/change_secret_failed_info.html:3
|
#: accounts/templates/accounts/change_secret_failed_info.html:3
|
||||||
#: accounts/templates/accounts/change_secret_report.html:48
|
#: accounts/templates/accounts/change_secret_report.html:48
|
||||||
#: accounts/templates/accounts/check_account_report.html:48
|
#: accounts/templates/accounts/check_account_report.html:53
|
||||||
#: accounts/templates/accounts/gather_account_report.html:46
|
#: accounts/templates/accounts/gather_account_report.html:46
|
||||||
#: accounts/templates/accounts/push_account_report.html:47
|
#: accounts/templates/accounts/push_account_report.html:47
|
||||||
#: terminal/serializers/task.py:10
|
#: terminal/serializers/task.py:10
|
||||||
|
@ -1617,7 +1599,7 @@ msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/backup_account_report.html:38
|
#: accounts/templates/accounts/backup_account_report.html:38
|
||||||
#: accounts/templates/accounts/change_secret_report.html:53
|
#: accounts/templates/accounts/change_secret_report.html:53
|
||||||
#: accounts/templates/accounts/check_account_report.html:53
|
#: accounts/templates/accounts/check_account_report.html:58
|
||||||
#: accounts/templates/accounts/gather_account_report.html:51
|
#: accounts/templates/accounts/gather_account_report.html:51
|
||||||
#: accounts/templates/accounts/push_account_report.html:52
|
#: accounts/templates/accounts/push_account_report.html:52
|
||||||
msgid "Time using"
|
msgid "Time using"
|
||||||
|
@ -1645,26 +1627,23 @@ msgstr ""
|
||||||
#: accounts/templates/accounts/gather_account_report.html:26
|
#: accounts/templates/accounts/gather_account_report.html:26
|
||||||
#: accounts/templates/accounts/push_account_report.html:27
|
#: accounts/templates/accounts/push_account_report.html:27
|
||||||
#: assets/serializers/domain.py:24 assets/serializers/platform.py:182
|
#: assets/serializers/domain.py:24 assets/serializers/platform.py:182
|
||||||
#: orgs/serializers.py:13 perms/serializers/permission.py:50
|
#: orgs/serializers.py:13 perms/serializers/permission.py:61
|
||||||
msgid "Assets amount"
|
msgid "Assets amount"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/change_secret_report.html:33
|
#: accounts/templates/accounts/change_secret_report.html:33
|
||||||
#: accounts/templates/accounts/check_account_report.html:33
|
|
||||||
#: accounts/templates/accounts/gather_account_report.html:31
|
#: accounts/templates/accounts/gather_account_report.html:31
|
||||||
#: accounts/templates/accounts/push_account_report.html:32
|
#: accounts/templates/accounts/push_account_report.html:32
|
||||||
msgid "Asset success count"
|
msgid "Asset success count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/change_secret_report.html:38
|
#: accounts/templates/accounts/change_secret_report.html:38
|
||||||
#: accounts/templates/accounts/check_account_report.html:38
|
|
||||||
#: accounts/templates/accounts/gather_account_report.html:36
|
#: accounts/templates/accounts/gather_account_report.html:36
|
||||||
#: accounts/templates/accounts/push_account_report.html:37
|
#: accounts/templates/accounts/push_account_report.html:37
|
||||||
msgid "Asset failed count"
|
msgid "Asset failed count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/change_secret_report.html:43
|
#: accounts/templates/accounts/change_secret_report.html:43
|
||||||
#: accounts/templates/accounts/check_account_report.html:43
|
|
||||||
#: accounts/templates/accounts/gather_account_report.html:41
|
#: accounts/templates/accounts/gather_account_report.html:41
|
||||||
#: accounts/templates/accounts/push_account_report.html:42
|
#: accounts/templates/accounts/push_account_report.html:42
|
||||||
msgid "Asset not support count"
|
msgid "Asset not support count"
|
||||||
|
@ -1677,7 +1656,6 @@ msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/change_secret_report.html:78
|
#: accounts/templates/accounts/change_secret_report.html:78
|
||||||
#: accounts/templates/accounts/change_secret_report.html:118
|
#: accounts/templates/accounts/change_secret_report.html:118
|
||||||
#: accounts/templates/accounts/check_account_report.html:88
|
|
||||||
#: accounts/templates/accounts/push_account_report.html:77
|
#: accounts/templates/accounts/push_account_report.html:77
|
||||||
#: accounts/templates/accounts/push_account_report.html:117
|
#: accounts/templates/accounts/push_account_report.html:117
|
||||||
#: audits/handler.py:128
|
#: audits/handler.py:128
|
||||||
|
@ -1698,22 +1676,14 @@ msgstr ""
|
||||||
msgid "Failed accounts"
|
msgid "Failed accounts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/check_account_report.html:58
|
#: accounts/templates/accounts/check_account_report.html:28
|
||||||
msgid "Ok count"
|
#: terminal/const.py:47 terminal/const.py:86
|
||||||
|
#: users/templates/users/reset_password.html:54
|
||||||
|
msgid "Normal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/check_account_report.html:63
|
#: accounts/templates/accounts/check_account_report.html:48
|
||||||
msgid "No password count"
|
msgid "No secret"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/check_account_report.html:91
|
|
||||||
#: assets/models/automations/base.py:156 ops/models/base.py:51
|
|
||||||
#: ops/models/job.py:235 xpack/plugins/cloud/models.py:225
|
|
||||||
msgid "Result"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/check_account_report.html:106
|
|
||||||
msgid "No weak password"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/gather_account_report.html:65
|
#: accounts/templates/accounts/gather_account_report.html:65
|
||||||
|
@ -1785,7 +1755,7 @@ msgstr ""
|
||||||
#: assets/models/cmd_filter.py:81 audits/models.py:93 audits/serializers.py:108
|
#: assets/models/cmd_filter.py:81 audits/models.py:93 audits/serializers.py:108
|
||||||
#: authentication/serializers/connect_token_secret.py:119
|
#: authentication/serializers/connect_token_secret.py:119
|
||||||
#: authentication/templates/authentication/_access_key_modal.html:34
|
#: authentication/templates/authentication/_access_key_modal.html:34
|
||||||
#: perms/serializers/permission.py:52 perms/serializers/permission.py:74
|
#: perms/serializers/permission.py:63 perms/serializers/permission.py:85
|
||||||
#: tickets/serializers/ticket/ticket.py:21
|
#: tickets/serializers/ticket/ticket.py:21
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1795,7 +1765,7 @@ msgstr ""
|
||||||
msgid "Reviewers"
|
msgid "Reviewers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: acls/models/base.py:81 perms/serializers/permission.py:42
|
#: acls/models/base.py:81 perms/serializers/permission.py:53
|
||||||
#: tickets/models/flow.py:23 users/models/preference.py:16
|
#: tickets/models/flow.py:23 users/models/preference.py:16
|
||||||
#: users/serializers/group.py:21 users/serializers/user.py:420
|
#: users/serializers/group.py:21 users/serializers/user.py:420
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
|
@ -2396,7 +2366,7 @@ msgstr ""
|
||||||
|
|
||||||
#: assets/models/asset/common.py:176 assets/serializers/asset/common.py:174
|
#: assets/models/asset/common.py:176 assets/serializers/asset/common.py:174
|
||||||
#: assets/serializers/automations/base.py:21 ops/serializers/job.py:22
|
#: assets/serializers/automations/base.py:21 ops/serializers/job.py:22
|
||||||
#: perms/serializers/permission.py:47
|
#: perms/serializers/permission.py:58
|
||||||
msgid "Nodes"
|
msgid "Nodes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2496,6 +2466,11 @@ msgstr ""
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: assets/models/automations/base.py:156 ops/models/base.py:51
|
||||||
|
#: ops/models/job.py:235 xpack/plugins/cloud/models.py:225
|
||||||
|
msgid "Result"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: assets/models/automations/gather_facts.py:15
|
#: assets/models/automations/gather_facts.py:15
|
||||||
msgid "Gather asset facts"
|
msgid "Gather asset facts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2789,7 +2764,7 @@ msgstr ""
|
||||||
#: assets/serializers/asset/common.py:147 assets/serializers/platform.py:174
|
#: assets/serializers/asset/common.py:147 assets/serializers/platform.py:174
|
||||||
#: authentication/serializers/connect_token_secret.py:30
|
#: authentication/serializers/connect_token_secret.py:30
|
||||||
#: authentication/serializers/connect_token_secret.py:75
|
#: authentication/serializers/connect_token_secret.py:75
|
||||||
#: perms/models/asset_permission.py:76 perms/serializers/permission.py:56
|
#: perms/models/asset_permission.py:76 perms/serializers/permission.py:67
|
||||||
#: perms/serializers/user_permission.py:74 xpack/plugins/cloud/models.py:390
|
#: perms/serializers/user_permission.py:74 xpack/plugins/cloud/models.py:390
|
||||||
#: xpack/plugins/cloud/serializers/task.py:36
|
#: xpack/plugins/cloud/serializers/task.py:36
|
||||||
msgid "Protocols"
|
msgid "Protocols"
|
||||||
|
@ -4151,7 +4126,7 @@ msgid "Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: authentication/serializers/connection_token.py:43
|
#: authentication/serializers/connection_token.py:43
|
||||||
#: perms/serializers/permission.py:54 perms/serializers/permission.py:75
|
#: perms/serializers/permission.py:65 perms/serializers/permission.py:86
|
||||||
#: users/serializers/user.py:127 users/serializers/user.py:261
|
#: users/serializers/user.py:127 users/serializers/user.py:261
|
||||||
msgid "Is expired"
|
msgid "Is expired"
|
||||||
msgstr "Expired"
|
msgstr "Expired"
|
||||||
|
@ -4189,8 +4164,8 @@ msgstr ""
|
||||||
msgid "Not a valid ssh public key"
|
msgid "Not a valid ssh public key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: authentication/serializers/token.py:92 perms/serializers/permission.py:53
|
#: authentication/serializers/token.py:92 perms/serializers/permission.py:64
|
||||||
#: perms/serializers/permission.py:76 users/serializers/user.py:128
|
#: perms/serializers/permission.py:87 users/serializers/user.py:128
|
||||||
#: users/serializers/user.py:258
|
#: users/serializers/user.py:258
|
||||||
msgid "Is valid"
|
msgid "Is valid"
|
||||||
msgstr "Is Valid"
|
msgstr "Is Valid"
|
||||||
|
@ -4961,7 +4936,7 @@ msgstr ""
|
||||||
msgid "Invalid choice: {}"
|
msgid "Invalid choice: {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: common/serializers/mixin.py:452 terminal/models/applet/applet.py:45
|
#: common/serializers/mixin.py:451 terminal/models/applet/applet.py:45
|
||||||
#: terminal/models/virtualapp/virtualapp.py:29
|
#: terminal/models/virtualapp/virtualapp.py:29
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -5785,7 +5760,7 @@ msgstr ""
|
||||||
msgid "Can not delete virtual org"
|
msgid "Can not delete virtual org"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: orgs/serializers.py:10 perms/serializers/permission.py:48
|
#: orgs/serializers.py:10 perms/serializers/permission.py:59
|
||||||
#: rbac/serializers/role.py:27 users/serializers/group.py:54
|
#: rbac/serializers/role.py:27 users/serializers/group.py:54
|
||||||
msgid "Users amount"
|
msgid "Users amount"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -5794,7 +5769,7 @@ msgstr ""
|
||||||
msgid "User groups amount"
|
msgid "User groups amount"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: orgs/serializers.py:14 perms/serializers/permission.py:51
|
#: orgs/serializers.py:14 perms/serializers/permission.py:62
|
||||||
msgid "Nodes amount"
|
msgid "Nodes amount"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -5911,17 +5886,17 @@ msgstr ""
|
||||||
msgid "asset permissions of organization {}"
|
msgid "asset permissions of organization {}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: perms/serializers/permission.py:32
|
#: perms/serializers/permission.py:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"Accounts, format [\"@virtual\", \"root\", \"%template_id\"], virtual "
|
"Accounts, format [\"@virtual\", \"root\", \"%template_id\"], virtual "
|
||||||
"choices: @ALL, @SPEC, @USER, @ANON, @INPUT"
|
"choices: @ALL, @SPEC, @USER, @ANON, @INPUT"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: perms/serializers/permission.py:38
|
#: perms/serializers/permission.py:49
|
||||||
msgid "Protocols, format [\"ssh\", \"rdp\", \"vnc\"] or [\"all\"]"
|
msgid "Protocols, format [\"ssh\", \"rdp\", \"vnc\"] or [\"all\"]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: perms/serializers/permission.py:49
|
#: perms/serializers/permission.py:60
|
||||||
msgid "Groups amount"
|
msgid "Groups amount"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -7084,7 +7059,7 @@ msgstr ""
|
||||||
msgid "Command blacklist in Adhoc"
|
msgid "Command blacklist in Adhoc"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: settings/serializers/feature.py:197
|
#: settings/serializers/feature.py:198
|
||||||
#: terminal/models/virtualapp/provider.py:17
|
#: terminal/models/virtualapp/provider.py:17
|
||||||
#: terminal/models/virtualapp/virtualapp.py:36
|
#: terminal/models/virtualapp/virtualapp.py:36
|
||||||
#: terminal/models/virtualapp/virtualapp.py:97
|
#: terminal/models/virtualapp/virtualapp.py:97
|
||||||
|
@ -7092,11 +7067,11 @@ msgstr ""
|
||||||
msgid "Virtual app"
|
msgid "Virtual app"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: settings/serializers/feature.py:200
|
#: settings/serializers/feature.py:201
|
||||||
msgid "Virtual App"
|
msgid "Virtual App"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: settings/serializers/feature.py:202
|
#: settings/serializers/feature.py:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Virtual applications, you can use the Linux operating system as an "
|
"Virtual applications, you can use the Linux operating system as an "
|
||||||
"application server in remote applications."
|
"application server in remote applications."
|
||||||
|
@ -7994,11 +7969,6 @@ msgstr ""
|
||||||
msgid "High"
|
msgid "High"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: terminal/const.py:47 terminal/const.py:86
|
|
||||||
#: users/templates/users/reset_password.html:54
|
|
||||||
msgid "Normal"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: terminal/const.py:48
|
#: terminal/const.py:48
|
||||||
msgid "Offline"
|
msgid "Offline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -8282,23 +8252,23 @@ msgstr ""
|
||||||
msgid "Error reason"
|
msgid "Error reason"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: terminal/models/session/session.py:315
|
#: terminal/models/session/session.py:319
|
||||||
msgid "Session record"
|
msgid "Session record"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: terminal/models/session/session.py:317
|
#: terminal/models/session/session.py:321
|
||||||
msgid "Can monitor session"
|
msgid "Can monitor session"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: terminal/models/session/session.py:318
|
#: terminal/models/session/session.py:322
|
||||||
msgid "Can share session"
|
msgid "Can share session"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: terminal/models/session/session.py:319
|
#: terminal/models/session/session.py:323
|
||||||
msgid "Can terminate session"
|
msgid "Can terminate session"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: terminal/models/session/session.py:320
|
#: terminal/models/session/session.py:324
|
||||||
msgid "Can validate session action perm"
|
msgid "Can validate session action perm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -7,7 +7,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: 2025-03-12 10:30+0800\n"
|
"POT-Creation-Date: 2025-03-12 17:42+0800\n"
|
||||||
"PO-Revision-Date: 2021-05-20 10:54+0800\n"
|
"PO-Revision-Date: 2021-05-20 10:54+0800\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"
|
||||||
|
@ -376,7 +376,7 @@ msgstr "角色"
|
||||||
msgid "Privileged"
|
msgid "Privileged"
|
||||||
msgstr "特权账号"
|
msgstr "特权账号"
|
||||||
|
|
||||||
#: accounts/const/automation.py:131 perms/serializers/permission.py:44
|
#: accounts/const/automation.py:131 perms/serializers/permission.py:55
|
||||||
#: users/serializers/user.py:245
|
#: users/serializers/user.py:245
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr "用户组"
|
msgstr "用户组"
|
||||||
|
@ -431,7 +431,7 @@ msgid "User %s view/export secret"
|
||||||
msgstr "用户 %s 查看/导出 了密码"
|
msgstr "用户 %s 查看/导出 了密码"
|
||||||
|
|
||||||
#: accounts/models/account.py:83
|
#: accounts/models/account.py:83
|
||||||
#: accounts/models/automations/check_account.py:62
|
#: accounts/models/automations/check_account.py:57
|
||||||
#: accounts/models/automations/gather_account.py:16
|
#: accounts/models/automations/gather_account.py:16
|
||||||
#: accounts/serializers/account/account.py:226
|
#: accounts/serializers/account/account.py:226
|
||||||
#: accounts/serializers/account/account.py:274
|
#: accounts/serializers/account/account.py:274
|
||||||
|
@ -443,7 +443,6 @@ msgstr "用户 %s 查看/导出 了密码"
|
||||||
#: accounts/templates/accounts/change_secret_failed_info.html:11
|
#: accounts/templates/accounts/change_secret_failed_info.html:11
|
||||||
#: accounts/templates/accounts/change_secret_report.html:79
|
#: accounts/templates/accounts/change_secret_report.html:79
|
||||||
#: accounts/templates/accounts/change_secret_report.html:119
|
#: accounts/templates/accounts/change_secret_report.html:119
|
||||||
#: accounts/templates/accounts/check_account_report.html:89
|
|
||||||
#: accounts/templates/accounts/gather_account_report.html:77
|
#: accounts/templates/accounts/gather_account_report.html:77
|
||||||
#: accounts/templates/accounts/gather_account_report.html:117
|
#: accounts/templates/accounts/gather_account_report.html:117
|
||||||
#: accounts/templates/accounts/push_account_report.html:78
|
#: accounts/templates/accounts/push_account_report.html:78
|
||||||
|
@ -509,7 +508,7 @@ msgid "Change secret status"
|
||||||
msgstr "改密状态"
|
msgstr "改密状态"
|
||||||
|
|
||||||
#: accounts/models/account.py:103
|
#: accounts/models/account.py:103
|
||||||
#: accounts/models/automations/check_account.py:67
|
#: accounts/models/automations/check_account.py:62
|
||||||
#: accounts/serializers/account/service.py:11
|
#: accounts/serializers/account/service.py:11
|
||||||
#: accounts/serializers/automations/change_secret.py:115
|
#: accounts/serializers/automations/change_secret.py:115
|
||||||
#: accounts/serializers/automations/change_secret.py:146
|
#: accounts/serializers/automations/change_secret.py:146
|
||||||
|
@ -553,7 +552,7 @@ msgid "Can remove account"
|
||||||
msgstr "可以移除账号"
|
msgstr "可以移除账号"
|
||||||
|
|
||||||
#: accounts/models/application.py:16
|
#: accounts/models/application.py:16
|
||||||
#: accounts/models/automations/check_account.py:119 accounts/models/base.py:63
|
#: accounts/models/automations/check_account.py:114 accounts/models/base.py:63
|
||||||
#: accounts/serializers/account/service.py:27
|
#: accounts/serializers/account/service.py:27
|
||||||
#: accounts/serializers/account/virtual.py:20 acls/models/base.py:35
|
#: accounts/serializers/account/virtual.py:20 acls/models/base.py:35
|
||||||
#: acls/models/base.py:96 acls/models/command_acl.py:21
|
#: acls/models/base.py:96 acls/models/command_acl.py:21
|
||||||
|
@ -602,7 +601,7 @@ msgstr "密文"
|
||||||
#: accounts/models/application.py:21 acls/models/base.py:98
|
#: accounts/models/application.py:21 acls/models/base.py:98
|
||||||
#: assets/models/automations/base.py:22 assets/models/cmd_filter.py:38
|
#: assets/models/automations/base.py:22 assets/models/cmd_filter.py:38
|
||||||
#: assets/serializers/asset/common.py:148
|
#: assets/serializers/asset/common.py:148
|
||||||
#: assets/serializers/asset/common.py:420 perms/serializers/permission.py:55
|
#: assets/serializers/asset/common.py:420 perms/serializers/permission.py:66
|
||||||
#: perms/serializers/user_permission.py:75 rbac/tree.py:35
|
#: perms/serializers/user_permission.py:75 rbac/tree.py:35
|
||||||
msgid "Accounts"
|
msgid "Accounts"
|
||||||
msgstr "账号"
|
msgstr "账号"
|
||||||
|
@ -723,7 +722,7 @@ msgid "Check connection after change"
|
||||||
msgstr "更改后检查连接"
|
msgstr "更改后检查连接"
|
||||||
|
|
||||||
#: accounts/models/automations/change_secret.py:17
|
#: accounts/models/automations/change_secret.py:17
|
||||||
#: accounts/models/automations/check_account.py:19
|
#: accounts/models/automations/check_account.py:18
|
||||||
#: accounts/models/automations/gather_account.py:92
|
#: accounts/models/automations/gather_account.py:92
|
||||||
#: accounts/serializers/automations/change_secret.py:59
|
#: accounts/serializers/automations/change_secret.py:59
|
||||||
#: settings/serializers/auth/ldap.py:101
|
#: settings/serializers/auth/ldap.py:101
|
||||||
|
@ -743,7 +742,7 @@ msgid "Date finished"
|
||||||
msgstr "结束日期"
|
msgstr "结束日期"
|
||||||
|
|
||||||
#: accounts/models/automations/change_secret.py:49
|
#: accounts/models/automations/change_secret.py:49
|
||||||
#: accounts/models/automations/check_account.py:75
|
#: accounts/models/automations/check_account.py:70
|
||||||
#: accounts/models/automations/gather_account.py:25
|
#: accounts/models/automations/gather_account.py:25
|
||||||
#: accounts/serializers/automations/check_account.py:39
|
#: accounts/serializers/automations/check_account.py:39
|
||||||
#: assets/models/automations/base.py:136
|
#: assets/models/automations/base.py:136
|
||||||
|
@ -787,87 +786,71 @@ msgstr "忽略失败"
|
||||||
msgid "Change secret record"
|
msgid "Change secret record"
|
||||||
msgstr "改密记录"
|
msgstr "改密记录"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:18
|
#: accounts/models/automations/check_account.py:17
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "引擎"
|
msgstr "引擎"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:34
|
#: accounts/models/automations/check_account.py:33
|
||||||
msgid "account check automation"
|
msgid "account check automation"
|
||||||
msgstr "帐号检查自动化"
|
msgstr "帐号检查自动化"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:36
|
#: accounts/models/automations/check_account.py:35
|
||||||
msgid "Can view check account execution"
|
msgid "Can view check account execution"
|
||||||
msgstr "可以查看账号执行"
|
msgstr "可以查看账号执行"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:37
|
#: accounts/models/automations/check_account.py:36
|
||||||
msgid "Can add check account execution"
|
msgid "Can add check account execution"
|
||||||
msgstr "可以添加检查账号执行情况"
|
msgstr "可以添加检查账号执行情况"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:43
|
#: accounts/models/automations/check_account.py:42
|
||||||
msgid "Long time no login"
|
msgid "Long time no login"
|
||||||
msgstr "长时间未登录"
|
msgstr "长时间未登录"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:44
|
#: accounts/models/automations/check_account.py:43
|
||||||
msgid "New found"
|
msgid "New found"
|
||||||
msgstr "新发现"
|
msgstr "新发现"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:45
|
#: accounts/models/automations/check_account.py:44
|
||||||
msgid "Groups change"
|
msgid "Groups change"
|
||||||
msgstr "组变更"
|
msgstr "组变更"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:46
|
#: accounts/models/automations/check_account.py:45
|
||||||
msgid "Sudo changed"
|
msgid "Sudo changed"
|
||||||
msgstr "Sudo变更"
|
msgstr "Sudo变更"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:47
|
#: accounts/models/automations/check_account.py:46
|
||||||
msgid "Authorized keys changed"
|
msgid "Authorized keys changed"
|
||||||
msgstr "密钥变更"
|
msgstr "密钥变更"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:48
|
#: accounts/models/automations/check_account.py:47
|
||||||
msgid "Account delete"
|
|
||||||
msgstr "账号已删除"
|
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:49
|
|
||||||
#: authentication/errors/const.py:23
|
#: authentication/errors/const.py:23
|
||||||
msgid "Password expired"
|
msgid "Password expired"
|
||||||
msgstr "密码已过期"
|
msgstr "密码已过期"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:50
|
#: accounts/models/automations/check_account.py:48
|
||||||
msgid "Long time no change"
|
msgid "Long time no change"
|
||||||
msgstr "长时间未改密"
|
msgstr "长时间未改密"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:52
|
#: accounts/models/automations/check_account.py:50
|
||||||
#: accounts/templates/accounts/check_account_report.html:77
|
#: accounts/templates/accounts/check_account_report.html:33
|
||||||
#: accounts/templates/accounts/check_account_report.html:100
|
|
||||||
msgid "Weak password"
|
msgid "Weak password"
|
||||||
msgstr "弱密码"
|
msgstr "弱密码"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:53
|
#: accounts/models/automations/check_account.py:51
|
||||||
|
#: accounts/templates/accounts/check_account_report.html:38
|
||||||
msgid "Leaked password"
|
msgid "Leaked password"
|
||||||
msgstr "密码泄露"
|
msgstr "密码泄露"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:54
|
#: accounts/models/automations/check_account.py:52
|
||||||
|
#: accounts/templates/accounts/check_account_report.html:43
|
||||||
msgid "Repeated password"
|
msgid "Repeated password"
|
||||||
msgstr "重复密码"
|
msgstr "重复密码"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:55
|
#: accounts/models/automations/check_account.py:59
|
||||||
msgid "Password error"
|
|
||||||
msgstr "密码错误"
|
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:56
|
|
||||||
msgid "No admin account"
|
|
||||||
msgstr "没有管理账号"
|
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:57
|
|
||||||
msgid "Others"
|
|
||||||
msgstr "其它"
|
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:64
|
|
||||||
#: accounts/models/automations/gather_account.py:17 accounts/models/base.py:64
|
#: accounts/models/automations/gather_account.py:17 accounts/models/base.py:64
|
||||||
#: accounts/serializers/account/virtual.py:21
|
#: accounts/serializers/account/virtual.py:21
|
||||||
#: accounts/templates/accounts/change_secret_report.html:80
|
#: accounts/templates/accounts/change_secret_report.html:80
|
||||||
#: accounts/templates/accounts/change_secret_report.html:120
|
#: accounts/templates/accounts/change_secret_report.html:120
|
||||||
#: accounts/templates/accounts/check_account_report.html:90
|
|
||||||
#: accounts/templates/accounts/gather_account_report.html:78
|
#: accounts/templates/accounts/gather_account_report.html:78
|
||||||
#: accounts/templates/accounts/gather_account_report.html:118
|
#: accounts/templates/accounts/gather_account_report.html:118
|
||||||
#: accounts/templates/accounts/push_account_report.html:79
|
#: accounts/templates/accounts/push_account_report.html:79
|
||||||
|
@ -885,57 +868,57 @@ msgstr "其它"
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "用户名"
|
msgstr "用户名"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:73
|
#: accounts/models/automations/check_account.py:68
|
||||||
#: accounts/serializers/automations/check_account.py:36
|
#: accounts/serializers/automations/check_account.py:36
|
||||||
msgid "Risk"
|
msgid "Risk"
|
||||||
msgstr "风险"
|
msgstr "风险"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:76
|
#: accounts/models/automations/check_account.py:71
|
||||||
#: accounts/models/automations/gather_account.py:26 audits/models.py:151
|
#: accounts/models/automations/gather_account.py:26 audits/models.py:151
|
||||||
msgid "Detail"
|
msgid "Detail"
|
||||||
msgstr "详情"
|
msgstr "详情"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:79
|
#: accounts/models/automations/check_account.py:74
|
||||||
msgid "Account risk"
|
msgid "Account risk"
|
||||||
msgstr "账号风险"
|
msgstr "账号风险"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:120
|
#: accounts/models/automations/check_account.py:115
|
||||||
msgid "Slug"
|
msgid "Slug"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:131
|
#: accounts/models/automations/check_account.py:126
|
||||||
msgid "Check the discovered accounts"
|
msgid "Check the discovered accounts"
|
||||||
msgstr "检查发现的帐户"
|
msgstr "检查发现的帐户"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:133
|
#: accounts/models/automations/check_account.py:128
|
||||||
msgid ""
|
msgid ""
|
||||||
"Perform checks and analyses based on automatically discovered account "
|
"Perform checks and analyses based on automatically discovered account "
|
||||||
"results, including user groups, public keys, sudoers, and other information"
|
"results, including user groups, public keys, sudoers, and other information"
|
||||||
msgstr "根据自动发现的账户结果进行检查分析,包括用户组、公钥、sudoers等信息"
|
msgstr "根据自动发现的账户结果进行检查分析,包括用户组、公钥、sudoers等信息"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:140
|
#: accounts/models/automations/check_account.py:135
|
||||||
msgid "Check the strength of your account and password"
|
msgid "Check the strength of your account and password"
|
||||||
msgstr "检查您的账号和密码的强度"
|
msgstr "检查您的账号和密码的强度"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:142
|
#: accounts/models/automations/check_account.py:137
|
||||||
msgid ""
|
msgid ""
|
||||||
"Perform checks and analyses based on the security of account passwords, "
|
"Perform checks and analyses based on the security of account passwords, "
|
||||||
"including password strength, leakage, etc."
|
"including password strength, leakage, etc."
|
||||||
msgstr "针对账号密码的安全性进行检查分析,包括密码强度、泄露情况等。"
|
msgstr "针对账号密码的安全性进行检查分析,包括密码强度、泄露情况等。"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:149
|
#: accounts/models/automations/check_account.py:144
|
||||||
msgid "Check if the account and password are repeated"
|
msgid "Check if the account and password are repeated"
|
||||||
msgstr "检查账号和密码是否重复"
|
msgstr "检查账号和密码是否重复"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:150
|
#: accounts/models/automations/check_account.py:145
|
||||||
msgid "Check if the account is the same as other accounts"
|
msgid "Check if the account is the same as other accounts"
|
||||||
msgstr "检查该账号是否与其他账户相同"
|
msgstr "检查该账号是否与其他账户相同"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:155
|
#: accounts/models/automations/check_account.py:150
|
||||||
msgid "Check whether the account password is a common password"
|
msgid "Check whether the account password is a common password"
|
||||||
msgstr "检查账号密码是否为常用密码"
|
msgstr "检查账号密码是否为常用密码"
|
||||||
|
|
||||||
#: accounts/models/automations/check_account.py:156
|
#: accounts/models/automations/check_account.py:151
|
||||||
msgid "Check whether the account password is a commonly leaked password"
|
msgid "Check whether the account password is a commonly leaked password"
|
||||||
msgstr "检查账号密码是否为常见泄露密码"
|
msgstr "检查账号密码是否为常见泄露密码"
|
||||||
|
|
||||||
|
@ -1220,7 +1203,7 @@ msgstr "已修改"
|
||||||
#: assets/serializers/platform.py:181 assets/serializers/platform.py:213
|
#: assets/serializers/platform.py:181 assets/serializers/platform.py:213
|
||||||
#: authentication/api/connection_token.py:463 ops/models/base.py:17
|
#: authentication/api/connection_token.py:463 ops/models/base.py:17
|
||||||
#: ops/models/job.py:155 ops/serializers/job.py:21
|
#: ops/models/job.py:155 ops/serializers/job.py:21
|
||||||
#: perms/serializers/permission.py:46
|
#: perms/serializers/permission.py:57
|
||||||
#: terminal/templates/terminal/_msg_command_execute_alert.html:16
|
#: terminal/templates/terminal/_msg_command_execute_alert.html:16
|
||||||
#: xpack/plugins/cloud/manager.py:93
|
#: xpack/plugins/cloud/manager.py:93
|
||||||
msgid "Assets"
|
msgid "Assets"
|
||||||
|
@ -1311,7 +1294,6 @@ msgstr "备注"
|
||||||
|
|
||||||
#: accounts/serializers/account/service.py:28
|
#: accounts/serializers/account/service.py:28
|
||||||
#: accounts/templates/accounts/backup_account_report.html:28
|
#: accounts/templates/accounts/backup_account_report.html:28
|
||||||
#: accounts/templates/accounts/check_account_report.html:28
|
|
||||||
#: assets/serializers/asset/common.py:151
|
#: assets/serializers/asset/common.py:151
|
||||||
msgid "Accounts amount"
|
msgid "Accounts amount"
|
||||||
msgstr "账号数量"
|
msgstr "账号数量"
|
||||||
|
@ -1637,7 +1619,7 @@ msgstr "结束日期"
|
||||||
#: accounts/templates/accounts/backup_account_report.html:33
|
#: accounts/templates/accounts/backup_account_report.html:33
|
||||||
#: accounts/templates/accounts/change_secret_failed_info.html:3
|
#: accounts/templates/accounts/change_secret_failed_info.html:3
|
||||||
#: accounts/templates/accounts/change_secret_report.html:48
|
#: accounts/templates/accounts/change_secret_report.html:48
|
||||||
#: accounts/templates/accounts/check_account_report.html:48
|
#: accounts/templates/accounts/check_account_report.html:53
|
||||||
#: accounts/templates/accounts/gather_account_report.html:46
|
#: accounts/templates/accounts/gather_account_report.html:46
|
||||||
#: accounts/templates/accounts/push_account_report.html:47
|
#: accounts/templates/accounts/push_account_report.html:47
|
||||||
#: terminal/serializers/task.py:10
|
#: terminal/serializers/task.py:10
|
||||||
|
@ -1646,7 +1628,7 @@ msgstr "任务名称"
|
||||||
|
|
||||||
#: accounts/templates/accounts/backup_account_report.html:38
|
#: accounts/templates/accounts/backup_account_report.html:38
|
||||||
#: accounts/templates/accounts/change_secret_report.html:53
|
#: accounts/templates/accounts/change_secret_report.html:53
|
||||||
#: accounts/templates/accounts/check_account_report.html:53
|
#: accounts/templates/accounts/check_account_report.html:58
|
||||||
#: accounts/templates/accounts/gather_account_report.html:51
|
#: accounts/templates/accounts/gather_account_report.html:51
|
||||||
#: accounts/templates/accounts/push_account_report.html:52
|
#: accounts/templates/accounts/push_account_report.html:52
|
||||||
msgid "Time using"
|
msgid "Time using"
|
||||||
|
@ -1674,26 +1656,23 @@ msgstr "你好! 以下是资产改密或推送账号失败的情况。 请及
|
||||||
#: accounts/templates/accounts/gather_account_report.html:26
|
#: accounts/templates/accounts/gather_account_report.html:26
|
||||||
#: accounts/templates/accounts/push_account_report.html:27
|
#: accounts/templates/accounts/push_account_report.html:27
|
||||||
#: assets/serializers/domain.py:24 assets/serializers/platform.py:182
|
#: assets/serializers/domain.py:24 assets/serializers/platform.py:182
|
||||||
#: orgs/serializers.py:13 perms/serializers/permission.py:50
|
#: orgs/serializers.py:13 perms/serializers/permission.py:61
|
||||||
msgid "Assets amount"
|
msgid "Assets amount"
|
||||||
msgstr "资产数量"
|
msgstr "资产数量"
|
||||||
|
|
||||||
#: accounts/templates/accounts/change_secret_report.html:33
|
#: accounts/templates/accounts/change_secret_report.html:33
|
||||||
#: accounts/templates/accounts/check_account_report.html:33
|
|
||||||
#: accounts/templates/accounts/gather_account_report.html:31
|
#: accounts/templates/accounts/gather_account_report.html:31
|
||||||
#: accounts/templates/accounts/push_account_report.html:32
|
#: accounts/templates/accounts/push_account_report.html:32
|
||||||
msgid "Asset success count"
|
msgid "Asset success count"
|
||||||
msgstr "资产成功数"
|
msgstr "资产成功数"
|
||||||
|
|
||||||
#: accounts/templates/accounts/change_secret_report.html:38
|
#: accounts/templates/accounts/change_secret_report.html:38
|
||||||
#: accounts/templates/accounts/check_account_report.html:38
|
|
||||||
#: accounts/templates/accounts/gather_account_report.html:36
|
#: accounts/templates/accounts/gather_account_report.html:36
|
||||||
#: accounts/templates/accounts/push_account_report.html:37
|
#: accounts/templates/accounts/push_account_report.html:37
|
||||||
msgid "Asset failed count"
|
msgid "Asset failed count"
|
||||||
msgstr "资产失败数"
|
msgstr "资产失败数"
|
||||||
|
|
||||||
#: accounts/templates/accounts/change_secret_report.html:43
|
#: accounts/templates/accounts/change_secret_report.html:43
|
||||||
#: accounts/templates/accounts/check_account_report.html:43
|
|
||||||
#: accounts/templates/accounts/gather_account_report.html:41
|
#: accounts/templates/accounts/gather_account_report.html:41
|
||||||
#: accounts/templates/accounts/push_account_report.html:42
|
#: accounts/templates/accounts/push_account_report.html:42
|
||||||
msgid "Asset not support count"
|
msgid "Asset not support count"
|
||||||
|
@ -1706,7 +1685,6 @@ msgstr "成功帐号"
|
||||||
|
|
||||||
#: accounts/templates/accounts/change_secret_report.html:78
|
#: accounts/templates/accounts/change_secret_report.html:78
|
||||||
#: accounts/templates/accounts/change_secret_report.html:118
|
#: accounts/templates/accounts/change_secret_report.html:118
|
||||||
#: accounts/templates/accounts/check_account_report.html:88
|
|
||||||
#: accounts/templates/accounts/push_account_report.html:77
|
#: accounts/templates/accounts/push_account_report.html:77
|
||||||
#: accounts/templates/accounts/push_account_report.html:117
|
#: accounts/templates/accounts/push_account_report.html:117
|
||||||
#: audits/handler.py:128
|
#: audits/handler.py:128
|
||||||
|
@ -1727,23 +1705,15 @@ msgstr "未找到新帐户"
|
||||||
msgid "Failed accounts"
|
msgid "Failed accounts"
|
||||||
msgstr "失败账号"
|
msgstr "失败账号"
|
||||||
|
|
||||||
#: accounts/templates/accounts/check_account_report.html:58
|
#: accounts/templates/accounts/check_account_report.html:28
|
||||||
msgid "Ok count"
|
#: terminal/const.py:47 terminal/const.py:86
|
||||||
msgstr "成功数"
|
#: users/templates/users/reset_password.html:54
|
||||||
|
msgid "Normal"
|
||||||
|
msgstr "正常"
|
||||||
|
|
||||||
#: accounts/templates/accounts/check_account_report.html:63
|
#: accounts/templates/accounts/check_account_report.html:48
|
||||||
msgid "No password count"
|
msgid "No secret"
|
||||||
msgstr "无密码数"
|
msgstr "无密码"
|
||||||
|
|
||||||
#: accounts/templates/accounts/check_account_report.html:91
|
|
||||||
#: assets/models/automations/base.py:156 ops/models/base.py:51
|
|
||||||
#: ops/models/job.py:235 xpack/plugins/cloud/models.py:225
|
|
||||||
msgid "Result"
|
|
||||||
msgstr "结果"
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/check_account_report.html:106
|
|
||||||
msgid "No weak password"
|
|
||||||
msgstr "无弱密码"
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/gather_account_report.html:65
|
#: accounts/templates/accounts/gather_account_report.html:65
|
||||||
msgid "New found accounts"
|
msgid "New found accounts"
|
||||||
|
@ -1814,7 +1784,7 @@ msgstr "优先级可选范围为 1-100 (数值越小越优先)"
|
||||||
#: assets/models/cmd_filter.py:81 audits/models.py:93 audits/serializers.py:108
|
#: assets/models/cmd_filter.py:81 audits/models.py:93 audits/serializers.py:108
|
||||||
#: authentication/serializers/connect_token_secret.py:119
|
#: authentication/serializers/connect_token_secret.py:119
|
||||||
#: authentication/templates/authentication/_access_key_modal.html:34
|
#: authentication/templates/authentication/_access_key_modal.html:34
|
||||||
#: perms/serializers/permission.py:52 perms/serializers/permission.py:74
|
#: perms/serializers/permission.py:63 perms/serializers/permission.py:85
|
||||||
#: tickets/serializers/ticket/ticket.py:21
|
#: tickets/serializers/ticket/ticket.py:21
|
||||||
msgid "Action"
|
msgid "Action"
|
||||||
msgstr "动作"
|
msgstr "动作"
|
||||||
|
@ -1824,7 +1794,7 @@ msgstr "动作"
|
||||||
msgid "Reviewers"
|
msgid "Reviewers"
|
||||||
msgstr "审批人"
|
msgstr "审批人"
|
||||||
|
|
||||||
#: acls/models/base.py:81 perms/serializers/permission.py:42
|
#: acls/models/base.py:81 perms/serializers/permission.py:53
|
||||||
#: tickets/models/flow.py:23 users/models/preference.py:16
|
#: tickets/models/flow.py:23 users/models/preference.py:16
|
||||||
#: users/serializers/group.py:21 users/serializers/user.py:420
|
#: users/serializers/group.py:21 users/serializers/user.py:420
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
|
@ -2436,7 +2406,7 @@ msgstr "网域"
|
||||||
|
|
||||||
#: assets/models/asset/common.py:176 assets/serializers/asset/common.py:174
|
#: assets/models/asset/common.py:176 assets/serializers/asset/common.py:174
|
||||||
#: assets/serializers/automations/base.py:21 ops/serializers/job.py:22
|
#: assets/serializers/automations/base.py:21 ops/serializers/job.py:22
|
||||||
#: perms/serializers/permission.py:47
|
#: perms/serializers/permission.py:58
|
||||||
msgid "Nodes"
|
msgid "Nodes"
|
||||||
msgstr "节点"
|
msgstr "节点"
|
||||||
|
|
||||||
|
@ -2538,6 +2508,11 @@ msgstr "触发模式"
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "汇总"
|
msgstr "汇总"
|
||||||
|
|
||||||
|
#: assets/models/automations/base.py:156 ops/models/base.py:51
|
||||||
|
#: ops/models/job.py:235 xpack/plugins/cloud/models.py:225
|
||||||
|
msgid "Result"
|
||||||
|
msgstr "结果"
|
||||||
|
|
||||||
#: assets/models/automations/gather_facts.py:15
|
#: assets/models/automations/gather_facts.py:15
|
||||||
msgid "Gather asset facts"
|
msgid "Gather asset facts"
|
||||||
msgstr "收集资产信息"
|
msgstr "收集资产信息"
|
||||||
|
@ -2833,7 +2808,7 @@ msgstr "节点路径,格式为 [\"/组织/节点名\"], 如果节点不存在
|
||||||
#: assets/serializers/asset/common.py:147 assets/serializers/platform.py:174
|
#: assets/serializers/asset/common.py:147 assets/serializers/platform.py:174
|
||||||
#: authentication/serializers/connect_token_secret.py:30
|
#: authentication/serializers/connect_token_secret.py:30
|
||||||
#: authentication/serializers/connect_token_secret.py:75
|
#: authentication/serializers/connect_token_secret.py:75
|
||||||
#: perms/models/asset_permission.py:76 perms/serializers/permission.py:56
|
#: perms/models/asset_permission.py:76 perms/serializers/permission.py:67
|
||||||
#: perms/serializers/user_permission.py:74 xpack/plugins/cloud/models.py:390
|
#: perms/serializers/user_permission.py:74 xpack/plugins/cloud/models.py:390
|
||||||
#: xpack/plugins/cloud/serializers/task.py:36
|
#: xpack/plugins/cloud/serializers/task.py:36
|
||||||
msgid "Protocols"
|
msgid "Protocols"
|
||||||
|
@ -4218,7 +4193,7 @@ msgid "Actions"
|
||||||
msgstr "动作"
|
msgstr "动作"
|
||||||
|
|
||||||
#: authentication/serializers/connection_token.py:43
|
#: authentication/serializers/connection_token.py:43
|
||||||
#: perms/serializers/permission.py:54 perms/serializers/permission.py:75
|
#: perms/serializers/permission.py:65 perms/serializers/permission.py:86
|
||||||
#: users/serializers/user.py:127 users/serializers/user.py:261
|
#: users/serializers/user.py:127 users/serializers/user.py:261
|
||||||
msgid "Is expired"
|
msgid "Is expired"
|
||||||
msgstr "已过期"
|
msgstr "已过期"
|
||||||
|
@ -4256,8 +4231,8 @@ msgstr "创建完成后请下载私钥,每个私钥只有一次下载机会"
|
||||||
msgid "Not a valid ssh public key"
|
msgid "Not a valid ssh public key"
|
||||||
msgstr "SSH密钥不合法"
|
msgstr "SSH密钥不合法"
|
||||||
|
|
||||||
#: authentication/serializers/token.py:92 perms/serializers/permission.py:53
|
#: authentication/serializers/token.py:92 perms/serializers/permission.py:64
|
||||||
#: perms/serializers/permission.py:76 users/serializers/user.py:128
|
#: perms/serializers/permission.py:87 users/serializers/user.py:128
|
||||||
#: users/serializers/user.py:258
|
#: users/serializers/user.py:258
|
||||||
msgid "Is valid"
|
msgid "Is valid"
|
||||||
msgstr "是否有效"
|
msgstr "是否有效"
|
||||||
|
@ -5035,7 +5010,7 @@ msgstr "错误的数据类型,应该是列表"
|
||||||
msgid "Invalid choice: {}"
|
msgid "Invalid choice: {}"
|
||||||
msgstr "无效选项: {}"
|
msgstr "无效选项: {}"
|
||||||
|
|
||||||
#: common/serializers/mixin.py:452 terminal/models/applet/applet.py:45
|
#: common/serializers/mixin.py:451 terminal/models/applet/applet.py:45
|
||||||
#: terminal/models/virtualapp/virtualapp.py:29
|
#: terminal/models/virtualapp/virtualapp.py:29
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "标签"
|
msgstr "标签"
|
||||||
|
@ -5876,7 +5851,7 @@ msgstr "可以查看所有加入的组织"
|
||||||
msgid "Can not delete virtual org"
|
msgid "Can not delete virtual org"
|
||||||
msgstr "无法删除虚拟组织"
|
msgstr "无法删除虚拟组织"
|
||||||
|
|
||||||
#: orgs/serializers.py:10 perms/serializers/permission.py:48
|
#: orgs/serializers.py:10 perms/serializers/permission.py:59
|
||||||
#: rbac/serializers/role.py:27 users/serializers/group.py:54
|
#: rbac/serializers/role.py:27 users/serializers/group.py:54
|
||||||
msgid "Users amount"
|
msgid "Users amount"
|
||||||
msgstr "用户数量"
|
msgstr "用户数量"
|
||||||
|
@ -5885,7 +5860,7 @@ msgstr "用户数量"
|
||||||
msgid "User groups amount"
|
msgid "User groups amount"
|
||||||
msgstr "用户组数量"
|
msgstr "用户组数量"
|
||||||
|
|
||||||
#: orgs/serializers.py:14 perms/serializers/permission.py:51
|
#: orgs/serializers.py:14 perms/serializers/permission.py:62
|
||||||
msgid "Nodes amount"
|
msgid "Nodes amount"
|
||||||
msgstr "节点数量"
|
msgstr "节点数量"
|
||||||
|
|
||||||
|
@ -6002,7 +5977,7 @@ msgstr "资产授权规则将要过期"
|
||||||
msgid "asset permissions of organization {}"
|
msgid "asset permissions of organization {}"
|
||||||
msgstr "组织 ({}) 的资产授权"
|
msgstr "组织 ({}) 的资产授权"
|
||||||
|
|
||||||
#: perms/serializers/permission.py:32
|
#: perms/serializers/permission.py:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"Accounts, format [\"@virtual\", \"root\", \"%template_id\"], virtual "
|
"Accounts, format [\"@virtual\", \"root\", \"%template_id\"], virtual "
|
||||||
"choices: @ALL, @SPEC, @USER, @ANON, @INPUT"
|
"choices: @ALL, @SPEC, @USER, @ANON, @INPUT"
|
||||||
|
@ -6010,11 +5985,11 @@ msgstr ""
|
||||||
"账号,格式 [\"@虚拟账号\", \"root\", \"%模版id\"], 虚拟选项: @ALL, @SPEC, "
|
"账号,格式 [\"@虚拟账号\", \"root\", \"%模版id\"], 虚拟选项: @ALL, @SPEC, "
|
||||||
"@USER, @ANON, @INPUT"
|
"@USER, @ANON, @INPUT"
|
||||||
|
|
||||||
#: perms/serializers/permission.py:38
|
#: perms/serializers/permission.py:49
|
||||||
msgid "Protocols, format [\"ssh\", \"rdp\", \"vnc\"] or [\"all\"]"
|
msgid "Protocols, format [\"ssh\", \"rdp\", \"vnc\"] or [\"all\"]"
|
||||||
msgstr "协议,格式为 [\"ssh\", \"rdp\", \"vnc\"] 或 [\"all\"]"
|
msgstr "协议,格式为 [\"ssh\", \"rdp\", \"vnc\"] 或 [\"all\"]"
|
||||||
|
|
||||||
#: perms/serializers/permission.py:49
|
#: perms/serializers/permission.py:60
|
||||||
msgid "Groups amount"
|
msgid "Groups amount"
|
||||||
msgstr "用户组数量"
|
msgstr "用户组数量"
|
||||||
|
|
||||||
|
@ -7219,7 +7194,7 @@ msgstr "作业中心命令黑名单"
|
||||||
msgid "Command blacklist in Adhoc"
|
msgid "Command blacklist in Adhoc"
|
||||||
msgstr "作业中心命令黑名单"
|
msgstr "作业中心命令黑名单"
|
||||||
|
|
||||||
#: settings/serializers/feature.py:197
|
#: settings/serializers/feature.py:198
|
||||||
#: terminal/models/virtualapp/provider.py:17
|
#: terminal/models/virtualapp/provider.py:17
|
||||||
#: terminal/models/virtualapp/virtualapp.py:36
|
#: terminal/models/virtualapp/virtualapp.py:36
|
||||||
#: terminal/models/virtualapp/virtualapp.py:97
|
#: terminal/models/virtualapp/virtualapp.py:97
|
||||||
|
@ -7227,11 +7202,11 @@ msgstr "作业中心命令黑名单"
|
||||||
msgid "Virtual app"
|
msgid "Virtual app"
|
||||||
msgstr "虚拟应用"
|
msgstr "虚拟应用"
|
||||||
|
|
||||||
#: settings/serializers/feature.py:200
|
#: settings/serializers/feature.py:201
|
||||||
msgid "Virtual App"
|
msgid "Virtual App"
|
||||||
msgstr "虚拟应用"
|
msgstr "虚拟应用"
|
||||||
|
|
||||||
#: settings/serializers/feature.py:202
|
#: settings/serializers/feature.py:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Virtual applications, you can use the Linux operating system as an "
|
"Virtual applications, you can use the Linux operating system as an "
|
||||||
"application server in remote applications."
|
"application server in remote applications."
|
||||||
|
@ -8166,11 +8141,6 @@ msgstr "严重"
|
||||||
msgid "High"
|
msgid "High"
|
||||||
msgstr "较高"
|
msgstr "较高"
|
||||||
|
|
||||||
#: terminal/const.py:47 terminal/const.py:86
|
|
||||||
#: users/templates/users/reset_password.html:54
|
|
||||||
msgid "Normal"
|
|
||||||
msgstr "正常"
|
|
||||||
|
|
||||||
#: terminal/const.py:48
|
#: terminal/const.py:48
|
||||||
msgid "Offline"
|
msgid "Offline"
|
||||||
msgstr "离线"
|
msgstr "离线"
|
||||||
|
@ -8454,23 +8424,23 @@ msgstr "命令数量"
|
||||||
msgid "Error reason"
|
msgid "Error reason"
|
||||||
msgstr "错误原因"
|
msgstr "错误原因"
|
||||||
|
|
||||||
#: terminal/models/session/session.py:315
|
#: terminal/models/session/session.py:319
|
||||||
msgid "Session record"
|
msgid "Session record"
|
||||||
msgstr "会话记录"
|
msgstr "会话记录"
|
||||||
|
|
||||||
#: terminal/models/session/session.py:317
|
#: terminal/models/session/session.py:321
|
||||||
msgid "Can monitor session"
|
msgid "Can monitor session"
|
||||||
msgstr "可以监控会话"
|
msgstr "可以监控会话"
|
||||||
|
|
||||||
#: terminal/models/session/session.py:318
|
#: terminal/models/session/session.py:322
|
||||||
msgid "Can share session"
|
msgid "Can share session"
|
||||||
msgstr "可以分享会话"
|
msgstr "可以分享会话"
|
||||||
|
|
||||||
#: terminal/models/session/session.py:319
|
#: terminal/models/session/session.py:323
|
||||||
msgid "Can terminate session"
|
msgid "Can terminate session"
|
||||||
msgstr "可以终断会话"
|
msgstr "可以终断会话"
|
||||||
|
|
||||||
#: terminal/models/session/session.py:320
|
#: terminal/models/session/session.py:324
|
||||||
msgid "Can validate session action perm"
|
msgid "Can validate session action perm"
|
||||||
msgstr "可以验证会话动作权限"
|
msgstr "可以验证会话动作权限"
|
||||||
|
|
||||||
|
@ -11015,8 +10985,7 @@ msgstr "实例个数"
|
||||||
msgid ""
|
msgid ""
|
||||||
"Execute this task when manually or scheduled cloud synchronization tasks are "
|
"Execute this task when manually or scheduled cloud synchronization tasks are "
|
||||||
"performed"
|
"performed"
|
||||||
msgstr ""
|
msgstr "手动,定时执行云同步任务时执行该任务"
|
||||||
"手动,定时执行云同步任务时执行该任务"
|
|
||||||
|
|
||||||
#: xpack/plugins/cloud/tasks.py:50
|
#: xpack/plugins/cloud/tasks.py:50
|
||||||
msgid "Period clean sync instance task execution"
|
msgid "Period clean sync instance task execution"
|
||||||
|
@ -11087,6 +11056,27 @@ msgstr "许可证导入成功"
|
||||||
msgid "Invalid license"
|
msgid "Invalid license"
|
||||||
msgstr "许可证无效"
|
msgstr "许可证无效"
|
||||||
|
|
||||||
|
#~ msgid "Account delete"
|
||||||
|
#~ msgstr "账号已删除"
|
||||||
|
|
||||||
|
#~ msgid "Password error"
|
||||||
|
#~ msgstr "密码错误"
|
||||||
|
|
||||||
|
#~ msgid "No admin account"
|
||||||
|
#~ msgstr "没有管理账号"
|
||||||
|
|
||||||
|
#~ msgid "Others"
|
||||||
|
#~ msgstr "其它"
|
||||||
|
|
||||||
|
#~ msgid "Ok count"
|
||||||
|
#~ msgstr "成功数"
|
||||||
|
|
||||||
|
#~ msgid "No password count"
|
||||||
|
#~ msgstr "无密码数"
|
||||||
|
|
||||||
|
#~ msgid "No weak password"
|
||||||
|
#~ msgstr "无弱密码"
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "The following is a summary of account backup tasks, please review and "
|
#~ "The following is a summary of account backup tasks, please review and "
|
||||||
#~ "handle them"
|
#~ "handle them"
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1517,5 +1517,6 @@
|
||||||
"IgnoreFail": "Ignore fail",
|
"IgnoreFail": "Ignore fail",
|
||||||
"RiskDetectionDetail": "Risk detection detail",
|
"RiskDetectionDetail": "Risk detection detail",
|
||||||
"ApplicationDetail": "Application detail",
|
"ApplicationDetail": "Application detail",
|
||||||
|
"Organization": "Organization",
|
||||||
"IpGroupHelpText": "* indicates match all. for example: 192.168.10.1, 192.168.1.0/24, 10.1.1.1-10.1.1.20, 2001:db8:2de::e13, 2001:db8:1a:1110::/64"
|
"IpGroupHelpText": "* indicates match all. for example: 192.168.10.1, 192.168.1.0/24, 10.1.1.1-10.1.1.20, 2001:db8:2de::e13, 2001:db8:1a:1110::/64"
|
||||||
}
|
}
|
|
@ -1517,5 +1517,6 @@
|
||||||
"IgnoreFail": "忽略失败",
|
"IgnoreFail": "忽略失败",
|
||||||
"RiskDetectionDetail": "风险检测详情",
|
"RiskDetectionDetail": "风险检测详情",
|
||||||
"ApplicationDetail": "应用详情",
|
"ApplicationDetail": "应用详情",
|
||||||
|
"Organization": "组织",
|
||||||
"IpGroupHelpText": "* 表示匹配所有。例如: 192.168.10.1, 192.168.1.0/24, 10.1.1.1-10.1.1.20, 2001:db8:2de::e13, 2001:db8:1a:1110::/64"
|
"IpGroupHelpText": "* 表示匹配所有。例如: 192.168.10.1, 192.168.1.0/24, 10.1.1.1-10.1.1.20, 2001:db8:2de::e13, 2001:db8:1a:1110::/64"
|
||||||
}
|
}
|
Loading…
Reference in New Issue