mirror of https://github.com/jumpserver/jumpserver
perf: modify translate
parent
e40c66c7ed
commit
11f6a029de
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1326,5 +1326,6 @@
|
|||
"ObjectStorage": "Object Storage",
|
||||
"ApplyLoginAsset": "Login asset",
|
||||
"ApplyLoginUser": "Login user",
|
||||
"ApplyLoginAccount": "Login account"
|
||||
"ApplyLoginAccount": "Login account",
|
||||
"General": "General"
|
||||
}
|
||||
|
|
|
@ -1338,5 +1338,6 @@
|
|||
"ApplyLoginAsset": "登録資産の申請",
|
||||
"ApplyLoginUser": "ログインユーザーの申請",
|
||||
"ApplyLoginAccount": "ログインアカウントの申請",
|
||||
"Navigation": "ナビゲーション"
|
||||
"Navigation": "ナビゲーション",
|
||||
"General": "基本"
|
||||
}
|
||||
|
|
|
@ -1322,5 +1322,6 @@
|
|||
"ApplyLoginUser": "登录用户",
|
||||
"ApplyLoginAccount": "登录账号",
|
||||
"IsSyncAccountLabel": "同步到资产",
|
||||
"Navigation": "导航"
|
||||
"Navigation": "导航",
|
||||
"General": "基本"
|
||||
}
|
||||
|
|
|
@ -1962,5 +1962,6 @@
|
|||
"wildcardsAllowed": "允許的通配符",
|
||||
"ApplyLoginAsset": "登入資產",
|
||||
"ApplyLoginUser": "登入用戶",
|
||||
"ApplyLoginAccount": "登入帳號"
|
||||
"ApplyLoginAccount": "登入帳號",
|
||||
"General": "基本"
|
||||
}
|
|
@ -16,7 +16,7 @@ class BaseAnsibleJob(PeriodTaskModelMixin, JMSOrgBaseModel):
|
|||
owner = models.ForeignKey('users.User', verbose_name=_("Creator"), on_delete=models.SET_NULL, null=True)
|
||||
assets = models.ManyToManyField('assets.Asset', verbose_name=_("Assets"))
|
||||
account = models.CharField(max_length=128, default='root', verbose_name=_('Account'))
|
||||
account_policy = models.CharField(max_length=128, default='root', verbose_name=_('Run as policy'))
|
||||
account_policy = models.CharField(max_length=128, default='root', verbose_name=_('Account policy'))
|
||||
last_execution = models.ForeignKey('BaseAnsibleExecution', verbose_name=_("Last execution"),
|
||||
on_delete=models.SET_NULL, null=True)
|
||||
date_last_run = models.DateTimeField(null=True, verbose_name=_('Date last run'))
|
||||
|
|
Loading…
Reference in New Issue