perf: 翻译 (#11913)

Co-authored-by: feng <1304903146@qq.com>
pull/11914/head
fit2bot 2023-10-19 16:24:25 +08:00 committed by GitHub
parent db2331521d
commit db9ee71ab3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 505 additions and 460 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d7366743ab156daec72625cd241f76420c551c6a48330266a57e3d0b808d4164
size 162675
oid sha256:67b3061a082605d0862007d0deb03dba0477b3eac85d99faf5755ee44e7453eb
size 163187

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4be95c6d05beb08730dd3cee943e7f84aa94e8e711a41e2fce5b0aebf84e831b
size 133014
oid sha256:9f331dc156c4e51b6a30249da9d342093c79da1cebe926474b7942a5d3b6a931
size 133436

File diff suppressed because it is too large Load Diff

View File

@ -18,3 +18,6 @@ class ApplyCommandTicket(Ticket):
'acls.CommandFilterACL', on_delete=models.SET_NULL,
null=True, verbose_name=_('Command filter acl')
)
class Meta:
verbose_name = _('Apply Command Ticket')

View File

@ -22,3 +22,6 @@ class ApplyLoginAssetTicket(Ticket):
return
self.connection_token.is_active = True
self.connection_token.save()
class Meta:
verbose_name = _('Apply Login Asset Ticket')

View File

@ -10,3 +10,6 @@ class ApplyLoginTicket(Ticket):
apply_login_ip = models.GenericIPAddressField(verbose_name=_('Login IP'), null=True)
apply_login_city = models.CharField(max_length=64, verbose_name=_('Login city'), null=True)
apply_login_datetime = models.DateTimeField(verbose_name=_('Login datetime'), null=True)
class Meta:
verbose_name = _('Apply Login Ticket')