Compare commits
46 Commits
v4.10.8-lt
...
master
| Author | SHA1 | Date |
|---|---|---|
|
|
e617245b26 | |
|
|
d309d11a8f | |
|
|
4771693a56 | |
|
|
cefc820ac1 | |
|
|
d007afdb43 | |
|
|
e8921a43be | |
|
|
a9b44103d4 | |
|
|
4abf2bded6 | |
|
|
54693089a0 | |
|
|
0b859dd502 | |
|
|
3fb27f969a | |
|
|
45627a1d92 | |
|
|
245e2dab66 | |
|
|
8f0a41b1a8 | |
|
|
1a9e56c520 | |
|
|
67c2f471b4 | |
|
|
b04f96f5f2 | |
|
|
30f03b7d89 | |
|
|
28a97d0b5a | |
|
|
3410686690 | |
|
|
6860e2327f | |
|
|
20253e760c | |
|
|
a63cfde8d2 | |
|
|
92e250e03b | |
|
|
098f0950cb | |
|
|
39b0830a6b | |
|
|
2e847bc2bc | |
|
|
f82f31876a | |
|
|
cde182c015 | |
|
|
b990cdf561 | |
|
|
c9a062823d | |
|
|
643ba4fc15 | |
|
|
d16a55bbe2 | |
|
|
ae31554729 | |
|
|
53b47980a2 | |
|
|
d31b5ee570 | |
|
|
65aea1ea36 | |
|
|
5abb5c5d5a | |
|
|
93e41a5004 | |
|
|
95f51bbe48 | |
|
|
0184d292ec | |
|
|
23a6d320c7 | |
|
|
b16304c48a | |
|
|
7cd1e4d3a0 | |
|
|
64a9987c3f | |
|
|
18bfe312fa |
|
|
@ -0,0 +1,46 @@
|
|||
name: Build and Push Python Base Image
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
tag:
|
||||
description: 'Tag to build'
|
||||
required: true
|
||||
default: '3.11-slim-bullseye-v1'
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
build-and-push:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.ref }}
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
with:
|
||||
image: tonistiigi/binfmt:qemu-v7.0.0-28
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Extract repository name
|
||||
id: repo
|
||||
run: echo "REPO=$(basename ${{ github.repository }})" >> $GITHUB_ENV
|
||||
|
||||
- name: Build and push multi-arch image
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
file: Dockerfile-python
|
||||
tags: jumpserver/core-base:python-${{ inputs.tag }}
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
FROM jumpserver/core-base:20250827_025554 AS stage-build
|
||||
FROM jumpserver/core-base:20251014_095903 AS stage-build
|
||||
|
||||
ARG VERSION
|
||||
|
||||
|
|
@ -19,7 +19,7 @@ RUN set -ex \
|
|||
&& python manage.py compilemessages
|
||||
|
||||
|
||||
FROM python:3.11-slim-bullseye
|
||||
FROM jumpserver/core-base:python-3.11-slim-bullseye-v1
|
||||
ENV LANG=en_US.UTF-8 \
|
||||
PATH=/opt/py3/bin:$PATH
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM python:3.11-slim-bullseye
|
||||
FROM jumpserver/core-base:python-3.11-slim-bullseye-v1
|
||||
ARG TARGETARCH
|
||||
COPY --from=ghcr.io/astral-sh/uv:0.6.14 /uv /uvx /usr/local/bin/
|
||||
# Install APT dependencies
|
||||
|
|
@ -28,7 +28,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=core \
|
|||
&& echo "no" | dpkg-reconfigure dash
|
||||
|
||||
# Install bin tools
|
||||
ARG CHECK_VERSION=v1.0.4
|
||||
ARG CHECK_VERSION=v1.0.5
|
||||
RUN set -ex \
|
||||
&& wget https://github.com/jumpserver-dev/healthcheck/releases/download/${CHECK_VERSION}/check-${CHECK_VERSION}-linux-${TARGETARCH}.tar.gz \
|
||||
&& tar -xf check-${CHECK_VERSION}-linux-${TARGETARCH}.tar.gz \
|
||||
|
|
|
|||
|
|
@ -0,0 +1,11 @@
|
|||
FROM python:3.11-slim-bullseye
|
||||
ARG TARGETARCH
|
||||
# Install APT dependencies
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
RUN set -eux; \
|
||||
apt-get update; \
|
||||
apt-get -y --no-install-recommends upgrade; \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# upgrade pip and setuptools
|
||||
RUN pip install --no-cache-dir --upgrade pip setuptools wheel
|
||||
|
|
@ -11,6 +11,7 @@ from accounts.const import ChangeSecretRecordStatusChoice
|
|||
from accounts.filters import AccountFilterSet, NodeFilterBackend
|
||||
from accounts.mixins import AccountRecordViewLogMixin
|
||||
from accounts.models import Account, ChangeSecretRecord
|
||||
from assets.const.gpt import create_or_update_chatx_resources
|
||||
from assets.models import Asset, Node
|
||||
from authentication.permissions import UserConfirmation, ConfirmType
|
||||
from common.api.mixin import ExtraFilterFieldsMixin
|
||||
|
|
@ -18,6 +19,7 @@ from common.drf.filters import AttrRulesFilterBackend
|
|||
from common.permissions import IsValidUser
|
||||
from common.utils import lazyproperty, get_logger
|
||||
from orgs.mixins.api import OrgBulkModelViewSet
|
||||
from orgs.utils import tmp_to_root_org
|
||||
from rbac.permissions import RBACPermission
|
||||
|
||||
logger = get_logger(__file__)
|
||||
|
|
@ -43,6 +45,7 @@ class AccountViewSet(OrgBulkModelViewSet):
|
|||
'clear_secret': 'accounts.change_account',
|
||||
'move_to_assets': 'accounts.delete_account',
|
||||
'copy_to_assets': 'accounts.add_account',
|
||||
'chat': 'accounts.view_account',
|
||||
}
|
||||
export_as_zip = True
|
||||
|
||||
|
|
@ -152,6 +155,13 @@ class AccountViewSet(OrgBulkModelViewSet):
|
|||
def copy_to_assets(self, request, *args, **kwargs):
|
||||
return self._copy_or_move_to_assets(request, move=False)
|
||||
|
||||
@action(methods=['get'], detail=False, url_path='chat')
|
||||
def chat(self, request, *args, **kwargs):
|
||||
with tmp_to_root_org():
|
||||
__, account = create_or_update_chatx_resources()
|
||||
serializer = self.get_serializer(account)
|
||||
return Response(serializer.data)
|
||||
|
||||
|
||||
class AccountSecretsViewSet(AccountRecordViewLogMixin, AccountViewSet):
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
uid: "{{ params.uid | int if params.uid | length > 0 else omit }}"
|
||||
shell: "{{ params.shell if params.shell | length > 0 else omit }}"
|
||||
home: "{{ params.home if params.home | length > 0 else '/home/' + account.username }}"
|
||||
group: "{{ params.group if params.group | length > 0 else omit }}"
|
||||
groups: "{{ params.groups if params.groups | length > 0 else omit }}"
|
||||
append: "{{ true if params.groups | length > 0 else false }}"
|
||||
expires: -1
|
||||
|
|
|
|||
|
|
@ -28,6 +28,12 @@ params:
|
|||
default: ''
|
||||
help_text: "{{ 'Params home help text' | trans }}"
|
||||
|
||||
- name: group
|
||||
type: str
|
||||
label: "{{ 'Params group label' | trans }}"
|
||||
default: ''
|
||||
help_text: "{{ 'Params group help text' | trans }}"
|
||||
|
||||
- name: groups
|
||||
type: str
|
||||
label: "{{ 'Params groups label' | trans }}"
|
||||
|
|
@ -61,6 +67,11 @@ i18n:
|
|||
ja: 'デフォルトのホームディレクトリ /home/{アカウントユーザ名}'
|
||||
en: 'Default home directory /home/{account username}'
|
||||
|
||||
Params group help text:
|
||||
zh: '请输入用户组(名字或数字),只能输入一个(需填写已存在的用户组)'
|
||||
ja: 'ユーザー グループ (名前または番号) を入力してください。入力できるのは 1 つだけです (既存のユーザー グループを入力する必要があります)'
|
||||
en: 'Please enter a user group (name or number), only one can be entered (must fill in an existing user group)'
|
||||
|
||||
Params groups help text:
|
||||
zh: '请输入用户组,多个用户组使用逗号分隔(需填写已存在的用户组)'
|
||||
ja: 'グループを入力してください。複数のグループはコンマで区切ってください(既存のグループを入力してください)'
|
||||
|
|
@ -86,6 +97,11 @@ i18n:
|
|||
ja: 'グループ'
|
||||
en: 'Groups'
|
||||
|
||||
Params group label:
|
||||
zh: '主组'
|
||||
ja: '主组'
|
||||
en: 'Main group'
|
||||
|
||||
Params uid label:
|
||||
zh: '用户ID'
|
||||
ja: 'ユーザーID'
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
uid: "{{ params.uid | int if params.uid | length > 0 else omit }}"
|
||||
shell: "{{ params.shell if params.shell | length > 0 else omit }}"
|
||||
home: "{{ params.home if params.home | length > 0 else '/home/' + account.username }}"
|
||||
group: "{{ params.group if params.group | length > 0 else omit }}"
|
||||
groups: "{{ params.groups if params.groups | length > 0 else omit }}"
|
||||
append: "{{ true if params.groups | length > 0 else false }}"
|
||||
expires: -1
|
||||
|
|
|
|||
|
|
@ -30,6 +30,12 @@ params:
|
|||
default: ''
|
||||
help_text: "{{ 'Params home help text' | trans }}"
|
||||
|
||||
- name: group
|
||||
type: str
|
||||
label: "{{ 'Params group label' | trans }}"
|
||||
default: ''
|
||||
help_text: "{{ 'Params group help text' | trans }}"
|
||||
|
||||
- name: groups
|
||||
type: str
|
||||
label: "{{ 'Params groups label' | trans }}"
|
||||
|
|
@ -63,6 +69,11 @@ i18n:
|
|||
ja: 'デフォルトのホームディレクトリ /home/{アカウントユーザ名}'
|
||||
en: 'Default home directory /home/{account username}'
|
||||
|
||||
Params group help text:
|
||||
zh: '请输入用户组(名字或数字),只能输入一个(需填写已存在的用户组)'
|
||||
ja: 'ユーザー グループ (名前または番号) を入力してください。入力できるのは 1 つだけです (既存のユーザー グループを入力する必要があります)'
|
||||
en: 'Please enter a user group (name or number), only one can be entered (must fill in an existing user group)'
|
||||
|
||||
Params groups help text:
|
||||
zh: '请输入用户组,多个用户组使用逗号分隔(需填写已存在的用户组)'
|
||||
ja: 'グループを入力してください。複数のグループはコンマで区切ってください(既存のグループを入力してください)'
|
||||
|
|
@ -88,6 +99,11 @@ i18n:
|
|||
ja: 'グループ'
|
||||
en: 'Groups'
|
||||
|
||||
Params group label:
|
||||
zh: '主组'
|
||||
ja: '主组'
|
||||
en: 'Main group'
|
||||
|
||||
Params uid label:
|
||||
zh: '用户ID'
|
||||
ja: 'ユーザーID'
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
uid: "{{ params.uid | int if params.uid | length > 0 else omit }}"
|
||||
shell: "{{ params.shell if params.shell | length > 0 else omit }}"
|
||||
home: "{{ params.home if params.home | length > 0 else '/home/' + account.username }}"
|
||||
group: "{{ params.group if params.group | length > 0 else omit }}"
|
||||
groups: "{{ params.groups if params.groups | length > 0 else omit }}"
|
||||
append: "{{ true if params.groups | length > 0 else false }}"
|
||||
expires: -1
|
||||
|
|
|
|||
|
|
@ -28,6 +28,12 @@ params:
|
|||
default: ''
|
||||
help_text: "{{ 'Params home help text' | trans }}"
|
||||
|
||||
- name: group
|
||||
type: str
|
||||
label: "{{ 'Params group label' | trans }}"
|
||||
default: ''
|
||||
help_text: "{{ 'Params group help text' | trans }}"
|
||||
|
||||
- name: groups
|
||||
type: str
|
||||
label: "{{ 'Params groups label' | trans }}"
|
||||
|
|
@ -61,6 +67,11 @@ i18n:
|
|||
ja: 'デフォルトのホームディレクトリ /home/{アカウントユーザ名}'
|
||||
en: 'Default home directory /home/{account username}'
|
||||
|
||||
Params group help text:
|
||||
zh: '请输入用户组(名字或数字),只能输入一个(需填写已存在的用户组)'
|
||||
ja: 'ユーザー グループ (名前または番号) を入力してください。入力できるのは 1 つだけです (既存のユーザー グループを入力する必要があります)'
|
||||
en: 'Please enter a user group (name or number), only one can be entered (must fill in an existing user group)'
|
||||
|
||||
Params groups help text:
|
||||
zh: '请输入用户组,多个用户组使用逗号分隔(需填写已存在的用户组)'
|
||||
ja: 'グループを入力してください。複数のグループはコンマで区切ってください(既存のグループを入力してください)'
|
||||
|
|
@ -86,6 +97,11 @@ i18n:
|
|||
ja: 'グループ'
|
||||
en: 'Groups'
|
||||
|
||||
Params group label:
|
||||
zh: '主组'
|
||||
ja: '主组'
|
||||
en: 'Main group'
|
||||
|
||||
Params uid label:
|
||||
zh: '用户ID'
|
||||
ja: 'ユーザーID'
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
uid: "{{ params.uid | int if params.uid | length > 0 else omit }}"
|
||||
shell: "{{ params.shell if params.shell | length > 0 else omit }}"
|
||||
home: "{{ params.home if params.home | length > 0 else '/home/' + account.username }}"
|
||||
group: "{{ params.group if params.group | length > 0 else omit }}"
|
||||
groups: "{{ params.groups if params.groups | length > 0 else omit }}"
|
||||
append: "{{ true if params.groups | length > 0 else false }}"
|
||||
expires: -1
|
||||
|
|
|
|||
|
|
@ -30,6 +30,12 @@ params:
|
|||
default: ''
|
||||
help_text: "{{ 'Params home help text' | trans }}"
|
||||
|
||||
- name: group
|
||||
type: str
|
||||
label: "{{ 'Params group label' | trans }}"
|
||||
default: ''
|
||||
help_text: "{{ 'Params group help text' | trans }}"
|
||||
|
||||
- name: groups
|
||||
type: str
|
||||
label: "{{ 'Params groups label' | trans }}"
|
||||
|
|
@ -63,6 +69,11 @@ i18n:
|
|||
ja: 'デフォルトのホームディレクトリ /home/{アカウントユーザ名}'
|
||||
en: 'Default home directory /home/{account username}'
|
||||
|
||||
Params group help text:
|
||||
zh: '请输入用户组(名字或数字),只能输入一个(需填写已存在的用户组)'
|
||||
ja: 'ユーザー グループ (名前または番号) を入力してください。入力できるのは 1 つだけです (既存のユーザー グループを入力する必要があります)'
|
||||
en: 'Please enter a user group (name or number), only one can be entered (must fill in an existing user group)'
|
||||
|
||||
Params groups help text:
|
||||
zh: '请输入用户组,多个用户组使用逗号分隔(需填写已存在的用户组)'
|
||||
ja: 'グループを入力してください。複数のグループはコンマで区切ってください(既存のグループを入力してください)'
|
||||
|
|
@ -84,9 +95,14 @@ i18n:
|
|||
en: 'Home'
|
||||
|
||||
Params groups label:
|
||||
zh: '用户组'
|
||||
ja: 'グループ'
|
||||
en: 'Groups'
|
||||
zh: '附加组'
|
||||
ja: '追加グループ'
|
||||
en: 'Additional Group'
|
||||
|
||||
Params group label:
|
||||
zh: '主组'
|
||||
ja: '主组'
|
||||
en: 'Main group'
|
||||
|
||||
Params uid label:
|
||||
zh: '用户ID'
|
||||
|
|
|
|||
|
|
@ -3,3 +3,4 @@ from .connect_method import *
|
|||
from .login_acl import *
|
||||
from .login_asset_acl import *
|
||||
from .login_asset_check import *
|
||||
from .data_masking import *
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
from orgs.mixins.api import OrgBulkModelViewSet
|
||||
|
||||
from .common import ACLUserFilterMixin
|
||||
from ..models import DataMaskingRule
|
||||
from .. import serializers
|
||||
|
||||
__all__ = ['DataMaskingRuleViewSet']
|
||||
|
||||
|
||||
class DataMaskingRuleFilter(ACLUserFilterMixin):
|
||||
class Meta:
|
||||
model = DataMaskingRule
|
||||
fields = ('name',)
|
||||
|
||||
|
||||
class DataMaskingRuleViewSet(OrgBulkModelViewSet):
|
||||
model = DataMaskingRule
|
||||
filterset_class = DataMaskingRuleFilter
|
||||
search_fields = ('name',)
|
||||
serializer_class = serializers.DataMaskingRuleSerializer
|
||||
|
|
@ -8,7 +8,7 @@ __all__ = ['LoginAssetACLViewSet']
|
|||
class LoginAssetACLFilter(ACLUserAssetFilterMixin):
|
||||
class Meta:
|
||||
model = models.LoginAssetACL
|
||||
fields = ['name', ]
|
||||
fields = ['name', 'action']
|
||||
|
||||
|
||||
class LoginAssetACLViewSet(OrgBulkModelViewSet):
|
||||
|
|
|
|||
|
|
@ -0,0 +1,45 @@
|
|||
# Generated by Django 4.1.13 on 2025-10-07 16:16
|
||||
|
||||
import common.db.fields
|
||||
from django.conf import settings
|
||||
import django.core.validators
|
||||
from django.db import migrations, models
|
||||
import uuid
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||
('acls', '0002_auto_20210926_1047'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='DataMaskingRule',
|
||||
fields=[
|
||||
('created_by', models.CharField(blank=True, max_length=128, null=True, verbose_name='Created by')),
|
||||
('updated_by', models.CharField(blank=True, max_length=128, null=True, verbose_name='Updated by')),
|
||||
('date_created', models.DateTimeField(auto_now_add=True, null=True, verbose_name='Date created')),
|
||||
('date_updated', models.DateTimeField(auto_now=True, verbose_name='Date updated')),
|
||||
('comment', models.TextField(blank=True, default='', verbose_name='Comment')),
|
||||
('id', models.UUIDField(default=uuid.uuid4, primary_key=True, serialize=False)),
|
||||
('org_id', models.CharField(blank=True, db_index=True, default='', max_length=36, verbose_name='Organization')),
|
||||
('priority', models.IntegerField(default=50, help_text='1-100, the lower the value will be match first', validators=[django.core.validators.MinValueValidator(1), django.core.validators.MaxValueValidator(100)], verbose_name='Priority')),
|
||||
('action', models.CharField(default='reject', max_length=64, verbose_name='Action')),
|
||||
('is_active', models.BooleanField(default=True, verbose_name='Active')),
|
||||
('users', common.db.fields.JSONManyToManyField(default=dict, to='users.User', verbose_name='Users')),
|
||||
('assets', common.db.fields.JSONManyToManyField(default=dict, to='assets.Asset', verbose_name='Assets')),
|
||||
('accounts', models.JSONField(default=list, verbose_name='Accounts')),
|
||||
('name', models.CharField(max_length=128, verbose_name='Name')),
|
||||
('fields_pattern', models.CharField(default='password', max_length=128, verbose_name='Fields pattern')),
|
||||
('masking_method', models.CharField(choices=[('fixed_char', 'Fixed Character Replacement'), ('hide_middle', 'Hide Middle Characters'), ('keep_prefix', 'Keep Prefix Only'), ('keep_suffix', 'Keep Suffix Only')], default='fixed_char', max_length=32, verbose_name='Masking Method')),
|
||||
('mask_pattern', models.CharField(blank=True, default='######', max_length=128, null=True, verbose_name='Mask Pattern')),
|
||||
('reviewers', models.ManyToManyField(blank=True, to=settings.AUTH_USER_MODEL, verbose_name='Reviewers')),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Data Masking Rule',
|
||||
'unique_together': {('org_id', 'name')},
|
||||
},
|
||||
),
|
||||
]
|
||||
|
|
@ -2,3 +2,4 @@ from .command_acl import *
|
|||
from .connect_method import *
|
||||
from .login_acl import *
|
||||
from .login_asset_acl import *
|
||||
from .data_masking import *
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
from django.db import models
|
||||
|
||||
from acls.models import UserAssetAccountBaseACL
|
||||
from common.utils import get_logger
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
logger = get_logger(__file__)
|
||||
|
||||
__all__ = ['MaskingMethod', 'DataMaskingRule']
|
||||
|
||||
|
||||
class MaskingMethod(models.TextChoices):
|
||||
fixed_char = "fixed_char", _("Fixed Character Replacement") # 固定字符替换
|
||||
hide_middle = "hide_middle", _("Hide Middle Characters") # 隐藏中间几位
|
||||
keep_prefix = "keep_prefix", _("Keep Prefix Only") # 只保留前缀
|
||||
keep_suffix = "keep_suffix", _("Keep Suffix Only") # 只保留后缀
|
||||
|
||||
|
||||
class DataMaskingRule(UserAssetAccountBaseACL):
|
||||
name = models.CharField(max_length=128, verbose_name=_("Name"))
|
||||
fields_pattern = models.CharField(max_length=128, default='password', verbose_name=_("Fields pattern"))
|
||||
|
||||
masking_method = models.CharField(
|
||||
max_length=32,
|
||||
choices=MaskingMethod.choices,
|
||||
default=MaskingMethod.fixed_char,
|
||||
verbose_name=_("Masking Method"),
|
||||
)
|
||||
mask_pattern = models.CharField(
|
||||
max_length=128,
|
||||
verbose_name=_("Mask Pattern"),
|
||||
default="######",
|
||||
blank=True,
|
||||
null=True,
|
||||
)
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
class Meta:
|
||||
unique_together = [('org_id', 'name')]
|
||||
verbose_name = _("Data Masking Rule")
|
||||
|
|
@ -101,7 +101,8 @@ class AssetLoginReminderMsg(UserMessage):
|
|||
'ip': self.ip,
|
||||
'time': self.time,
|
||||
'login_from': self.login_from,
|
||||
'recipient': self.user,
|
||||
'recipient_name': self.user.name,
|
||||
'recipient_username': self.user.username,
|
||||
'username': self.login_user.username,
|
||||
'name': self.login_user.name,
|
||||
'asset': str(self.asset),
|
||||
|
|
|
|||
|
|
@ -3,3 +3,4 @@ from .connect_method import *
|
|||
from .login_acl import *
|
||||
from .login_asset_acl import *
|
||||
from .login_asset_check import *
|
||||
from .data_masking import *
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
from acls.models import MaskingMethod, DataMaskingRule
|
||||
from common.serializers.fields import LabeledChoiceField
|
||||
from common.serializers.mixin import CommonBulkModelSerializer
|
||||
from orgs.mixins.serializers import BulkOrgResourceModelSerializer
|
||||
from .base import BaseUserAssetAccountACLSerializer as BaseSerializer
|
||||
|
||||
__all__ = ['DataMaskingRuleSerializer']
|
||||
|
||||
|
||||
class DataMaskingRuleSerializer(BaseSerializer, BulkOrgResourceModelSerializer):
|
||||
masking_method = LabeledChoiceField(
|
||||
choices=MaskingMethod.choices, default=MaskingMethod.fixed_char, label=_('Masking Method')
|
||||
)
|
||||
|
||||
class Meta(BaseSerializer.Meta):
|
||||
model = DataMaskingRule
|
||||
fields = BaseSerializer.Meta.fields + ['fields_pattern', 'masking_method', 'mask_pattern']
|
||||
|
|
@ -11,6 +11,7 @@ router.register(r'login-asset-acls', api.LoginAssetACLViewSet, 'login-asset-acl'
|
|||
router.register(r'command-filter-acls', api.CommandFilterACLViewSet, 'command-filter-acl')
|
||||
router.register(r'command-groups', api.CommandGroupViewSet, 'command-group')
|
||||
router.register(r'connect-method-acls', api.ConnectMethodACLViewSet, 'connect-method-acl')
|
||||
router.register(r'data-masking-rules', api.DataMaskingRuleViewSet, 'data-masking-rule')
|
||||
|
||||
urlpatterns = [
|
||||
path('login-asset/check/', api.LoginAssetCheckAPI.as_view(), name='login-asset-check'),
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
from orgs.models import Organization
|
||||
from .base import BaseType
|
||||
|
||||
|
||||
|
|
@ -52,3 +53,41 @@ class GPTTypes(BaseType):
|
|||
return [
|
||||
cls.CHATGPT,
|
||||
]
|
||||
|
||||
|
||||
CHATX_NAME = 'ChatX'
|
||||
|
||||
|
||||
def create_or_update_chatx_resources(chatx_name=CHATX_NAME, org_id=Organization.SYSTEM_ID):
|
||||
from django.apps import apps
|
||||
|
||||
platform_model = apps.get_model('assets', 'Platform')
|
||||
asset_model = apps.get_model('assets', 'Asset')
|
||||
account_model = apps.get_model('accounts', 'Account')
|
||||
|
||||
platform, __ = platform_model.objects.get_or_create(
|
||||
name=chatx_name,
|
||||
defaults={
|
||||
'internal': True,
|
||||
'type': chatx_name,
|
||||
'category': 'ai',
|
||||
}
|
||||
)
|
||||
asset, __ = asset_model.objects.get_or_create(
|
||||
address=chatx_name,
|
||||
defaults={
|
||||
'name': chatx_name,
|
||||
'platform': platform,
|
||||
'org_id': org_id
|
||||
}
|
||||
)
|
||||
|
||||
account, __ = account_model.objects.get_or_create(
|
||||
username=chatx_name,
|
||||
defaults={
|
||||
'name': chatx_name,
|
||||
'asset': asset,
|
||||
'org_id': org_id
|
||||
}
|
||||
)
|
||||
return asset, account
|
||||
|
|
|
|||
|
|
@ -59,7 +59,10 @@ class DatabaseSerializer(AssetSerializer):
|
|||
if not platform:
|
||||
return
|
||||
|
||||
if platform.type in ['mysql', 'mariadb']:
|
||||
if platform.type in [
|
||||
'mysql', 'mariadb', 'oracle', 'sqlserver',
|
||||
'db2', 'dameng', 'clickhouse', 'redis'
|
||||
]:
|
||||
db_field.required = False
|
||||
db_field.allow_blank = True
|
||||
db_field.allow_null = True
|
||||
|
|
|
|||
|
|
@ -26,4 +26,13 @@ class WebSerializer(AssetSerializer):
|
|||
'submit_selector': {
|
||||
'default': 'id=login_button',
|
||||
},
|
||||
'script': {
|
||||
'default': [],
|
||||
}
|
||||
}
|
||||
|
||||
def to_internal_value(self, data):
|
||||
data = data.copy()
|
||||
if data.get('script') in ("", None):
|
||||
data.pop('script', None)
|
||||
return super().to_internal_value(data)
|
||||
|
|
|
|||
|
|
@ -69,6 +69,8 @@ class RDPFileClientProtocolURLMixin:
|
|||
'autoreconnection enabled:i': '1',
|
||||
'bookmarktype:i': '3',
|
||||
'use redirection server name:i': '0',
|
||||
'bitmapcachepersistenable:i': '0',
|
||||
'bitmapcachesize:i': '1500',
|
||||
}
|
||||
|
||||
# copy from
|
||||
|
|
@ -76,7 +78,6 @@ class RDPFileClientProtocolURLMixin:
|
|||
rdp_low_speed_broadband_option = {
|
||||
"connection type:i": 2,
|
||||
"disable wallpaper:i": 1,
|
||||
"bitmapcachepersistenable:i": 1,
|
||||
"disable full window drag:i": 1,
|
||||
"disable menu anims:i": 1,
|
||||
"allow font smoothing:i": 0,
|
||||
|
|
@ -87,7 +88,6 @@ class RDPFileClientProtocolURLMixin:
|
|||
rdp_high_speed_broadband_option = {
|
||||
"connection type:i": 4,
|
||||
"disable wallpaper:i": 0,
|
||||
"bitmapcachepersistenable:i": 1,
|
||||
"disable full window drag:i": 1,
|
||||
"disable menu anims:i": 0,
|
||||
"allow font smoothing:i": 0,
|
||||
|
|
@ -375,7 +375,7 @@ class ConnectionTokenViewSet(AuthFaceMixin, ExtraActionApiMixin, RootOrgViewMixi
|
|||
for name in default_name_opts.keys():
|
||||
value = preferences.get(name, default_name_opts[name])
|
||||
connect_options[name] = value
|
||||
connect_options['lang'] = getattr(user, 'lang', settings.LANGUAGE_CODE)
|
||||
connect_options['lang'] = getattr(user, 'lang') or settings.LANGUAGE_CODE
|
||||
data['connect_options'] = connect_options
|
||||
|
||||
@staticmethod
|
||||
|
|
|
|||
|
|
@ -67,8 +67,9 @@ class UserResetPasswordSendCodeApi(CreateAPIView):
|
|||
|
||||
code = random_string(settings.SMS_CODE_LENGTH, lower=False, upper=False)
|
||||
subject = '%s: %s' % (get_login_title(), _('Forgot password'))
|
||||
tip = _('The validity period of the verification code is {} minute').format(settings.VERIFY_CODE_TTL // 60)
|
||||
context = {
|
||||
'user': user, 'title': subject, 'code': code,
|
||||
'user': user, 'title': subject, 'code': code, 'tip': tip,
|
||||
}
|
||||
message = render_to_string('authentication/_msg_reset_password_code.html', context)
|
||||
content = {'subject': subject, 'message': message}
|
||||
|
|
|
|||
|
|
@ -25,7 +25,10 @@ class JMSBaseAuthBackend:
|
|||
"""
|
||||
# 三方用户认证完成后,在后续的 get_user 获取逻辑中,也应该需要检查用户是否有效
|
||||
is_valid = getattr(user, 'is_valid', None)
|
||||
return is_valid or is_valid is None
|
||||
if not is_valid:
|
||||
logger.info("User %s is not valid", getattr(user, "username", "<unknown>"))
|
||||
return False
|
||||
return True
|
||||
|
||||
# allow user to authenticate
|
||||
def username_allow_authenticate(self, username):
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ class BaseMFA(abc.ABC):
|
|||
if not ok:
|
||||
return False, msg
|
||||
|
||||
cache.set(cache_key, code, 60)
|
||||
cache.set(cache_key, code, settings.VERIFY_CODE_TTL)
|
||||
return True, msg
|
||||
|
||||
def is_authenticated(self):
|
||||
|
|
|
|||
|
|
@ -39,13 +39,14 @@ class MFAEmail(BaseMFA):
|
|||
def send_challenge(self):
|
||||
code = random_string(settings.SMS_CODE_LENGTH, lower=False, upper=False)
|
||||
subject = '%s: %s' % (get_login_title(), _('MFA code'))
|
||||
tip = _('The validity period of the verification code is {} minute').format(settings.VERIFY_CODE_TTL // 60)
|
||||
context = {
|
||||
'user': self.user, 'title': subject, 'code': code,
|
||||
'user': self.user, 'title': subject, 'code': code, 'tip': tip,
|
||||
}
|
||||
message = render_to_string('authentication/_msg_mfa_email_code.html', context)
|
||||
content = {'subject': subject, 'message': message}
|
||||
sender_util = SendAndVerifyCodeUtil(
|
||||
self.user.email, code=code, backend=self.name, timeout=60, **content
|
||||
self.user.email, code=code, backend=self.name, **content
|
||||
)
|
||||
sender_util.gen_and_send_async()
|
||||
|
||||
|
|
|
|||
|
|
@ -338,6 +338,18 @@ class ConnectionToken(JMSOrgBaseModel):
|
|||
acls = CommandFilterACL.filter_queryset(**kwargs).valid()
|
||||
return acls
|
||||
|
||||
@lazyproperty
|
||||
def data_masking_rules(self):
|
||||
from acls.models import DataMaskingRule
|
||||
kwargs = {
|
||||
'user': self.user,
|
||||
'asset': self.asset,
|
||||
'account': self.account_object,
|
||||
}
|
||||
with tmp_to_org(self.asset.org_id):
|
||||
rules = DataMaskingRule.filter_queryset(**kwargs).valid()
|
||||
return rules
|
||||
|
||||
|
||||
class SuperConnectionToken(ConnectionToken):
|
||||
_type = ConnectionTokenType.SUPER
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ from rest_framework import serializers
|
|||
|
||||
from accounts.const import SecretType
|
||||
from accounts.models import Account
|
||||
from acls.models import CommandGroup, CommandFilterACL
|
||||
from acls.models import CommandGroup, CommandFilterACL, DataMaskingRule
|
||||
from assets.models import Asset, Platform, Gateway, Zone
|
||||
from assets.serializers.asset import AssetProtocolsSerializer
|
||||
from assets.serializers.platform import PlatformSerializer
|
||||
|
|
@ -83,6 +83,14 @@ class _ConnectionTokenGatewaySerializer(serializers.ModelSerializer):
|
|||
]
|
||||
|
||||
|
||||
class _ConnectionTokenDataMaskingRuleSerializer(serializers.ModelSerializer):
|
||||
class Meta:
|
||||
model = DataMaskingRule
|
||||
fields = ['id', 'name', 'fields_pattern',
|
||||
'masking_method', 'mask_pattern',
|
||||
'is_active', 'priority']
|
||||
|
||||
|
||||
class _ConnectionTokenCommandFilterACLSerializer(serializers.ModelSerializer):
|
||||
command_groups = ObjectRelatedField(
|
||||
many=True, required=False, queryset=CommandGroup.objects,
|
||||
|
|
@ -105,7 +113,7 @@ class _ConnectionTokenPlatformSerializer(PlatformSerializer):
|
|||
class Meta(PlatformSerializer.Meta):
|
||||
model = Platform
|
||||
fields = [field for field in PlatformSerializer.Meta.fields
|
||||
if field not in PlatformSerializer.Meta.fields_m2m]
|
||||
if field not in PlatformSerializer.Meta.fields_m2m]
|
||||
|
||||
def get_field_names(self, declared_fields, info):
|
||||
names = super().get_field_names(declared_fields, info)
|
||||
|
|
@ -139,6 +147,7 @@ class ConnectionTokenSecretSerializer(OrgResourceModelSerializerMixin):
|
|||
platform = _ConnectionTokenPlatformSerializer(read_only=True)
|
||||
zone = ObjectRelatedField(queryset=Zone.objects, required=False, label=_('Domain'))
|
||||
command_filter_acls = _ConnectionTokenCommandFilterACLSerializer(read_only=True, many=True)
|
||||
data_masking_rules = _ConnectionTokenDataMaskingRuleSerializer(read_only=True, many=True)
|
||||
expire_now = serializers.BooleanField(label=_('Expired now'), write_only=True, default=True)
|
||||
connect_method = _ConnectTokenConnectMethodSerializer(read_only=True, source='connect_method_object')
|
||||
connect_options = serializers.JSONField(read_only=True)
|
||||
|
|
@ -149,7 +158,7 @@ class ConnectionTokenSecretSerializer(OrgResourceModelSerializerMixin):
|
|||
model = ConnectionToken
|
||||
fields = [
|
||||
'id', 'value', 'user', 'asset', 'account',
|
||||
'platform', 'command_filter_acls', 'protocol',
|
||||
'platform', 'command_filter_acls', 'data_masking_rules', 'protocol',
|
||||
'zone', 'gateway', 'actions', 'expire_at',
|
||||
'from_ticket', 'expire_now', 'connect_method',
|
||||
'connect_options', 'face_monitor_token'
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
<td style="height: 50px;">{% trans 'MFA code' %}: <span style="font-weight: bold;">{{ code }}</span></td>
|
||||
</tr>
|
||||
<tr style="border: 1px solid #eee">
|
||||
<td style="height: 30px;">{% trans 'The validity period of the verification code is one minute' %}</td>
|
||||
<td style="height: 30px;">{{ tip }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<td style="height: 30px;"> {% trans 'Copy the verification code to the Reset Password page to reset the password.' %} </td>
|
||||
</tr>
|
||||
<tr style="border: 1px solid #eee">
|
||||
<td style="height: 30px;">{% trans 'The validity period of the verification code is one minute' %}</td>
|
||||
<td style="height: 30px;">{{ tip }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-17 15:02+0800\n"
|
||||
"POT-Creation-Date: 2025-10-16 14:10+0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -18,7 +18,7 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: accounts/api/account/account.py:138
|
||||
#: accounts/api/account/account.py:141
|
||||
#: accounts/serializers/account/account.py:181
|
||||
#: accounts/serializers/account/account.py:362
|
||||
msgid "Account already exists"
|
||||
|
|
@ -207,7 +207,7 @@ msgstr ""
|
|||
msgid "Skip"
|
||||
msgstr ""
|
||||
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:291
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:292
|
||||
#: templates/_csv_import_export.html:18 templates/_csv_update_modal.html:6
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
|
@ -573,17 +573,18 @@ msgstr ""
|
|||
#: accounts/serializers/account/service.py:29
|
||||
#: accounts/serializers/account/virtual.py:20 acls/models/base.py:35
|
||||
#: acls/models/base.py:96 acls/models/command_acl.py:21
|
||||
#: acls/notifications.py:69 acls/serializers/base.py:35
|
||||
#: assets/models/asset/common.py:100 assets/models/asset/common.py:166
|
||||
#: assets/models/cmd_filter.py:21 assets/models/label.py:18
|
||||
#: assets/models/platform.py:15 assets/models/platform.py:94
|
||||
#: assets/models/zone.py:19 assets/serializers/asset/common.py:174
|
||||
#: assets/serializers/platform.py:158 assets/serializers/platform.py:283
|
||||
#: acls/models/data_masking.py:20 acls/notifications.py:69
|
||||
#: acls/serializers/base.py:35 assets/models/asset/common.py:100
|
||||
#: assets/models/asset/common.py:166 assets/models/cmd_filter.py:21
|
||||
#: assets/models/label.py:18 assets/models/platform.py:15
|
||||
#: assets/models/platform.py:94 assets/models/zone.py:19
|
||||
#: assets/serializers/asset/common.py:174 assets/serializers/platform.py:158
|
||||
#: assets/serializers/platform.py:283
|
||||
#: authentication/backends/passkey/models.py:10
|
||||
#: authentication/models/ssh_key.py:12 authentication/notifications.py:17
|
||||
#: authentication/notifications.py:56
|
||||
#: authentication/serializers/connect_token_secret.py:117
|
||||
#: authentication/serializers/connect_token_secret.py:174 labels/models.py:11
|
||||
#: authentication/serializers/connect_token_secret.py:125
|
||||
#: authentication/serializers/connect_token_secret.py:183 labels/models.py:11
|
||||
#: ops/mixin.py:32 ops/models/adhoc.py:19 ops/models/celery.py:15
|
||||
#: ops/models/celery.py:81 ops/models/job.py:147 ops/models/playbook.py:28
|
||||
#: ops/models/variable.py:9 ops/serializers/job.py:20
|
||||
|
|
@ -771,7 +772,7 @@ msgstr ""
|
|||
#: assets/models/automations/base.py:137
|
||||
#: assets/serializers/automations/base.py:47 audits/models.py:224
|
||||
#: audits/serializers.py:77 ops/models/base.py:49 ops/models/job.py:233
|
||||
#: terminal/models/applet/applet.py:374 terminal/models/applet/host.py:140
|
||||
#: terminal/models/applet/applet.py:382 terminal/models/applet/host.py:140
|
||||
#: terminal/models/component/status.py:30
|
||||
#: terminal/models/virtualapp/virtualapp.py:99
|
||||
#: terminal/serializers/applet.py:19 terminal/serializers/applet_host.py:163
|
||||
|
|
@ -1028,7 +1029,7 @@ msgstr ""
|
|||
|
||||
#: accounts/models/base.py:69 assets/models/automations/base.py:28
|
||||
#: assets/models/cmd_filter.py:39 assets/models/label.py:22
|
||||
#: authentication/serializers/connect_token_secret.py:121
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: terminal/models/applet/applet.py:41
|
||||
#: terminal/models/virtualapp/virtualapp.py:23 users/serializers/user.py:257
|
||||
msgid "Is active"
|
||||
|
|
@ -1196,7 +1197,7 @@ msgstr ""
|
|||
#: assets/serializers/platform.py:160 assets/serializers/platform.py:172
|
||||
#: audits/serializers.py:76 audits/serializers.py:196
|
||||
#: authentication/models/connection_token.py:67
|
||||
#: authentication/serializers/connect_token_secret.py:130 ops/models/job.py:155
|
||||
#: authentication/serializers/connect_token_secret.py:138 ops/models/job.py:155
|
||||
#: perms/serializers/user_permission.py:28 terminal/models/applet/applet.py:40
|
||||
#: terminal/models/component/storage.py:58
|
||||
#: terminal/models/component/storage.py:152 terminal/serializers/applet.py:30
|
||||
|
|
@ -1268,7 +1269,7 @@ msgid "Spec info"
|
|||
msgstr ""
|
||||
|
||||
#: accounts/serializers/account/account.py:493
|
||||
#: authentication/serializers/connect_token_secret.py:164
|
||||
#: authentication/serializers/connect_token_secret.py:173
|
||||
#: authentication/templates/authentication/_access_key_modal.html:30
|
||||
#: perms/models/perm_node.py:21 users/serializers/group.py:33
|
||||
msgid "ID"
|
||||
|
|
@ -1324,7 +1325,7 @@ msgstr ""
|
|||
#: assets/models/cmd_filter.py:88 common/db/models.py:36 ops/models/adhoc.py:25
|
||||
#: ops/models/job.py:165 ops/models/playbook.py:31 rbac/models/role.py:37
|
||||
#: settings/models.py:44 terminal/models/applet/applet.py:46
|
||||
#: terminal/models/applet/applet.py:375 terminal/models/applet/host.py:143
|
||||
#: terminal/models/applet/applet.py:383 terminal/models/applet/host.py:143
|
||||
#: terminal/models/component/endpoint.py:29
|
||||
#: terminal/models/component/endpoint.py:117
|
||||
#: terminal/models/session/session.py:44
|
||||
|
|
@ -1819,7 +1820,7 @@ msgstr ""
|
|||
|
||||
#: acls/models/base.py:41 acls/serializers/base.py:57
|
||||
#: assets/models/cmd_filter.py:81 audits/models.py:99 audits/serializers.py:107
|
||||
#: authentication/serializers/connect_token_secret.py:123
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/templates/authentication/_access_key_modal.html:34
|
||||
#: perms/serializers/permission.py:63 perms/serializers/permission.py:85
|
||||
#: terminal/backends/command/models.py:24
|
||||
|
|
@ -1828,7 +1829,7 @@ msgid "Action"
|
|||
msgstr ""
|
||||
|
||||
#: acls/models/base.py:42 assets/models/cmd_filter.py:86
|
||||
#: authentication/serializers/connect_token_secret.py:93
|
||||
#: authentication/serializers/connect_token_secret.py:101
|
||||
msgid "Reviewers"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1869,7 +1870,7 @@ msgstr ""
|
|||
|
||||
#: acls/models/command_acl.py:33 acls/models/command_acl.py:97
|
||||
#: acls/serializers/command_acl.py:29
|
||||
#: authentication/serializers/connect_token_secret.py:90
|
||||
#: authentication/serializers/connect_token_secret.py:98
|
||||
#: terminal/templates/terminal/_msg_command_warning.html:23
|
||||
msgid "Command group"
|
||||
msgstr ""
|
||||
|
|
@ -1895,6 +1896,38 @@ msgstr ""
|
|||
msgid "Connect method acl"
|
||||
msgstr ""
|
||||
|
||||
#: acls/models/data_masking.py:13
|
||||
msgid "Fixed Character Replacement"
|
||||
msgstr ""
|
||||
|
||||
#: acls/models/data_masking.py:14
|
||||
msgid "Hide Middle Characters"
|
||||
msgstr ""
|
||||
|
||||
#: acls/models/data_masking.py:15
|
||||
msgid "Keep Prefix Only"
|
||||
msgstr ""
|
||||
|
||||
#: acls/models/data_masking.py:16
|
||||
msgid "Keep Suffix Only"
|
||||
msgstr ""
|
||||
|
||||
#: acls/models/data_masking.py:21
|
||||
msgid "Fields pattern"
|
||||
msgstr ""
|
||||
|
||||
#: acls/models/data_masking.py:27 acls/serializers/data_masking.py:14
|
||||
msgid "Masking Method"
|
||||
msgstr ""
|
||||
|
||||
#: acls/models/data_masking.py:31
|
||||
msgid "Mask Pattern"
|
||||
msgstr ""
|
||||
|
||||
#: acls/models/data_masking.py:42
|
||||
msgid "Data Masking Rule"
|
||||
msgstr ""
|
||||
|
||||
#: acls/models/login_acl.py:11 acls/models/login_asset_acl.py:9
|
||||
#: acls/serializers/login_acl.py:16 acls/serializers/login_asset_acl.py:13
|
||||
msgid "Rule"
|
||||
|
|
@ -1929,6 +1962,14 @@ msgstr ""
|
|||
msgid "Login city"
|
||||
msgstr ""
|
||||
|
||||
#: acls/notifications.py:20 acls/notifications.py:71
|
||||
msgid "Recipient name"
|
||||
msgstr ""
|
||||
|
||||
#: acls/notifications.py:21 acls/notifications.py:72
|
||||
msgid "Recipient username"
|
||||
msgstr ""
|
||||
|
||||
#: acls/notifications.py:22 acls/templates/acls/user_login_reminder.html:12
|
||||
#: audits/models.py:213 audits/models.py:291 audits/serializers.py:91
|
||||
msgid "User agent"
|
||||
|
|
@ -2217,7 +2258,7 @@ msgstr ""
|
|||
#: assets/const/base.py:33 settings/serializers/basic.py:8
|
||||
#: users/serializers/preference/koko.py:19
|
||||
#: users/serializers/preference/lina.py:51
|
||||
#: users/serializers/preference/luna.py:85
|
||||
#: users/serializers/preference/luna.py:89
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2245,7 +2286,7 @@ msgstr "Cloud"
|
|||
|
||||
#: assets/const/category.py:14 assets/models/asset/gpt.py:11
|
||||
#: assets/models/asset/web.py:16 audits/const.py:46
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:77
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:83
|
||||
msgid "Web"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2306,7 +2347,7 @@ msgstr ""
|
|||
msgid "Windows Active Directory"
|
||||
msgstr ""
|
||||
|
||||
#: assets/const/gpt.py:7
|
||||
#: assets/const/gpt.py:8
|
||||
msgid "ChatGPT"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2515,7 +2556,7 @@ msgstr ""
|
|||
#: assets/models/asset/common.py:169 assets/models/platform.py:155
|
||||
#: assets/serializers/asset/common.py:151
|
||||
#: authentication/backends/passkey/models.py:12
|
||||
#: authentication/serializers/connect_token_secret.py:122
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: perms/serializers/user_permission.py:26 xpack/plugins/cloud/models.py:399
|
||||
msgid "Platform"
|
||||
msgstr ""
|
||||
|
|
@ -2708,7 +2749,7 @@ msgstr ""
|
|||
#: assets/serializers/cagegory.py:11 assets/serializers/cagegory.py:18
|
||||
#: assets/serializers/cagegory.py:24
|
||||
#: authentication/models/connection_token.py:35
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: authentication/serializers/connect_token_secret.py:137
|
||||
#: common/serializers/common.py:86 labels/models.py:12 settings/models.py:40
|
||||
#: users/models/preference.py:13
|
||||
msgid "Value"
|
||||
|
|
@ -2717,7 +2758,7 @@ msgstr ""
|
|||
#: assets/models/label.py:40 assets/serializers/cagegory.py:10
|
||||
#: assets/serializers/cagegory.py:17 assets/serializers/cagegory.py:23
|
||||
#: assets/serializers/platform.py:159
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
#: authentication/serializers/connect_token_secret.py:136
|
||||
#: common/serializers/common.py:85 labels/serializers.py:45
|
||||
#: settings/serializers/msg.py:91 xpack/plugins/cloud/models.py:404
|
||||
msgid "Label"
|
||||
|
|
@ -2768,7 +2809,7 @@ msgid "Required"
|
|||
msgstr ""
|
||||
|
||||
#: assets/models/platform.py:19 assets/serializers/platform.py:161
|
||||
#: terminal/models/component/storage.py:28
|
||||
#: terminal/models/component/storage.py:28 users/const.py:42
|
||||
#: xpack/plugins/cloud/providers/nutanix.py:30
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
|
@ -3032,7 +3073,7 @@ msgid "Disk total"
|
|||
msgstr ""
|
||||
|
||||
#: assets/serializers/asset/info/gathered.py:16
|
||||
#: authentication/serializers/connect_token_secret.py:119
|
||||
#: authentication/serializers/connect_token_secret.py:127
|
||||
msgid "OS"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3320,7 +3361,7 @@ msgstr ""
|
|||
|
||||
#: audits/const.py:14 audits/const.py:25
|
||||
#: authentication/templates/authentication/_access_key_modal.html:65
|
||||
#: rbac/tree.py:292
|
||||
#: rbac/tree.py:293
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3346,7 +3387,7 @@ msgstr ""
|
|||
msgid "Rename dir"
|
||||
msgstr ""
|
||||
|
||||
#: audits/const.py:23 rbac/tree.py:290 terminal/api/session/session.py:285
|
||||
#: audits/const.py:23 rbac/tree.py:291 terminal/api/session/session.py:285
|
||||
#: terminal/templates/terminal/_msg_session_sharing.html:10
|
||||
#: xpack/plugins/cloud/manager.py:102
|
||||
msgid "View"
|
||||
|
|
@ -3354,7 +3395,7 @@ msgstr ""
|
|||
|
||||
#: audits/const.py:26
|
||||
#: authentication/templates/authentication/_access_key_modal.html:22
|
||||
#: rbac/tree.py:289
|
||||
#: rbac/tree.py:290
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3506,7 +3547,7 @@ msgid "MFA"
|
|||
msgstr ""
|
||||
|
||||
#: audits/models.py:219 terminal/models/session/sharing.py:123
|
||||
#: xpack/plugins/cloud/manager.py:187 xpack/plugins/cloud/models.py:237
|
||||
#: xpack/plugins/cloud/manager.py:186 xpack/plugins/cloud/models.py:237
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3759,6 +3800,10 @@ msgstr ""
|
|||
msgid "Forgot password"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/api/password.py:70 authentication/mfa/email.py:42
|
||||
msgid "The validity period of the verification code is {} minute"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/apps.py:7
|
||||
msgid "App Authentication"
|
||||
msgstr "Authentication"
|
||||
|
|
@ -4165,7 +4210,7 @@ msgid "Input secret"
|
|||
msgstr ""
|
||||
|
||||
#: authentication/models/connection_token.py:47
|
||||
#: authentication/serializers/connect_token_secret.py:118
|
||||
#: authentication/serializers/connect_token_secret.py:126
|
||||
#: terminal/models/applet/applet.py:43
|
||||
#: terminal/models/virtualapp/virtualapp.py:24
|
||||
#: terminal/serializers/session.py:31 terminal/serializers/session.py:58
|
||||
|
|
@ -4228,15 +4273,15 @@ msgstr ""
|
|||
msgid "No asset or inactive asset"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/models/connection_token.py:348
|
||||
#: authentication/models/connection_token.py:360
|
||||
msgid "Can view super connection token secret"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/models/connection_token.py:350
|
||||
#: authentication/models/connection_token.py:362
|
||||
msgid "Super connection token"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/models/connection_token.py:367
|
||||
#: authentication/models/connection_token.py:379
|
||||
msgid "Admin connection token"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4288,38 +4333,38 @@ msgstr ""
|
|||
msgid "binding reminder"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:120
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
msgid "Is builtin"
|
||||
msgstr "Builtin"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:124
|
||||
#: authentication/serializers/connect_token_secret.py:132
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/serializers/connect_token_secret.py:139
|
||||
#: ops/notifications.py:19 rbac/tree.py:63
|
||||
msgid "Component"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:140
|
||||
#: authentication/serializers/connect_token_secret.py:148
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:142
|
||||
#: authentication/serializers/connect_token_secret.py:151
|
||||
msgid "Expired now"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:175
|
||||
#: authentication/serializers/connect_token_secret.py:184
|
||||
#: terminal/models/virtualapp/virtualapp.py:25
|
||||
msgid "Image name"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:176
|
||||
#: authentication/serializers/connect_token_secret.py:185
|
||||
#: terminal/models/virtualapp/virtualapp.py:27
|
||||
msgid "Image port"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:177
|
||||
#: authentication/serializers/connect_token_secret.py:186
|
||||
#: terminal/models/virtualapp/virtualapp.py:26
|
||||
msgid "Image protocol"
|
||||
msgstr ""
|
||||
|
|
@ -4425,13 +4470,13 @@ msgid "Show"
|
|||
msgstr ""
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:66
|
||||
#: settings/serializers/terminal.py:24 users/const.py:42
|
||||
#: settings/serializers/terminal.py:24 users/const.py:48
|
||||
#: users/templates/users/user_verify_mfa.html:36
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:67
|
||||
#: settings/serializers/terminal.py:24 users/const.py:43
|
||||
#: settings/serializers/terminal.py:24 users/const.py:49
|
||||
#: users/templates/users/mfa_setting.html:120
|
||||
#: users/templates/users/mfa_setting.html:158
|
||||
#: users/templates/users/mfa_setting.html:177
|
||||
|
|
@ -4490,16 +4535,11 @@ msgid ""
|
|||
"account password in time."
|
||||
msgstr ""
|
||||
|
||||
#: authentication/templates/authentication/_msg_mfa_email_code.html:15
|
||||
#: authentication/templates/authentication/_msg_reset_password_code.html:18
|
||||
msgid "The validity period of the verification code is one minute"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:6
|
||||
msgid "Your account has just been bound to"
|
||||
msgstr ""
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:17
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:15
|
||||
msgid "If the operation is not your own, unbind and change the password."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4838,7 +4878,7 @@ msgstr ""
|
|||
msgid "Ultimate edition"
|
||||
msgstr ""
|
||||
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:452
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:451
|
||||
#, python-format
|
||||
msgid "%(name)s was created successfully"
|
||||
msgstr ""
|
||||
|
|
@ -5206,11 +5246,11 @@ msgid ""
|
|||
"attachments"
|
||||
msgstr ""
|
||||
|
||||
#: common/tasks.py:107
|
||||
#: common/tasks.py:104
|
||||
msgid "Upload account backup to external storage"
|
||||
msgstr ""
|
||||
|
||||
#: common/tasks.py:109
|
||||
#: common/tasks.py:106
|
||||
msgid ""
|
||||
"When performing an account backup, this task needs to be executed to "
|
||||
"external storage (SFTP)"
|
||||
|
|
@ -6378,7 +6418,7 @@ msgid "Storage"
|
|||
msgstr ""
|
||||
|
||||
#: rbac/tree.py:64 terminal/models/applet/applet.py:53
|
||||
#: terminal/models/applet/applet.py:371 terminal/models/applet/host.py:30
|
||||
#: terminal/models/applet/applet.py:379 terminal/models/applet/host.py:30
|
||||
#: terminal/serializers/applet.py:16
|
||||
msgid "Applet"
|
||||
msgstr ""
|
||||
|
|
@ -6400,24 +6440,24 @@ msgstr ""
|
|||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#: rbac/tree.py:181
|
||||
#: rbac/tree.py:182
|
||||
msgid "App organizations"
|
||||
msgstr "Organizations"
|
||||
|
||||
#: rbac/tree.py:182
|
||||
#: rbac/tree.py:183
|
||||
msgid "Ticket comment"
|
||||
msgstr ""
|
||||
|
||||
#: rbac/tree.py:183 settings/serializers/feature.py:174
|
||||
#: rbac/tree.py:184 settings/serializers/feature.py:174
|
||||
#: settings/serializers/feature.py:176 tickets/models/ticket/general.py:310
|
||||
msgid "Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: rbac/tree.py:184
|
||||
#: rbac/tree.py:185
|
||||
msgid "Common setting"
|
||||
msgstr ""
|
||||
|
||||
#: rbac/tree.py:185
|
||||
#: rbac/tree.py:186
|
||||
msgid "View permission tree"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6461,6 +6501,14 @@ msgstr ""
|
|||
msgid "ChangeSecretDashboard"
|
||||
msgstr ""
|
||||
|
||||
#: reports/views.py:181
|
||||
msgid "Failed to send email: "
|
||||
msgstr ""
|
||||
|
||||
#: reports/views.py:182
|
||||
msgid "Email sent successfully to "
|
||||
msgstr ""
|
||||
|
||||
#: settings/api/chat.py:41
|
||||
msgid "Chat AI is not enabled"
|
||||
msgstr ""
|
||||
|
|
@ -7308,7 +7356,7 @@ msgid "Tenant ID"
|
|||
msgstr ""
|
||||
|
||||
#: settings/serializers/feature.py:112 terminal/serializers/storage.py:68
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:124
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:123
|
||||
#: xpack/plugins/cloud/models.py:293
|
||||
msgid "Region"
|
||||
msgstr ""
|
||||
|
|
@ -8179,7 +8227,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: templates/resource_download.html:20 templates/resource_download.html:35
|
||||
#: users/const.py:78
|
||||
#: users/const.py:84
|
||||
msgid "Client"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8463,12 +8511,12 @@ msgstr ""
|
|||
msgid "Missing type in platform.yml"
|
||||
msgstr ""
|
||||
|
||||
#: terminal/models/applet/applet.py:373 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/applet.py:381 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/host.py:138
|
||||
msgid "Hosting"
|
||||
msgstr ""
|
||||
|
||||
#: terminal/models/applet/applet.py:379
|
||||
#: terminal/models/applet/applet.py:387
|
||||
msgid "Applet Publication"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8618,7 +8666,7 @@ msgstr ""
|
|||
msgid "Can view terminal config"
|
||||
msgstr ""
|
||||
|
||||
#: terminal/models/session/command.py:76
|
||||
#: terminal/models/session/command.py:77
|
||||
msgid "Command record"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -9520,11 +9568,11 @@ msgstr ""
|
|||
msgid "{}: New Ticket - {} ({})"
|
||||
msgstr ""
|
||||
|
||||
#: tickets/notifications.py:160
|
||||
#: tickets/notifications.py:168
|
||||
msgid "Your ticket has been processed, processor - {}"
|
||||
msgstr ""
|
||||
|
||||
#: tickets/notifications.py:164
|
||||
#: tickets/notifications.py:172
|
||||
msgid "Ticket has processed - {} ({})"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -9679,23 +9727,31 @@ msgstr ""
|
|||
msgid "New window"
|
||||
msgstr ""
|
||||
|
||||
#: users/const.py:47
|
||||
#: users/const.py:43
|
||||
msgid "Dark gray"
|
||||
msgstr ""
|
||||
|
||||
#: users/const.py:44
|
||||
msgid "Deep blue"
|
||||
msgstr ""
|
||||
|
||||
#: users/const.py:53
|
||||
msgid "High(32 bit)"
|
||||
msgstr ""
|
||||
|
||||
#: users/const.py:48
|
||||
#: users/const.py:54
|
||||
msgid "True Color(24 bit)"
|
||||
msgstr ""
|
||||
|
||||
#: users/const.py:49
|
||||
#: users/const.py:55
|
||||
msgid "Medium(16 bit)"
|
||||
msgstr ""
|
||||
|
||||
#: users/const.py:82
|
||||
#: users/const.py:88
|
||||
msgid "Replace"
|
||||
msgstr ""
|
||||
|
||||
#: users/const.py:83
|
||||
#: users/const.py:89
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -9915,12 +9971,12 @@ msgid "Reset MFA url"
|
|||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/koko.py:10
|
||||
#: users/serializers/preference/luna.py:63
|
||||
#: users/serializers/preference/luna.py:67
|
||||
msgid "File name conflict resolution"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/koko.py:14
|
||||
#: users/serializers/preference/luna.py:80
|
||||
#: users/serializers/preference/luna.py:84
|
||||
msgid "Terminal theme name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -9951,54 +10007,59 @@ msgstr ""
|
|||
msgid "Connect default open method"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:37
|
||||
msgid "RDP resolution"
|
||||
#: users/serializers/preference/luna.py:34 xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
msgid "Keyboard layout"
|
||||
msgid "RDP resolution"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:45
|
||||
msgid "RDP client option"
|
||||
msgid "Keyboard layout"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:49
|
||||
msgid "RDP color quality"
|
||||
msgid "RDP client option"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:53
|
||||
msgid "RDP color quality"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:57
|
||||
msgid "RDP smart size"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:54
|
||||
#: users/serializers/preference/luna.py:58
|
||||
msgid ""
|
||||
"Determines whether the client computer should scale the content on the "
|
||||
"remote computer to fit the window size of the client computer when the "
|
||||
"window is resized."
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:59
|
||||
#: users/serializers/preference/luna.py:63
|
||||
msgid "Remote app connect method"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:70
|
||||
#: users/serializers/preference/luna.py:74
|
||||
msgid "Terminal font size"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:73
|
||||
#: users/serializers/preference/luna.py:77
|
||||
msgid "Backspace as Ctrl+H"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:76
|
||||
#: users/serializers/preference/luna.py:80
|
||||
msgid "Right click quickly paste"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:86
|
||||
#: users/serializers/preference/luna.py:90
|
||||
msgid "Graphics"
|
||||
msgstr ""
|
||||
|
||||
#: users/serializers/preference/luna.py:87
|
||||
#: users/serializers/preference/luna.py:91
|
||||
msgid "Command line"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -10665,64 +10726,64 @@ msgstr ""
|
|||
msgid "Synchronization regions"
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:141
|
||||
#: xpack/plugins/cloud/manager.py:140
|
||||
#, python-format
|
||||
msgid "Get instances of region \"%s\" error, error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:186
|
||||
#: xpack/plugins/cloud/manager.py:185
|
||||
#, python-format
|
||||
msgid "Failed to synchronize the instance \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:377
|
||||
#: xpack/plugins/cloud/manager.py:376
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The updated platform of asset \"%s\" is inconsistent with the original "
|
||||
"platform type. Skip platform and protocol updates"
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:434
|
||||
#: xpack/plugins/cloud/manager.py:433
|
||||
#, python-format
|
||||
msgid "The asset \"%s\" already exists"
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:436
|
||||
#: xpack/plugins/cloud/manager.py:435
|
||||
#, python-format
|
||||
msgid "Update asset \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:439
|
||||
#: xpack/plugins/cloud/manager.py:438
|
||||
#, python-format
|
||||
msgid "Asset \"%s\" has been updated"
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:448
|
||||
#: xpack/plugins/cloud/manager.py:447
|
||||
#, python-format
|
||||
msgid "Prepare to create asset \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:469
|
||||
#: xpack/plugins/cloud/manager.py:468
|
||||
#, python-format
|
||||
msgid "Set nodes \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:495
|
||||
#: xpack/plugins/cloud/manager.py:494
|
||||
#, python-format
|
||||
msgid "Set accounts \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:511
|
||||
#: xpack/plugins/cloud/manager.py:510
|
||||
#, python-format
|
||||
msgid "Set protocols \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:519
|
||||
#: xpack/plugins/cloud/manager.py:518
|
||||
#, python-format
|
||||
msgid "Set labels \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:533 xpack/plugins/cloud/tasks.py:31
|
||||
#: xpack/plugins/cloud/manager.py:532 xpack/plugins/cloud/tasks.py:31
|
||||
msgid "Run sync instance task"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -11251,11 +11312,6 @@ msgstr ""
|
|||
msgid "Logout logo"
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: xpack/plugins/interface/models.py:42
|
||||
msgid "Footer content"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-17 15:02+0800\n"
|
||||
"POT-Creation-Date: 2025-10-16 14:10+0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -18,7 +18,7 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: accounts/api/account/account.py:138
|
||||
#: accounts/api/account/account.py:141
|
||||
#: accounts/serializers/account/account.py:181
|
||||
#: accounts/serializers/account/account.py:362
|
||||
msgid "Account already exists"
|
||||
|
|
@ -114,7 +114,7 @@ msgstr ""
|
|||
|
||||
#: accounts/automations/base/manager.py:119
|
||||
msgid "Windows does not support SSH key authentication"
|
||||
msgstr ""
|
||||
msgstr "Windows no soporta la autenticación con claves SSH"
|
||||
|
||||
#: accounts/automations/base/manager.py:123
|
||||
msgid "Windows password cannot contain special characters like > ^"
|
||||
|
|
@ -233,7 +233,7 @@ msgstr "Plantilla"
|
|||
msgid "Skip"
|
||||
msgstr "Omitir"
|
||||
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:291
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:292
|
||||
#: templates/_csv_import_export.html:18 templates/_csv_update_modal.html:6
|
||||
msgid "Update"
|
||||
msgstr "Actualizar"
|
||||
|
|
@ -601,17 +601,18 @@ msgstr "Actividad de cuenta"
|
|||
#: accounts/serializers/account/service.py:29
|
||||
#: accounts/serializers/account/virtual.py:20 acls/models/base.py:35
|
||||
#: acls/models/base.py:96 acls/models/command_acl.py:21
|
||||
#: acls/notifications.py:69 acls/serializers/base.py:35
|
||||
#: assets/models/asset/common.py:100 assets/models/asset/common.py:166
|
||||
#: assets/models/cmd_filter.py:21 assets/models/label.py:18
|
||||
#: assets/models/platform.py:15 assets/models/platform.py:94
|
||||
#: assets/models/zone.py:19 assets/serializers/asset/common.py:174
|
||||
#: assets/serializers/platform.py:158 assets/serializers/platform.py:283
|
||||
#: acls/models/data_masking.py:20 acls/notifications.py:69
|
||||
#: acls/serializers/base.py:35 assets/models/asset/common.py:100
|
||||
#: assets/models/asset/common.py:166 assets/models/cmd_filter.py:21
|
||||
#: assets/models/label.py:18 assets/models/platform.py:15
|
||||
#: assets/models/platform.py:94 assets/models/zone.py:19
|
||||
#: assets/serializers/asset/common.py:174 assets/serializers/platform.py:158
|
||||
#: assets/serializers/platform.py:283
|
||||
#: authentication/backends/passkey/models.py:10
|
||||
#: authentication/models/ssh_key.py:12 authentication/notifications.py:17
|
||||
#: authentication/notifications.py:56
|
||||
#: authentication/serializers/connect_token_secret.py:117
|
||||
#: authentication/serializers/connect_token_secret.py:174 labels/models.py:11
|
||||
#: authentication/serializers/connect_token_secret.py:125
|
||||
#: authentication/serializers/connect_token_secret.py:183 labels/models.py:11
|
||||
#: ops/mixin.py:32 ops/models/adhoc.py:19 ops/models/celery.py:15
|
||||
#: ops/models/celery.py:81 ops/models/job.py:147 ops/models/playbook.py:28
|
||||
#: ops/models/variable.py:9 ops/serializers/job.py:20
|
||||
|
|
@ -805,7 +806,7 @@ msgstr "Fecha de finalización"
|
|||
#: assets/models/automations/base.py:137
|
||||
#: assets/serializers/automations/base.py:47 audits/models.py:224
|
||||
#: audits/serializers.py:77 ops/models/base.py:49 ops/models/job.py:233
|
||||
#: terminal/models/applet/applet.py:374 terminal/models/applet/host.py:140
|
||||
#: terminal/models/applet/applet.py:382 terminal/models/applet/host.py:140
|
||||
#: terminal/models/component/status.py:30
|
||||
#: terminal/models/virtualapp/virtualapp.py:99
|
||||
#: terminal/serializers/applet.py:19 terminal/serializers/applet_host.py:163
|
||||
|
|
@ -946,7 +947,7 @@ msgstr "Riesgo de cuenta"
|
|||
|
||||
#: accounts/models/automations/check_account.py:119
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
msgstr "Identificador de URL"
|
||||
|
||||
#: accounts/models/automations/check_account.py:125
|
||||
msgid "Check engine"
|
||||
|
|
@ -1069,7 +1070,7 @@ msgstr "Reglas de contraseña"
|
|||
|
||||
#: accounts/models/base.py:69 assets/models/automations/base.py:28
|
||||
#: assets/models/cmd_filter.py:39 assets/models/label.py:22
|
||||
#: authentication/serializers/connect_token_secret.py:121
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: terminal/models/applet/applet.py:41
|
||||
#: terminal/models/virtualapp/virtualapp.py:23 users/serializers/user.py:257
|
||||
msgid "Is active"
|
||||
|
|
@ -1254,7 +1255,7 @@ msgstr "Categoría"
|
|||
#: assets/serializers/platform.py:160 assets/serializers/platform.py:172
|
||||
#: audits/serializers.py:76 audits/serializers.py:196
|
||||
#: authentication/models/connection_token.py:67
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: authentication/serializers/connect_token_secret.py:138
|
||||
#: ops/models/job.py:155 perms/serializers/user_permission.py:28
|
||||
#: terminal/models/applet/applet.py:40 terminal/models/component/storage.py:58
|
||||
#: terminal/models/component/storage.py:152 terminal/serializers/applet.py:30
|
||||
|
|
@ -1279,7 +1280,7 @@ msgstr "Servicio de directorio"
|
|||
#: accounts/serializers/account/account.py:278
|
||||
#, python-brace-format
|
||||
msgid "Account already exists. Field(s): {fields} must be unique."
|
||||
msgstr ""
|
||||
msgstr "La cuenta ya existe. El campo: {fields} debe ser único."
|
||||
|
||||
#: accounts/serializers/account/account.py:285
|
||||
msgid "Has secret"
|
||||
|
|
@ -1326,7 +1327,7 @@ msgid "Spec info"
|
|||
msgstr "Información especial"
|
||||
|
||||
#: accounts/serializers/account/account.py:493
|
||||
#: authentication/serializers/connect_token_secret.py:164
|
||||
#: authentication/serializers/connect_token_secret.py:173
|
||||
#: authentication/templates/authentication/_access_key_modal.html:30
|
||||
#: perms/models/perm_node.py:21 users/serializers/group.py:33
|
||||
msgid "ID"
|
||||
|
|
@ -1385,7 +1386,7 @@ msgstr "Lista blanca de IP"
|
|||
#: assets/models/cmd_filter.py:88 common/db/models.py:36
|
||||
#: ops/models/adhoc.py:25 ops/models/job.py:165 ops/models/playbook.py:31
|
||||
#: rbac/models/role.py:37 settings/models.py:44
|
||||
#: terminal/models/applet/applet.py:46 terminal/models/applet/applet.py:375
|
||||
#: terminal/models/applet/applet.py:46 terminal/models/applet/applet.py:383
|
||||
#: terminal/models/applet/host.py:143 terminal/models/component/endpoint.py:29
|
||||
#: terminal/models/component/endpoint.py:117
|
||||
#: terminal/models/session/session.py:44
|
||||
|
|
@ -1930,7 +1931,7 @@ msgstr ""
|
|||
#: acls/models/base.py:41 acls/serializers/base.py:57
|
||||
#: assets/models/cmd_filter.py:81 audits/models.py:99
|
||||
#: audits/serializers.py:107
|
||||
#: authentication/serializers/connect_token_secret.py:123
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/templates/authentication/_access_key_modal.html:34
|
||||
#: perms/serializers/permission.py:63 perms/serializers/permission.py:85
|
||||
#: terminal/backends/command/models.py:24
|
||||
|
|
@ -1939,7 +1940,7 @@ msgid "Action"
|
|||
msgstr "Acción"
|
||||
|
||||
#: acls/models/base.py:42 assets/models/cmd_filter.py:86
|
||||
#: authentication/serializers/connect_token_secret.py:93
|
||||
#: authentication/serializers/connect_token_secret.py:101
|
||||
msgid "Reviewers"
|
||||
msgstr "Persona aprobadora"
|
||||
|
||||
|
|
@ -1980,7 +1981,7 @@ msgstr "Ignorar mayúsculas y minúsculas"
|
|||
|
||||
#: acls/models/command_acl.py:33 acls/models/command_acl.py:97
|
||||
#: acls/serializers/command_acl.py:29
|
||||
#: authentication/serializers/connect_token_secret.py:90
|
||||
#: authentication/serializers/connect_token_secret.py:98
|
||||
#: terminal/templates/terminal/_msg_command_warning.html:23
|
||||
msgid "Command group"
|
||||
msgstr "Grupo de comandos"
|
||||
|
|
@ -2006,6 +2007,38 @@ msgstr "Modo de conexión"
|
|||
msgid "Connect method acl"
|
||||
msgstr "Control de modo de conexión"
|
||||
|
||||
#: acls/models/data_masking.py:13
|
||||
msgid "Fixed Character Replacement"
|
||||
msgstr "Reemplazo de caracteres fijos"
|
||||
|
||||
#: acls/models/data_masking.py:14
|
||||
msgid "Hide Middle Characters"
|
||||
msgstr "Ocultar caracteres intermedios"
|
||||
|
||||
#: acls/models/data_masking.py:15
|
||||
msgid "Keep Prefix Only"
|
||||
msgstr "Conservar prefijo"
|
||||
|
||||
#: acls/models/data_masking.py:16
|
||||
msgid "Keep Suffix Only"
|
||||
msgstr "Conservar sufijo"
|
||||
|
||||
#: acls/models/data_masking.py:21
|
||||
msgid "Fields pattern"
|
||||
msgstr "Ocultar nombre de columna"
|
||||
|
||||
#: acls/models/data_masking.py:27 acls/serializers/data_masking.py:14
|
||||
msgid "Masking Method"
|
||||
msgstr "Método de enmascaramiento"
|
||||
|
||||
#: acls/models/data_masking.py:31
|
||||
msgid "Mask Pattern"
|
||||
msgstr "Caracteres de enmascaramiento"
|
||||
|
||||
#: acls/models/data_masking.py:42
|
||||
msgid "Data Masking Rule"
|
||||
msgstr "Reglas de enmascaramiento de datos"
|
||||
|
||||
#: acls/models/login_acl.py:11 acls/models/login_asset_acl.py:9
|
||||
#: acls/serializers/login_acl.py:16 acls/serializers/login_asset_acl.py:13
|
||||
msgid "Rule"
|
||||
|
|
@ -2040,6 +2073,14 @@ msgstr "Notificación de inicio de sesión del usuario"
|
|||
msgid "Login city"
|
||||
msgstr "Ciudad de inicio de sesión"
|
||||
|
||||
#: acls/notifications.py:20 acls/notifications.py:71
|
||||
msgid "Recipient name"
|
||||
msgstr "Nombre del destinatario"
|
||||
|
||||
#: acls/notifications.py:21 acls/notifications.py:72
|
||||
msgid "Recipient username"
|
||||
msgstr "Nombre de usuario del destinatario."
|
||||
|
||||
#: acls/notifications.py:22 acls/templates/acls/user_login_reminder.html:12
|
||||
#: audits/models.py:213 audits/models.py:291 audits/serializers.py:91
|
||||
msgid "User agent"
|
||||
|
|
@ -2346,7 +2387,7 @@ msgstr "Deshabilitar"
|
|||
#: assets/const/base.py:33 settings/serializers/basic.py:8
|
||||
#: users/serializers/preference/koko.py:19
|
||||
#: users/serializers/preference/lina.py:51
|
||||
#: users/serializers/preference/luna.py:85
|
||||
#: users/serializers/preference/luna.py:89
|
||||
msgid "Basic"
|
||||
msgstr "Básico"
|
||||
|
||||
|
|
@ -2374,7 +2415,7 @@ msgstr "Servicio en la nube"
|
|||
|
||||
#: assets/const/category.py:14 assets/models/asset/gpt.py:11
|
||||
#: assets/models/asset/web.py:16 audits/const.py:46
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:77
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:83
|
||||
msgid "Web"
|
||||
msgstr "Web"
|
||||
|
||||
|
|
@ -2404,15 +2445,15 @@ msgstr "Huawei"
|
|||
|
||||
#: assets/const/device.py:9
|
||||
msgid "H3C"
|
||||
msgstr ""
|
||||
msgstr "H3C"
|
||||
|
||||
#: assets/const/device.py:10
|
||||
msgid "Juniper"
|
||||
msgstr ""
|
||||
msgstr "Juniper"
|
||||
|
||||
#: assets/const/device.py:11
|
||||
msgid "TP-Link"
|
||||
msgstr ""
|
||||
msgstr "TP-Link"
|
||||
|
||||
#: assets/const/device.py:12 assets/const/ds.py:7
|
||||
#: terminal/models/applet/applet.py:27 tickets/const.py:9
|
||||
|
|
@ -2435,7 +2476,7 @@ msgstr "Firewall"
|
|||
msgid "Windows Active Directory"
|
||||
msgstr "Directorio Activo de Windows"
|
||||
|
||||
#: assets/const/gpt.py:7
|
||||
#: assets/const/gpt.py:8
|
||||
msgid "ChatGPT"
|
||||
msgstr "ChatGPT"
|
||||
|
||||
|
|
@ -2567,7 +2608,7 @@ msgstr "Los métodos de inicio de sesión de terceros encriptados incluyen:"
|
|||
|
||||
#: assets/const/protocol.py:202
|
||||
msgid "Whether to use TLS encryption."
|
||||
msgstr ""
|
||||
msgstr "¿Se utilizará cifrado TLS?<br"
|
||||
|
||||
#: assets/const/protocol.py:232
|
||||
msgid "Auth source"
|
||||
|
|
@ -2664,7 +2705,7 @@ msgstr "Dirección"
|
|||
#: assets/models/asset/common.py:169 assets/models/platform.py:155
|
||||
#: assets/serializers/asset/common.py:151
|
||||
#: authentication/backends/passkey/models.py:12
|
||||
#: authentication/serializers/connect_token_secret.py:122
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: perms/serializers/user_permission.py:26 xpack/plugins/cloud/models.py:399
|
||||
msgid "Platform"
|
||||
msgstr "Plataforma"
|
||||
|
|
@ -2857,7 +2898,7 @@ msgstr "Sistema"
|
|||
#: assets/serializers/cagegory.py:11 assets/serializers/cagegory.py:18
|
||||
#: assets/serializers/cagegory.py:24
|
||||
#: authentication/models/connection_token.py:35
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: authentication/serializers/connect_token_secret.py:137
|
||||
#: common/serializers/common.py:86 labels/models.py:12 settings/models.py:40
|
||||
#: users/models/preference.py:13
|
||||
msgid "Value"
|
||||
|
|
@ -2866,7 +2907,7 @@ msgstr "Valor"
|
|||
#: assets/models/label.py:40 assets/serializers/cagegory.py:10
|
||||
#: assets/serializers/cagegory.py:17 assets/serializers/cagegory.py:23
|
||||
#: assets/serializers/platform.py:159
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
#: authentication/serializers/connect_token_secret.py:136
|
||||
#: common/serializers/common.py:85 labels/serializers.py:45
|
||||
#: settings/serializers/msg.py:91 xpack/plugins/cloud/models.py:404
|
||||
msgid "Label"
|
||||
|
|
@ -2917,7 +2958,7 @@ msgid "Required"
|
|||
msgstr "necesario"
|
||||
|
||||
#: assets/models/platform.py:19 assets/serializers/platform.py:161
|
||||
#: terminal/models/component/storage.py:28
|
||||
#: terminal/models/component/storage.py:28 users/const.py:42
|
||||
#: xpack/plugins/cloud/providers/nutanix.py:30
|
||||
msgid "Default"
|
||||
msgstr "predeterminado"
|
||||
|
|
@ -3203,7 +3244,7 @@ msgid "Disk total"
|
|||
msgstr "Tamaño del disco"
|
||||
|
||||
#: assets/serializers/asset/info/gathered.py:16
|
||||
#: authentication/serializers/connect_token_secret.py:119
|
||||
#: authentication/serializers/connect_token_secret.py:127
|
||||
msgid "OS"
|
||||
msgstr "Sistema operativo"
|
||||
|
||||
|
|
@ -3515,7 +3556,7 @@ msgstr "Eliminar directorio"
|
|||
|
||||
#: audits/const.py:14 audits/const.py:25
|
||||
#: authentication/templates/authentication/_access_key_modal.html:65
|
||||
#: rbac/tree.py:292
|
||||
#: rbac/tree.py:293
|
||||
msgid "Delete"
|
||||
msgstr "Eliminar"
|
||||
|
||||
|
|
@ -3541,7 +3582,7 @@ msgstr "Descargar"
|
|||
msgid "Rename dir"
|
||||
msgstr "Mapear directorio"
|
||||
|
||||
#: audits/const.py:23 rbac/tree.py:290 terminal/api/session/session.py:285
|
||||
#: audits/const.py:23 rbac/tree.py:291 terminal/api/session/session.py:285
|
||||
#: terminal/templates/terminal/_msg_session_sharing.html:10
|
||||
#: xpack/plugins/cloud/manager.py:102
|
||||
msgid "View"
|
||||
|
|
@ -3549,7 +3590,7 @@ msgstr "Ver"
|
|||
|
||||
#: audits/const.py:26
|
||||
#: authentication/templates/authentication/_access_key_modal.html:22
|
||||
#: rbac/tree.py:289
|
||||
#: rbac/tree.py:290
|
||||
msgid "Create"
|
||||
msgstr "Crear"
|
||||
|
||||
|
|
@ -3702,7 +3743,7 @@ msgid "MFA"
|
|||
msgstr "MFA"
|
||||
|
||||
#: audits/models.py:219 terminal/models/session/sharing.py:123
|
||||
#: xpack/plugins/cloud/manager.py:187 xpack/plugins/cloud/models.py:237
|
||||
#: xpack/plugins/cloud/manager.py:186 xpack/plugins/cloud/models.py:237
|
||||
msgid "Reason"
|
||||
msgstr "Razón"
|
||||
|
||||
|
|
@ -3977,6 +4018,10 @@ msgstr ""
|
|||
msgid "Forgot password"
|
||||
msgstr "Olvidé la contraseña"
|
||||
|
||||
#: authentication/api/password.py:70 authentication/mfa/email.py:42
|
||||
msgid "The validity period of the verification code is {} minute"
|
||||
msgstr "El código de verificación tiene una validez de {} minuto."
|
||||
|
||||
#: authentication/apps.py:7
|
||||
msgid "App Authentication"
|
||||
msgstr "Gestión de autenticación"
|
||||
|
|
@ -4416,7 +4461,7 @@ msgid "Input secret"
|
|||
msgstr "Contraseña personalizada"
|
||||
|
||||
#: authentication/models/connection_token.py:47
|
||||
#: authentication/serializers/connect_token_secret.py:118
|
||||
#: authentication/serializers/connect_token_secret.py:126
|
||||
#: terminal/models/applet/applet.py:43
|
||||
#: terminal/models/virtualapp/virtualapp.py:24
|
||||
#: terminal/serializers/session.py:31 terminal/serializers/session.py:58
|
||||
|
|
@ -4479,15 +4524,15 @@ msgstr "No hay usuario o el usuario ha caducado"
|
|||
msgid "No asset or inactive asset"
|
||||
msgstr "No hay activos o activos no activados"
|
||||
|
||||
#: authentication/models/connection_token.py:348
|
||||
#: authentication/models/connection_token.py:360
|
||||
msgid "Can view super connection token secret"
|
||||
msgstr "Se puede ver el cifrado del token de super conexión"
|
||||
|
||||
#: authentication/models/connection_token.py:350
|
||||
#: authentication/models/connection_token.py:362
|
||||
msgid "Super connection token"
|
||||
msgstr "Token de super conexión"
|
||||
|
||||
#: authentication/models/connection_token.py:367
|
||||
#: authentication/models/connection_token.py:379
|
||||
msgid "Admin connection token"
|
||||
msgstr "Token de conexión del administrador"
|
||||
|
||||
|
|
@ -4539,38 +4584,38 @@ msgstr "ID de OAuth"
|
|||
msgid "binding reminder"
|
||||
msgstr "Recordatorio de vinculación"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:120
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
msgid "Is builtin"
|
||||
msgstr "Incorporado"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:124
|
||||
#: authentication/serializers/connect_token_secret.py:132
|
||||
msgid "Options"
|
||||
msgstr "Opciones"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/serializers/connect_token_secret.py:139
|
||||
#: ops/notifications.py:19 rbac/tree.py:63
|
||||
msgid "Component"
|
||||
msgstr "Componentes"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:140
|
||||
#: authentication/serializers/connect_token_secret.py:148
|
||||
msgid "Domain"
|
||||
msgstr "Dominio"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:142
|
||||
#: authentication/serializers/connect_token_secret.py:151
|
||||
msgid "Expired now"
|
||||
msgstr "Expiración inmediata"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:175
|
||||
#: authentication/serializers/connect_token_secret.py:184
|
||||
#: terminal/models/virtualapp/virtualapp.py:25
|
||||
msgid "Image name"
|
||||
msgstr "Nombre de imagen"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:176
|
||||
#: authentication/serializers/connect_token_secret.py:185
|
||||
#: terminal/models/virtualapp/virtualapp.py:27
|
||||
msgid "Image port"
|
||||
msgstr "Puerto de imagen"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:177
|
||||
#: authentication/serializers/connect_token_secret.py:186
|
||||
#: terminal/models/virtualapp/virtualapp.py:26
|
||||
msgid "Image protocol"
|
||||
msgstr "Protocolo de imagen"
|
||||
|
|
@ -4689,13 +4734,13 @@ msgid "Show"
|
|||
msgstr "Mostrar"
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:66
|
||||
#: settings/serializers/terminal.py:24 users/const.py:42
|
||||
#: settings/serializers/terminal.py:24 users/const.py:48
|
||||
#: users/templates/users/user_verify_mfa.html:36
|
||||
msgid "Disable"
|
||||
msgstr "Deshabilitar"
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:67
|
||||
#: settings/serializers/terminal.py:24 users/const.py:43
|
||||
#: settings/serializers/terminal.py:24 users/const.py:49
|
||||
#: users/templates/users/mfa_setting.html:120
|
||||
#: users/templates/users/mfa_setting.html:158
|
||||
#: users/templates/users/mfa_setting.html:177
|
||||
|
|
@ -4758,16 +4803,11 @@ msgstr ""
|
|||
"Si sospechas que este acceso es irregular, te recomendamos que cambies la "
|
||||
"contraseña de tu cuenta lo antes posible."
|
||||
|
||||
#: authentication/templates/authentication/_msg_mfa_email_code.html:15
|
||||
#: authentication/templates/authentication/_msg_reset_password_code.html:18
|
||||
msgid "The validity period of the verification code is one minute"
|
||||
msgstr "El código de verificación tiene una validez de 1 minuto."
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:6
|
||||
msgid "Your account has just been bound to"
|
||||
msgstr "Tu cuenta ha sido vinculada recientemente a"
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:17
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:15
|
||||
msgid "If the operation is not your own, unbind and change the password."
|
||||
msgstr ""
|
||||
"Si este acceso no fue realizado por ti, por favor desvincula la cuenta y "
|
||||
|
|
@ -5135,7 +5175,7 @@ msgstr "Versión profesional empresarial"
|
|||
msgid "Ultimate edition"
|
||||
msgstr "Versión insignia empresarial"
|
||||
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:452
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:451
|
||||
#, python-format
|
||||
msgid "%(name)s was created successfully"
|
||||
msgstr "%(name)s creado con éxito"
|
||||
|
|
@ -5522,11 +5562,11 @@ msgstr ""
|
|||
"la cuenta necesitan que se ejecute esta tarea para el envío de correos y "
|
||||
"archivos adjuntos"
|
||||
|
||||
#: common/tasks.py:107
|
||||
#: common/tasks.py:104
|
||||
msgid "Upload account backup to external storage"
|
||||
msgstr "Subir grabaciones de sesiones a almacenamiento externo"
|
||||
|
||||
#: common/tasks.py:109
|
||||
#: common/tasks.py:106
|
||||
msgid ""
|
||||
"When performing an account backup, this task needs to be executed to "
|
||||
"external storage (SFTP)"
|
||||
|
|
@ -5978,7 +6018,7 @@ msgstr "* Por favor, introduzca una expresión crontab válida"
|
|||
|
||||
#: ops/mixin.py:194
|
||||
msgid "Crontab minute must not contain '*'"
|
||||
msgstr ""
|
||||
msgstr "Los minutos de Crontab no pueden contener “*”"
|
||||
|
||||
#: ops/mixin.py:208 settings/serializers/auth/mixin.py:12
|
||||
msgid "Require interval or crontab setting"
|
||||
|
|
@ -6781,7 +6821,7 @@ msgid "Storage"
|
|||
msgstr "Almacenamiento"
|
||||
|
||||
#: rbac/tree.py:64 terminal/models/applet/applet.py:53
|
||||
#: terminal/models/applet/applet.py:371 terminal/models/applet/host.py:30
|
||||
#: terminal/models/applet/applet.py:379 terminal/models/applet/host.py:30
|
||||
#: terminal/serializers/applet.py:16
|
||||
msgid "Applet"
|
||||
msgstr "Aplicación remota"
|
||||
|
|
@ -6803,24 +6843,24 @@ msgstr "Auditoría de acciones"
|
|||
msgid "Report"
|
||||
msgstr "Informe"
|
||||
|
||||
#: rbac/tree.py:181
|
||||
#: rbac/tree.py:182
|
||||
msgid "App organizations"
|
||||
msgstr "Gestión de organizaciones"
|
||||
|
||||
#: rbac/tree.py:182
|
||||
#: rbac/tree.py:183
|
||||
msgid "Ticket comment"
|
||||
msgstr "Comentarios de órdenes de trabajo"
|
||||
|
||||
#: rbac/tree.py:183 settings/serializers/feature.py:174
|
||||
#: rbac/tree.py:184 settings/serializers/feature.py:174
|
||||
#: settings/serializers/feature.py:176 tickets/models/ticket/general.py:310
|
||||
msgid "Ticket"
|
||||
msgstr "Orden de trabajo"
|
||||
|
||||
#: rbac/tree.py:184
|
||||
#: rbac/tree.py:185
|
||||
msgid "Common setting"
|
||||
msgstr "Configuración general"
|
||||
|
||||
#: rbac/tree.py:185
|
||||
#: rbac/tree.py:186
|
||||
msgid "View permission tree"
|
||||
msgstr "Ver árbol de autorizaciones"
|
||||
|
||||
|
|
@ -6864,6 +6904,14 @@ msgstr "Tablero PAM"
|
|||
msgid "ChangeSecretDashboard"
|
||||
msgstr "Tablero de cambio de contraseña de cuenta"
|
||||
|
||||
#: reports/views.py:181
|
||||
msgid "Failed to send email: "
|
||||
msgstr "Error al enviar el correo electrónico"
|
||||
|
||||
#: reports/views.py:182
|
||||
msgid "Email sent successfully to "
|
||||
msgstr "Envío de correo electrónico exitoso"
|
||||
|
||||
#: settings/api/chat.py:41
|
||||
msgid "Chat AI is not enabled"
|
||||
msgstr "Chat AI no está habilitado"
|
||||
|
|
@ -6903,7 +6951,7 @@ msgstr "Configuración del sistema"
|
|||
|
||||
#: settings/const.py:13
|
||||
msgid "Embed"
|
||||
msgstr ""
|
||||
msgstr "Incrustar"
|
||||
|
||||
#: settings/models.py:42 users/models/preference.py:14
|
||||
msgid "Encrypted"
|
||||
|
|
@ -7186,7 +7234,7 @@ msgstr ""
|
|||
|
||||
#: settings/serializers/auth/lark.py:13 users/models/user/_source.py:24
|
||||
msgid "Lark"
|
||||
msgstr ""
|
||||
msgstr "Lark"
|
||||
|
||||
#: settings/serializers/auth/lark.py:19
|
||||
msgid ""
|
||||
|
|
@ -7395,7 +7443,7 @@ msgstr "Actualizar siempre la información del usuario."
|
|||
|
||||
#: settings/serializers/auth/oidc.py:13 settings/serializers/auth/oidc.py:71
|
||||
msgid "OIDC"
|
||||
msgstr ""
|
||||
msgstr "OIDC"
|
||||
|
||||
#: settings/serializers/auth/oidc.py:17
|
||||
msgid "Base site URL"
|
||||
|
|
@ -7464,6 +7512,9 @@ msgid ""
|
|||
"The issuer URL of the OpenID Provider, used to discover its configuration "
|
||||
"via the `$PROVIDER_ENDPOINT/.well-known/openid-configuration` endpoint."
|
||||
msgstr ""
|
||||
"URL del emisor del proveedor OpenID, utilizado para descubrir su "
|
||||
"configuración a través del extremo “$PROVIDER_ENDPOINT/.well-known/openid-"
|
||||
"configuration”."
|
||||
|
||||
#: settings/serializers/auth/oidc.py:87
|
||||
msgid "JWKS endpoint"
|
||||
|
|
@ -7860,7 +7911,7 @@ msgid "Tenant ID"
|
|||
msgstr "ID del inquilino"
|
||||
|
||||
#: settings/serializers/feature.py:112 terminal/serializers/storage.py:68
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:124
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:123
|
||||
#: xpack/plugins/cloud/models.py:293
|
||||
msgid "Region"
|
||||
msgstr "Región"
|
||||
|
|
@ -8766,7 +8817,7 @@ msgstr "Descargar plantilla actualizada"
|
|||
|
||||
#: templates/_foot_js.html:30
|
||||
msgid "Page footer"
|
||||
msgstr ""
|
||||
msgstr "Pie de página"
|
||||
|
||||
#: templates/_header_bar.html:12
|
||||
msgid "Help"
|
||||
|
|
@ -8881,7 +8932,7 @@ msgstr ""
|
|||
"que confía en este enlace."
|
||||
|
||||
#: templates/resource_download.html:20 templates/resource_download.html:35
|
||||
#: users/const.py:78
|
||||
#: users/const.py:84
|
||||
msgid "Client"
|
||||
msgstr ""
|
||||
"Cliente JumpServer, actualmente se utiliza para invocar programas de cliente"
|
||||
|
|
@ -9177,12 +9228,12 @@ msgstr "Solo se admite plataforma personalizada"
|
|||
msgid "Missing type in platform.yml"
|
||||
msgstr "Falta tipo en el platform.yml"
|
||||
|
||||
#: terminal/models/applet/applet.py:373 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/applet.py:381 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/host.py:138
|
||||
msgid "Hosting"
|
||||
msgstr "Máquina anfitriona"
|
||||
|
||||
#: terminal/models/applet/applet.py:379
|
||||
#: terminal/models/applet/applet.py:387
|
||||
msgid "Applet Publication"
|
||||
msgstr "Lanzamiento de la aplicación"
|
||||
|
||||
|
|
@ -9345,7 +9396,7 @@ msgstr "Usuario de la aplicación"
|
|||
msgid "Can view terminal config"
|
||||
msgstr "Se puede ver la configuración del terminal"
|
||||
|
||||
#: terminal/models/session/command.py:76
|
||||
#: terminal/models/session/command.py:77
|
||||
msgid "Command record"
|
||||
msgstr "Registro de comandos"
|
||||
|
||||
|
|
@ -10306,11 +10357,11 @@ msgstr "Tienes una nueva orden de trabajo, solicitante - {}"
|
|||
msgid "{}: New Ticket - {} ({})"
|
||||
msgstr "Nueva orden de trabajo - {} ({})"
|
||||
|
||||
#: tickets/notifications.py:160
|
||||
#: tickets/notifications.py:168
|
||||
msgid "Your ticket has been processed, processor - {}"
|
||||
msgstr "Tu orden de trabajo ha sido procesada, responsable - {}"
|
||||
|
||||
#: tickets/notifications.py:164
|
||||
#: tickets/notifications.py:172
|
||||
msgid "Ticket has processed - {} ({})"
|
||||
msgstr "Tu orden de trabajo ha sido procesada, responsable - {} ({})"
|
||||
|
||||
|
|
@ -10474,23 +10525,31 @@ msgstr "Ventana actual"
|
|||
msgid "New window"
|
||||
msgstr "Nueva ventana"
|
||||
|
||||
#: users/const.py:47
|
||||
#: users/const.py:43
|
||||
msgid "Dark gray"
|
||||
msgstr "Gris oscuro"
|
||||
|
||||
#: users/const.py:44
|
||||
msgid "Deep blue"
|
||||
msgstr "Azul oscuro"
|
||||
|
||||
#: users/const.py:53
|
||||
msgid "High(32 bit)"
|
||||
msgstr "Alta (32 bits)"
|
||||
|
||||
#: users/const.py:48
|
||||
#: users/const.py:54
|
||||
msgid "True Color(24 bit)"
|
||||
msgstr ""
|
||||
msgstr "Color verdadero (24 bits)"
|
||||
|
||||
#: users/const.py:49
|
||||
#: users/const.py:55
|
||||
msgid "Medium(16 bit)"
|
||||
msgstr "Media (16 bits)"
|
||||
|
||||
#: users/const.py:82
|
||||
#: users/const.py:88
|
||||
msgid "Replace"
|
||||
msgstr "Reemplazar"
|
||||
|
||||
#: users/const.py:83
|
||||
#: users/const.py:89
|
||||
msgid "Suffix"
|
||||
msgstr "Agregar sufijo"
|
||||
|
||||
|
|
@ -10708,7 +10767,7 @@ msgstr "Restablecer clave SSH"
|
|||
|
||||
#: users/notifications.py:253
|
||||
msgid "Update SSH Key url"
|
||||
msgstr ""
|
||||
msgstr "Actualizar dirección de clave SSH"
|
||||
|
||||
#: users/notifications.py:276
|
||||
msgid "Reset MFA"
|
||||
|
|
@ -10719,12 +10778,12 @@ msgid "Reset MFA url"
|
|||
msgstr "URL de reinicio de MFA"
|
||||
|
||||
#: users/serializers/preference/koko.py:10
|
||||
#: users/serializers/preference/luna.py:63
|
||||
#: users/serializers/preference/luna.py:67
|
||||
msgid "File name conflict resolution"
|
||||
msgstr "Solución para conflictos de nombres de archivos"
|
||||
|
||||
#: users/serializers/preference/koko.py:14
|
||||
#: users/serializers/preference/luna.py:80
|
||||
#: users/serializers/preference/luna.py:84
|
||||
msgid "Terminal theme name"
|
||||
msgstr "Nombre del tema del terminal"
|
||||
|
||||
|
|
@ -10759,27 +10818,33 @@ msgstr "Carga asíncrona del árbol de activos"
|
|||
msgid "Connect default open method"
|
||||
msgstr "Forma predeterminada de apertura de conexión"
|
||||
|
||||
#: users/serializers/preference/luna.py:37
|
||||
#: users/serializers/preference/luna.py:34
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr "Tema"
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
msgid "RDP resolution"
|
||||
msgstr "Resolución RDP"
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
#: users/serializers/preference/luna.py:45
|
||||
msgid "Keyboard layout"
|
||||
msgstr "Distribución del teclado"
|
||||
|
||||
#: users/serializers/preference/luna.py:45
|
||||
#: users/serializers/preference/luna.py:49
|
||||
msgid "RDP client option"
|
||||
msgstr "Opciones del cliente RDP"
|
||||
|
||||
#: users/serializers/preference/luna.py:49
|
||||
#: users/serializers/preference/luna.py:53
|
||||
msgid "RDP color quality"
|
||||
msgstr "Calidad de color RDP"
|
||||
|
||||
#: users/serializers/preference/luna.py:53
|
||||
#: users/serializers/preference/luna.py:57
|
||||
msgid "RDP smart size"
|
||||
msgstr "Tamaño inteligente RDP"
|
||||
|
||||
#: users/serializers/preference/luna.py:54
|
||||
#: users/serializers/preference/luna.py:58
|
||||
msgid ""
|
||||
"Determines whether the client computer should scale the content on the "
|
||||
"remote computer to fit the window size of the client computer when the "
|
||||
|
|
@ -10789,27 +10854,27 @@ msgstr ""
|
|||
"para que se adapte al tamaño de la ventana de la computadora cliente al "
|
||||
"cambiar el tamaño de la ventana."
|
||||
|
||||
#: users/serializers/preference/luna.py:59
|
||||
#: users/serializers/preference/luna.py:63
|
||||
msgid "Remote app connect method"
|
||||
msgstr "Conexión remota de aplicaciones"
|
||||
|
||||
#: users/serializers/preference/luna.py:70
|
||||
#: users/serializers/preference/luna.py:74
|
||||
msgid "Terminal font size"
|
||||
msgstr "Tamaño de fuente del terminal de caracteres"
|
||||
|
||||
#: users/serializers/preference/luna.py:73
|
||||
#: users/serializers/preference/luna.py:77
|
||||
msgid "Backspace as Ctrl+H"
|
||||
msgstr "Retroceso de terminal de caracteres como Ctrl+H"
|
||||
|
||||
#: users/serializers/preference/luna.py:76
|
||||
#: users/serializers/preference/luna.py:80
|
||||
msgid "Right click quickly paste"
|
||||
msgstr "Pegar rápidamente con clic derecho"
|
||||
|
||||
#: users/serializers/preference/luna.py:86
|
||||
#: users/serializers/preference/luna.py:90
|
||||
msgid "Graphics"
|
||||
msgstr "Gráfico"
|
||||
|
||||
#: users/serializers/preference/luna.py:87
|
||||
#: users/serializers/preference/luna.py:91
|
||||
msgid "Command line"
|
||||
msgstr "Línea de comandos"
|
||||
|
||||
|
|
@ -11428,7 +11493,7 @@ msgstr "ZStack"
|
|||
|
||||
#: xpack/plugins/cloud/const.py:30 xpack/plugins/cloud/providers/smartx.py:9
|
||||
msgid "SmartX CloudTower"
|
||||
msgstr ""
|
||||
msgstr "SmartX Nube Tower"
|
||||
|
||||
#: xpack/plugins/cloud/const.py:31
|
||||
msgid "Fusion Compute"
|
||||
|
|
@ -11531,17 +11596,17 @@ msgstr "Ejecución de tareas completada"
|
|||
msgid "Synchronization regions"
|
||||
msgstr "Sincronizar regiones"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:141
|
||||
#: xpack/plugins/cloud/manager.py:140
|
||||
#, python-format
|
||||
msgid "Get instances of region \"%s\" error, error: %s"
|
||||
msgstr "Error al obtener la instancia de la región \"%s\", error: %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:186
|
||||
#: xpack/plugins/cloud/manager.py:185
|
||||
#, python-format
|
||||
msgid "Failed to synchronize the instance \"%s\""
|
||||
msgstr "No se puede sincronizar la instancia %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:377
|
||||
#: xpack/plugins/cloud/manager.py:376
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The updated platform of asset \"%s\" is inconsistent with the original "
|
||||
|
|
@ -11550,47 +11615,47 @@ msgstr ""
|
|||
"La plataforma de actualización del activo \"%s\" no coincide con el tipo de "
|
||||
"plataforma original. Se omiten las actualizaciones de plataforma y protocolo"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:434
|
||||
#: xpack/plugins/cloud/manager.py:433
|
||||
#, python-format
|
||||
msgid "The asset \"%s\" already exists"
|
||||
msgstr "El activo \"%s\" ya existe"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:436
|
||||
#: xpack/plugins/cloud/manager.py:435
|
||||
#, python-format
|
||||
msgid "Update asset \"%s\""
|
||||
msgstr "Actualizando activo \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:439
|
||||
#: xpack/plugins/cloud/manager.py:438
|
||||
#, python-format
|
||||
msgid "Asset \"%s\" has been updated"
|
||||
msgstr "El activo \"%s\" ha sido actualizado"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:448
|
||||
#: xpack/plugins/cloud/manager.py:447
|
||||
#, python-format
|
||||
msgid "Prepare to create asset \"%s\""
|
||||
msgstr "Preparando la creación del activo %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:469
|
||||
#: xpack/plugins/cloud/manager.py:468
|
||||
#, python-format
|
||||
msgid "Set nodes \"%s\""
|
||||
msgstr "Configurando nodo: \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:495
|
||||
#: xpack/plugins/cloud/manager.py:494
|
||||
#, python-format
|
||||
msgid "Set accounts \"%s\""
|
||||
msgstr "Configurando cuenta: %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:511
|
||||
#: xpack/plugins/cloud/manager.py:510
|
||||
#, python-format
|
||||
msgid "Set protocols \"%s\""
|
||||
msgstr "Configurando protocolo \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:519
|
||||
#: xpack/plugins/cloud/manager.py:518
|
||||
#, python-format
|
||||
msgid "Set labels \"%s\""
|
||||
msgstr "Configurar etiqueta: \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:533 xpack/plugins/cloud/tasks.py:31
|
||||
#: xpack/plugins/cloud/manager.py:532 xpack/plugins/cloud/tasks.py:31
|
||||
msgid "Run sync instance task"
|
||||
msgstr "Ejecutando tarea de sincronización de instancias"
|
||||
|
||||
|
|
@ -12147,11 +12212,6 @@ msgstr "Logo de la página de gestión"
|
|||
msgid "Logout logo"
|
||||
msgstr "Cerrar sesión"
|
||||
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr "Tema"
|
||||
|
||||
#: xpack/plugins/interface/models.py:42
|
||||
msgid "Footer content"
|
||||
msgstr "Contenido del pie de página"
|
||||
|
|
@ -12172,6 +12232,14 @@ msgstr "Importación de licencia exitosa"
|
|||
msgid "Invalid license"
|
||||
msgstr "Licencia no válida"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Themes"
|
||||
#~ msgstr "Tema"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "domain_name"
|
||||
#~ msgstr "Nombre de dominio"
|
||||
|
||||
#~ msgid "Task execution id"
|
||||
#~ msgstr "ID de ejecución de tareas"
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-17 15:02+0800\n"
|
||||
"POT-Creation-Date: 2025-10-16 14:10+0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -18,7 +18,7 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: accounts/api/account/account.py:138
|
||||
#: accounts/api/account/account.py:141
|
||||
#: accounts/serializers/account/account.py:181
|
||||
#: accounts/serializers/account/account.py:362
|
||||
msgid "Account already exists"
|
||||
|
|
@ -96,7 +96,7 @@ msgstr "計画実行終了"
|
|||
|
||||
#: accounts/automations/base/manager.py:119
|
||||
msgid "Windows does not support SSH key authentication"
|
||||
msgstr ""
|
||||
msgstr "WindowsはSSHキー認証をサポートしていません。"
|
||||
|
||||
#: accounts/automations/base/manager.py:123
|
||||
msgid "Windows password cannot contain special characters like > ^"
|
||||
|
|
@ -210,7 +210,7 @@ msgstr "テンプレート"
|
|||
msgid "Skip"
|
||||
msgstr "スキップ"
|
||||
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:291
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:292
|
||||
#: templates/_csv_import_export.html:18 templates/_csv_update_modal.html:6
|
||||
msgid "Update"
|
||||
msgstr "更新"
|
||||
|
|
@ -591,17 +591,18 @@ msgstr "アカウントの活動"
|
|||
#: accounts/serializers/account/service.py:29
|
||||
#: accounts/serializers/account/virtual.py:20 acls/models/base.py:35
|
||||
#: acls/models/base.py:96 acls/models/command_acl.py:21
|
||||
#: acls/notifications.py:69 acls/serializers/base.py:35
|
||||
#: assets/models/asset/common.py:100 assets/models/asset/common.py:166
|
||||
#: assets/models/cmd_filter.py:21 assets/models/label.py:18
|
||||
#: assets/models/platform.py:15 assets/models/platform.py:94
|
||||
#: assets/models/zone.py:19 assets/serializers/asset/common.py:174
|
||||
#: assets/serializers/platform.py:158 assets/serializers/platform.py:283
|
||||
#: acls/models/data_masking.py:20 acls/notifications.py:69
|
||||
#: acls/serializers/base.py:35 assets/models/asset/common.py:100
|
||||
#: assets/models/asset/common.py:166 assets/models/cmd_filter.py:21
|
||||
#: assets/models/label.py:18 assets/models/platform.py:15
|
||||
#: assets/models/platform.py:94 assets/models/zone.py:19
|
||||
#: assets/serializers/asset/common.py:174 assets/serializers/platform.py:158
|
||||
#: assets/serializers/platform.py:283
|
||||
#: authentication/backends/passkey/models.py:10
|
||||
#: authentication/models/ssh_key.py:12 authentication/notifications.py:17
|
||||
#: authentication/notifications.py:56
|
||||
#: authentication/serializers/connect_token_secret.py:117
|
||||
#: authentication/serializers/connect_token_secret.py:174 labels/models.py:11
|
||||
#: authentication/serializers/connect_token_secret.py:125
|
||||
#: authentication/serializers/connect_token_secret.py:183 labels/models.py:11
|
||||
#: ops/mixin.py:32 ops/models/adhoc.py:19 ops/models/celery.py:15
|
||||
#: ops/models/celery.py:81 ops/models/job.py:147 ops/models/playbook.py:28
|
||||
#: ops/models/variable.py:9 ops/serializers/job.py:20
|
||||
|
|
@ -795,7 +796,7 @@ msgstr "終了日"
|
|||
#: assets/models/automations/base.py:137
|
||||
#: assets/serializers/automations/base.py:47 audits/models.py:224
|
||||
#: audits/serializers.py:77 ops/models/base.py:49 ops/models/job.py:233
|
||||
#: terminal/models/applet/applet.py:374 terminal/models/applet/host.py:140
|
||||
#: terminal/models/applet/applet.py:382 terminal/models/applet/host.py:140
|
||||
#: terminal/models/component/status.py:30
|
||||
#: terminal/models/virtualapp/virtualapp.py:99
|
||||
#: terminal/serializers/applet.py:19 terminal/serializers/applet_host.py:163
|
||||
|
|
@ -936,7 +937,7 @@ msgstr "アカウントリスク"
|
|||
|
||||
#: accounts/models/automations/check_account.py:119
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
msgstr "URL識別子"
|
||||
|
||||
#: accounts/models/automations/check_account.py:125
|
||||
msgid "Check engine"
|
||||
|
|
@ -1052,7 +1053,7 @@ msgstr "パスワードルール"
|
|||
|
||||
#: accounts/models/base.py:69 assets/models/automations/base.py:28
|
||||
#: assets/models/cmd_filter.py:39 assets/models/label.py:22
|
||||
#: authentication/serializers/connect_token_secret.py:121
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: terminal/models/applet/applet.py:41
|
||||
#: terminal/models/virtualapp/virtualapp.py:23 users/serializers/user.py:257
|
||||
msgid "Is active"
|
||||
|
|
@ -1223,7 +1224,7 @@ msgstr "カテゴリ"
|
|||
#: assets/serializers/platform.py:160 assets/serializers/platform.py:172
|
||||
#: audits/serializers.py:76 audits/serializers.py:196
|
||||
#: authentication/models/connection_token.py:67
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: authentication/serializers/connect_token_secret.py:138
|
||||
#: ops/models/job.py:155 perms/serializers/user_permission.py:28
|
||||
#: terminal/models/applet/applet.py:40 terminal/models/component/storage.py:58
|
||||
#: terminal/models/component/storage.py:152 terminal/serializers/applet.py:30
|
||||
|
|
@ -1248,7 +1249,7 @@ msgstr "ディレクトリサービス"
|
|||
#: accounts/serializers/account/account.py:278
|
||||
#, python-brace-format
|
||||
msgid "Account already exists. Field(s): {fields} must be unique."
|
||||
msgstr ""
|
||||
msgstr "アカウントは既に存在します。フィールド:{fields}は一意でなければなりません。"
|
||||
|
||||
#: accounts/serializers/account/account.py:285
|
||||
msgid "Has secret"
|
||||
|
|
@ -1295,7 +1296,7 @@ msgid "Spec info"
|
|||
msgstr "特別情報"
|
||||
|
||||
#: accounts/serializers/account/account.py:493
|
||||
#: authentication/serializers/connect_token_secret.py:164
|
||||
#: authentication/serializers/connect_token_secret.py:173
|
||||
#: authentication/templates/authentication/_access_key_modal.html:30
|
||||
#: perms/models/perm_node.py:21 users/serializers/group.py:33
|
||||
msgid "ID"
|
||||
|
|
@ -1353,7 +1354,7 @@ msgstr "Access IP"
|
|||
#: assets/models/cmd_filter.py:88 common/db/models.py:36
|
||||
#: ops/models/adhoc.py:25 ops/models/job.py:165 ops/models/playbook.py:31
|
||||
#: rbac/models/role.py:37 settings/models.py:44
|
||||
#: terminal/models/applet/applet.py:46 terminal/models/applet/applet.py:375
|
||||
#: terminal/models/applet/applet.py:46 terminal/models/applet/applet.py:383
|
||||
#: terminal/models/applet/host.py:143 terminal/models/component/endpoint.py:29
|
||||
#: terminal/models/component/endpoint.py:117
|
||||
#: terminal/models/session/session.py:44
|
||||
|
|
@ -1843,7 +1844,7 @@ msgstr "1-100、低い値は最初に一致します"
|
|||
#: acls/models/base.py:41 acls/serializers/base.py:57
|
||||
#: assets/models/cmd_filter.py:81 audits/models.py:99
|
||||
#: audits/serializers.py:107
|
||||
#: authentication/serializers/connect_token_secret.py:123
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/templates/authentication/_access_key_modal.html:34
|
||||
#: perms/serializers/permission.py:63 perms/serializers/permission.py:85
|
||||
#: terminal/backends/command/models.py:24
|
||||
|
|
@ -1852,7 +1853,7 @@ msgid "Action"
|
|||
msgstr "アクション"
|
||||
|
||||
#: acls/models/base.py:42 assets/models/cmd_filter.py:86
|
||||
#: authentication/serializers/connect_token_secret.py:93
|
||||
#: authentication/serializers/connect_token_secret.py:101
|
||||
msgid "Reviewers"
|
||||
msgstr "レビュー担当者"
|
||||
|
||||
|
|
@ -1893,7 +1894,7 @@ msgstr "家を無視する"
|
|||
|
||||
#: acls/models/command_acl.py:33 acls/models/command_acl.py:97
|
||||
#: acls/serializers/command_acl.py:29
|
||||
#: authentication/serializers/connect_token_secret.py:90
|
||||
#: authentication/serializers/connect_token_secret.py:98
|
||||
#: terminal/templates/terminal/_msg_command_warning.html:23
|
||||
msgid "Command group"
|
||||
msgstr "コマンドグループ"
|
||||
|
|
@ -1919,6 +1920,38 @@ msgstr "接続方法"
|
|||
msgid "Connect method acl"
|
||||
msgstr "接続方法acl"
|
||||
|
||||
#: acls/models/data_masking.py:13
|
||||
msgid "Fixed Character Replacement"
|
||||
msgstr "固定文字の置き換え"
|
||||
|
||||
#: acls/models/data_masking.py:14
|
||||
msgid "Hide Middle Characters"
|
||||
msgstr "中間文字の非表示"
|
||||
|
||||
#: acls/models/data_masking.py:15
|
||||
msgid "Keep Prefix Only"
|
||||
msgstr "プレフィックスを保持"
|
||||
|
||||
#: acls/models/data_masking.py:16
|
||||
msgid "Keep Suffix Only"
|
||||
msgstr "サフィックスを保持"
|
||||
|
||||
#: acls/models/data_masking.py:21
|
||||
msgid "Fields pattern"
|
||||
msgstr "列名をマスクする"
|
||||
|
||||
#: acls/models/data_masking.py:27 acls/serializers/data_masking.py:14
|
||||
msgid "Masking Method"
|
||||
msgstr "マスキング方法"
|
||||
|
||||
#: acls/models/data_masking.py:31
|
||||
msgid "Mask Pattern"
|
||||
msgstr "マスキング文字"
|
||||
|
||||
#: acls/models/data_masking.py:42
|
||||
msgid "Data Masking Rule"
|
||||
msgstr "データマスキングルール"
|
||||
|
||||
#: acls/models/login_acl.py:11 acls/models/login_asset_acl.py:9
|
||||
#: acls/serializers/login_acl.py:16 acls/serializers/login_asset_acl.py:13
|
||||
msgid "Rule"
|
||||
|
|
@ -1953,6 +1986,14 @@ msgstr "ユーザーログインのリマインダ"
|
|||
msgid "Login city"
|
||||
msgstr "ログイン都市"
|
||||
|
||||
#: acls/notifications.py:20 acls/notifications.py:71
|
||||
msgid "Recipient name"
|
||||
msgstr "受取人名"
|
||||
|
||||
#: acls/notifications.py:21 acls/notifications.py:72
|
||||
msgid "Recipient username"
|
||||
msgstr "受取人ユーザー名"
|
||||
|
||||
#: acls/notifications.py:22 acls/templates/acls/user_login_reminder.html:12
|
||||
#: audits/models.py:213 audits/models.py:291 audits/serializers.py:91
|
||||
msgid "User agent"
|
||||
|
|
@ -2248,7 +2289,7 @@ msgstr "無効"
|
|||
#: assets/const/base.py:33 settings/serializers/basic.py:8
|
||||
#: users/serializers/preference/koko.py:19
|
||||
#: users/serializers/preference/lina.py:51
|
||||
#: users/serializers/preference/luna.py:85
|
||||
#: users/serializers/preference/luna.py:89
|
||||
msgid "Basic"
|
||||
msgstr "基本"
|
||||
|
||||
|
|
@ -2276,7 +2317,7 @@ msgstr "クラウド サービス"
|
|||
|
||||
#: assets/const/category.py:14 assets/models/asset/gpt.py:11
|
||||
#: assets/models/asset/web.py:16 audits/const.py:46
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:77
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:83
|
||||
msgid "Web"
|
||||
msgstr "Web"
|
||||
|
||||
|
|
@ -2306,15 +2347,15 @@ msgstr "ファーウェイ"
|
|||
|
||||
#: assets/const/device.py:9
|
||||
msgid "H3C"
|
||||
msgstr ""
|
||||
msgstr "H3C"
|
||||
|
||||
#: assets/const/device.py:10
|
||||
msgid "Juniper"
|
||||
msgstr ""
|
||||
msgstr "Juniper"
|
||||
|
||||
#: assets/const/device.py:11
|
||||
msgid "TP-Link"
|
||||
msgstr ""
|
||||
msgstr "TP-Link"
|
||||
|
||||
#: assets/const/device.py:12 assets/const/ds.py:7
|
||||
#: terminal/models/applet/applet.py:27 tickets/const.py:9
|
||||
|
|
@ -2337,7 +2378,7 @@ msgstr "ファイアウォール"
|
|||
msgid "Windows Active Directory"
|
||||
msgstr "Windows アクティブディレクトリ"
|
||||
|
||||
#: assets/const/gpt.py:7
|
||||
#: assets/const/gpt.py:8
|
||||
msgid "ChatGPT"
|
||||
msgstr "ChatGPT"
|
||||
|
||||
|
|
@ -2456,7 +2497,7 @@ msgstr "暗号化された"
|
|||
|
||||
#: assets/const/protocol.py:202
|
||||
msgid "Whether to use TLS encryption."
|
||||
msgstr ""
|
||||
msgstr "TLS暗号化を使用しますか。"
|
||||
|
||||
#: assets/const/protocol.py:232
|
||||
msgid "Auth source"
|
||||
|
|
@ -2548,7 +2589,7 @@ msgstr "アドレス"
|
|||
#: assets/models/asset/common.py:169 assets/models/platform.py:155
|
||||
#: assets/serializers/asset/common.py:151
|
||||
#: authentication/backends/passkey/models.py:12
|
||||
#: authentication/serializers/connect_token_secret.py:122
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: perms/serializers/user_permission.py:26 xpack/plugins/cloud/models.py:399
|
||||
msgid "Platform"
|
||||
msgstr "プラットフォーム"
|
||||
|
|
@ -2741,7 +2782,7 @@ msgstr "システム"
|
|||
#: assets/serializers/cagegory.py:11 assets/serializers/cagegory.py:18
|
||||
#: assets/serializers/cagegory.py:24
|
||||
#: authentication/models/connection_token.py:35
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: authentication/serializers/connect_token_secret.py:137
|
||||
#: common/serializers/common.py:86 labels/models.py:12 settings/models.py:40
|
||||
#: users/models/preference.py:13
|
||||
msgid "Value"
|
||||
|
|
@ -2750,7 +2791,7 @@ msgstr "値"
|
|||
#: assets/models/label.py:40 assets/serializers/cagegory.py:10
|
||||
#: assets/serializers/cagegory.py:17 assets/serializers/cagegory.py:23
|
||||
#: assets/serializers/platform.py:159
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
#: authentication/serializers/connect_token_secret.py:136
|
||||
#: common/serializers/common.py:85 labels/serializers.py:45
|
||||
#: settings/serializers/msg.py:91 xpack/plugins/cloud/models.py:404
|
||||
msgid "Label"
|
||||
|
|
@ -2801,7 +2842,7 @@ msgid "Required"
|
|||
msgstr "必要"
|
||||
|
||||
#: assets/models/platform.py:19 assets/serializers/platform.py:161
|
||||
#: terminal/models/component/storage.py:28
|
||||
#: terminal/models/component/storage.py:28 users/const.py:42
|
||||
#: xpack/plugins/cloud/providers/nutanix.py:30
|
||||
msgid "Default"
|
||||
msgstr "デフォルト"
|
||||
|
|
@ -3076,7 +3117,7 @@ msgid "Disk total"
|
|||
msgstr "ディスクの合計"
|
||||
|
||||
#: assets/serializers/asset/info/gathered.py:16
|
||||
#: authentication/serializers/connect_token_secret.py:119
|
||||
#: authentication/serializers/connect_token_secret.py:127
|
||||
msgid "OS"
|
||||
msgstr "OS"
|
||||
|
||||
|
|
@ -3364,7 +3405,7 @@ msgstr "Rmdir"
|
|||
|
||||
#: audits/const.py:14 audits/const.py:25
|
||||
#: authentication/templates/authentication/_access_key_modal.html:65
|
||||
#: rbac/tree.py:292
|
||||
#: rbac/tree.py:293
|
||||
msgid "Delete"
|
||||
msgstr "削除"
|
||||
|
||||
|
|
@ -3390,7 +3431,7 @@ msgstr "ダウンロード"
|
|||
msgid "Rename dir"
|
||||
msgstr "マップディレクトリ"
|
||||
|
||||
#: audits/const.py:23 rbac/tree.py:290 terminal/api/session/session.py:285
|
||||
#: audits/const.py:23 rbac/tree.py:291 terminal/api/session/session.py:285
|
||||
#: terminal/templates/terminal/_msg_session_sharing.html:10
|
||||
#: xpack/plugins/cloud/manager.py:102
|
||||
msgid "View"
|
||||
|
|
@ -3398,7 +3439,7 @@ msgstr "表示"
|
|||
|
||||
#: audits/const.py:26
|
||||
#: authentication/templates/authentication/_access_key_modal.html:22
|
||||
#: rbac/tree.py:289
|
||||
#: rbac/tree.py:290
|
||||
msgid "Create"
|
||||
msgstr "作成"
|
||||
|
||||
|
|
@ -3551,7 +3592,7 @@ msgid "MFA"
|
|||
msgstr "MFA"
|
||||
|
||||
#: audits/models.py:219 terminal/models/session/sharing.py:123
|
||||
#: xpack/plugins/cloud/manager.py:187 xpack/plugins/cloud/models.py:237
|
||||
#: xpack/plugins/cloud/manager.py:186 xpack/plugins/cloud/models.py:237
|
||||
msgid "Reason"
|
||||
msgstr "理由"
|
||||
|
||||
|
|
@ -3803,6 +3844,10 @@ msgstr "ユーザーは {}からです。対応するシステムにアクセス
|
|||
msgid "Forgot password"
|
||||
msgstr "パスワードを忘れた"
|
||||
|
||||
#: authentication/api/password.py:70 authentication/mfa/email.py:42
|
||||
msgid "The validity period of the verification code is {} minute"
|
||||
msgstr "認証コードの有効時間は {} 分"
|
||||
|
||||
#: authentication/apps.py:7
|
||||
msgid "App Authentication"
|
||||
msgstr "認証"
|
||||
|
|
@ -4210,7 +4255,7 @@ msgid "Input secret"
|
|||
msgstr "カスタムパスワード"
|
||||
|
||||
#: authentication/models/connection_token.py:47
|
||||
#: authentication/serializers/connect_token_secret.py:118
|
||||
#: authentication/serializers/connect_token_secret.py:126
|
||||
#: terminal/models/applet/applet.py:43
|
||||
#: terminal/models/virtualapp/virtualapp.py:24
|
||||
#: terminal/serializers/session.py:31 terminal/serializers/session.py:58
|
||||
|
|
@ -4273,15 +4318,15 @@ msgstr "ユーザーなしまたは期限切れのユーザー"
|
|||
msgid "No asset or inactive asset"
|
||||
msgstr "アセットがないか、有効化されていないアセット"
|
||||
|
||||
#: authentication/models/connection_token.py:348
|
||||
#: authentication/models/connection_token.py:360
|
||||
msgid "Can view super connection token secret"
|
||||
msgstr "スーパー接続トークンのシークレットを表示できます"
|
||||
|
||||
#: authentication/models/connection_token.py:350
|
||||
#: authentication/models/connection_token.py:362
|
||||
msgid "Super connection token"
|
||||
msgstr "スーパー接続トークン"
|
||||
|
||||
#: authentication/models/connection_token.py:367
|
||||
#: authentication/models/connection_token.py:379
|
||||
msgid "Admin connection token"
|
||||
msgstr "管理者接続トークン"
|
||||
|
||||
|
|
@ -4333,38 +4378,38 @@ msgstr "OAuth ID"
|
|||
msgid "binding reminder"
|
||||
msgstr "バインディングリマインダー"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:120
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
msgid "Is builtin"
|
||||
msgstr "ビルトイン"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:124
|
||||
#: authentication/serializers/connect_token_secret.py:132
|
||||
msgid "Options"
|
||||
msgstr "オプション"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/serializers/connect_token_secret.py:139
|
||||
#: ops/notifications.py:19 rbac/tree.py:63
|
||||
msgid "Component"
|
||||
msgstr "コンポーネント"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:140
|
||||
#: authentication/serializers/connect_token_secret.py:148
|
||||
msgid "Domain"
|
||||
msgstr "ドメイン"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:142
|
||||
#: authentication/serializers/connect_token_secret.py:151
|
||||
msgid "Expired now"
|
||||
msgstr "すぐに期限切れ"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:175
|
||||
#: authentication/serializers/connect_token_secret.py:184
|
||||
#: terminal/models/virtualapp/virtualapp.py:25
|
||||
msgid "Image name"
|
||||
msgstr "ミラー名"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:176
|
||||
#: authentication/serializers/connect_token_secret.py:185
|
||||
#: terminal/models/virtualapp/virtualapp.py:27
|
||||
msgid "Image port"
|
||||
msgstr "ミラーポート"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:177
|
||||
#: authentication/serializers/connect_token_secret.py:186
|
||||
#: terminal/models/virtualapp/virtualapp.py:26
|
||||
msgid "Image protocol"
|
||||
msgstr "ミラープロトコル"
|
||||
|
|
@ -4472,13 +4517,13 @@ msgid "Show"
|
|||
msgstr "表示"
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:66
|
||||
#: settings/serializers/terminal.py:24 users/const.py:42
|
||||
#: settings/serializers/terminal.py:24 users/const.py:48
|
||||
#: users/templates/users/user_verify_mfa.html:36
|
||||
msgid "Disable"
|
||||
msgstr "無効化"
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:67
|
||||
#: settings/serializers/terminal.py:24 users/const.py:43
|
||||
#: settings/serializers/terminal.py:24 users/const.py:49
|
||||
#: users/templates/users/mfa_setting.html:120
|
||||
#: users/templates/users/mfa_setting.html:158
|
||||
#: users/templates/users/mfa_setting.html:177
|
||||
|
|
@ -4537,16 +4582,11 @@ msgid ""
|
|||
"account password in time."
|
||||
msgstr "ログイン動作が異常であると疑われる場合は、時間内にアカウントのパスワードを変更してください。"
|
||||
|
||||
#: authentication/templates/authentication/_msg_mfa_email_code.html:15
|
||||
#: authentication/templates/authentication/_msg_reset_password_code.html:18
|
||||
msgid "The validity period of the verification code is one minute"
|
||||
msgstr "認証コードの有効時間は 1 分"
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:6
|
||||
msgid "Your account has just been bound to"
|
||||
msgstr "アカウントはにバインドされています"
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:17
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:15
|
||||
msgid "If the operation is not your own, unbind and change the password."
|
||||
msgstr "操作が独自のものでない場合は、パスワードをバインド解除して変更します。"
|
||||
|
||||
|
|
@ -4887,7 +4927,7 @@ msgstr "エンタープライズプロフェッショナル版"
|
|||
msgid "Ultimate edition"
|
||||
msgstr "エンタープライズ・フラッグシップ・エディション"
|
||||
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:452
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:451
|
||||
#, python-format
|
||||
msgid "%(name)s was created successfully"
|
||||
msgstr "%(name)s が正常に作成されました"
|
||||
|
|
@ -5255,11 +5295,11 @@ msgid ""
|
|||
msgstr ""
|
||||
"アカウントのパスワードを変更したり、アカウントのバックアップが添付ファイルを生成したりすると、メールと添付ファイルを送信するためのタスクを実行する必要があります"
|
||||
|
||||
#: common/tasks.py:107
|
||||
#: common/tasks.py:104
|
||||
msgid "Upload account backup to external storage"
|
||||
msgstr " セッション映像を外部ストレージにアップロードする"
|
||||
|
||||
#: common/tasks.py:109
|
||||
#: common/tasks.py:106
|
||||
msgid ""
|
||||
"When performing an account backup, this task needs to be executed to "
|
||||
"external storage (SFTP)"
|
||||
|
|
@ -5668,7 +5708,7 @@ msgstr "* 有効なcrontab式を入力してください"
|
|||
|
||||
#: ops/mixin.py:194
|
||||
msgid "Crontab minute must not contain '*'"
|
||||
msgstr ""
|
||||
msgstr "Crontabの分は「*」を含めることができません。"
|
||||
|
||||
#: ops/mixin.py:208 settings/serializers/auth/mixin.py:12
|
||||
msgid "Require interval or crontab setting"
|
||||
|
|
@ -6428,7 +6468,7 @@ msgid "Storage"
|
|||
msgstr "ストレージ"
|
||||
|
||||
#: rbac/tree.py:64 terminal/models/applet/applet.py:53
|
||||
#: terminal/models/applet/applet.py:371 terminal/models/applet/host.py:30
|
||||
#: terminal/models/applet/applet.py:379 terminal/models/applet/host.py:30
|
||||
#: terminal/serializers/applet.py:16
|
||||
msgid "Applet"
|
||||
msgstr "リモートアプリケーション"
|
||||
|
|
@ -6450,24 +6490,24 @@ msgstr "作業監査"
|
|||
msgid "Report"
|
||||
msgstr "レポート"
|
||||
|
||||
#: rbac/tree.py:181
|
||||
#: rbac/tree.py:182
|
||||
msgid "App organizations"
|
||||
msgstr "アプリ組織"
|
||||
|
||||
#: rbac/tree.py:182
|
||||
#: rbac/tree.py:183
|
||||
msgid "Ticket comment"
|
||||
msgstr "チケットコメント"
|
||||
|
||||
#: rbac/tree.py:183 settings/serializers/feature.py:174
|
||||
#: rbac/tree.py:184 settings/serializers/feature.py:174
|
||||
#: settings/serializers/feature.py:176 tickets/models/ticket/general.py:310
|
||||
msgid "Ticket"
|
||||
msgstr "チケット"
|
||||
|
||||
#: rbac/tree.py:184
|
||||
#: rbac/tree.py:185
|
||||
msgid "Common setting"
|
||||
msgstr "共通設定"
|
||||
|
||||
#: rbac/tree.py:185
|
||||
#: rbac/tree.py:186
|
||||
msgid "View permission tree"
|
||||
msgstr "権限ツリーの表示"
|
||||
|
||||
|
|
@ -6511,6 +6551,14 @@ msgstr "PAMダッシュボード"
|
|||
msgid "ChangeSecretDashboard"
|
||||
msgstr "アカウントパスワード変更ダッシュボード"
|
||||
|
||||
#: reports/views.py:181
|
||||
msgid "Failed to send email: "
|
||||
msgstr "メール送信失敗"
|
||||
|
||||
#: reports/views.py:182
|
||||
msgid "Email sent successfully to "
|
||||
msgstr "メール送信成功"
|
||||
|
||||
#: settings/api/chat.py:41
|
||||
msgid "Chat AI is not enabled"
|
||||
msgstr "チャットAIがオンになっていない"
|
||||
|
|
@ -6548,7 +6596,7 @@ msgstr "設定"
|
|||
|
||||
#: settings/const.py:13
|
||||
msgid "Embed"
|
||||
msgstr ""
|
||||
msgstr "埋め込み"
|
||||
|
||||
#: settings/models.py:42 users/models/preference.py:14
|
||||
msgid "Encrypted"
|
||||
|
|
@ -6800,7 +6848,7 @@ msgstr ""
|
|||
|
||||
#: settings/serializers/auth/lark.py:13 users/models/user/_source.py:24
|
||||
msgid "Lark"
|
||||
msgstr ""
|
||||
msgstr "Lark"
|
||||
|
||||
#: settings/serializers/auth/lark.py:19
|
||||
msgid ""
|
||||
|
|
@ -6980,7 +7028,7 @@ msgstr "常にユーザーを更新"
|
|||
|
||||
#: settings/serializers/auth/oidc.py:13 settings/serializers/auth/oidc.py:71
|
||||
msgid "OIDC"
|
||||
msgstr ""
|
||||
msgstr "OIDC"
|
||||
|
||||
#: settings/serializers/auth/oidc.py:17
|
||||
msgid "Base site URL"
|
||||
|
|
@ -7044,6 +7092,8 @@ msgid ""
|
|||
"The issuer URL of the OpenID Provider, used to discover its configuration "
|
||||
"via the `$PROVIDER_ENDPOINT/.well-known/openid-configuration` endpoint."
|
||||
msgstr ""
|
||||
"OpenIDプロバイダーの発行者URLは、\"$PROVIDER_ENDPOINT/.well-known/openid-"
|
||||
"configuration\"エンドポイントを介してその構成を発見するために使用されます。"
|
||||
|
||||
#: settings/serializers/auth/oidc.py:87
|
||||
msgid "JWKS endpoint"
|
||||
|
|
@ -7397,7 +7447,7 @@ msgid "Tenant ID"
|
|||
msgstr "テナントID"
|
||||
|
||||
#: settings/serializers/feature.py:112 terminal/serializers/storage.py:68
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:124
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:123
|
||||
#: xpack/plugins/cloud/models.py:293
|
||||
msgid "Region"
|
||||
msgstr "リージョン"
|
||||
|
|
@ -8188,7 +8238,7 @@ msgstr "更新テンプレートのダウンロード"
|
|||
|
||||
#: templates/_foot_js.html:30
|
||||
msgid "Page footer"
|
||||
msgstr ""
|
||||
msgstr "フッター"
|
||||
|
||||
#: templates/_header_bar.html:12
|
||||
msgid "Help"
|
||||
|
|
@ -8296,7 +8346,7 @@ msgid ""
|
|||
msgstr "外部サイトに転送されますので、そのリンクを信頼できることを確認してください。"
|
||||
|
||||
#: templates/resource_download.html:20 templates/resource_download.html:35
|
||||
#: users/const.py:78
|
||||
#: users/const.py:84
|
||||
msgid "Client"
|
||||
msgstr "クライアント"
|
||||
|
||||
|
|
@ -8580,12 +8630,12 @@ msgstr "カスタムプラットフォームのみをサポート"
|
|||
msgid "Missing type in platform.yml"
|
||||
msgstr "platform.ymlにタイプがありません"
|
||||
|
||||
#: terminal/models/applet/applet.py:373 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/applet.py:381 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/host.py:138
|
||||
msgid "Hosting"
|
||||
msgstr "ホスト マシン"
|
||||
|
||||
#: terminal/models/applet/applet.py:379
|
||||
#: terminal/models/applet/applet.py:387
|
||||
msgid "Applet Publication"
|
||||
msgstr "アプリケーションのリリース"
|
||||
|
||||
|
|
@ -8735,7 +8785,7 @@ msgstr "ユーザーの適用"
|
|||
msgid "Can view terminal config"
|
||||
msgstr "ターミナル構成を表示できます"
|
||||
|
||||
#: terminal/models/session/command.py:76
|
||||
#: terminal/models/session/command.py:77
|
||||
msgid "Command record"
|
||||
msgstr "コマンドレコード"
|
||||
|
||||
|
|
@ -9643,11 +9693,11 @@ msgstr "新しいチケットがあります- {}"
|
|||
msgid "{}: New Ticket - {} ({})"
|
||||
msgstr "新しいチケット- {} ({})"
|
||||
|
||||
#: tickets/notifications.py:160
|
||||
#: tickets/notifications.py:168
|
||||
msgid "Your ticket has been processed, processor - {}"
|
||||
msgstr "チケットが処理されました。プロセッサー- {}"
|
||||
|
||||
#: tickets/notifications.py:164
|
||||
#: tickets/notifications.py:172
|
||||
msgid "Ticket has processed - {} ({})"
|
||||
msgstr "チケットが処理済み- {} ({})"
|
||||
|
||||
|
|
@ -9802,23 +9852,31 @@ msgstr "現在のウィンドウ"
|
|||
msgid "New window"
|
||||
msgstr "新しいウィンドウ"
|
||||
|
||||
#: users/const.py:47
|
||||
#: users/const.py:43
|
||||
msgid "Dark gray"
|
||||
msgstr "ダークグレー"
|
||||
|
||||
#: users/const.py:44
|
||||
msgid "Deep blue"
|
||||
msgstr "ダークブルー"
|
||||
|
||||
#: users/const.py:53
|
||||
msgid "High(32 bit)"
|
||||
msgstr "高い(32 bit)"
|
||||
|
||||
#: users/const.py:48
|
||||
#: users/const.py:54
|
||||
msgid "True Color(24 bit)"
|
||||
msgstr ""
|
||||
msgstr "フルカラー(24ビット)"
|
||||
|
||||
#: users/const.py:49
|
||||
#: users/const.py:55
|
||||
msgid "Medium(16 bit)"
|
||||
msgstr "真ん中(16 bit)"
|
||||
|
||||
#: users/const.py:82
|
||||
#: users/const.py:88
|
||||
msgid "Replace"
|
||||
msgstr "置換"
|
||||
|
||||
#: users/const.py:83
|
||||
#: users/const.py:89
|
||||
msgid "Suffix"
|
||||
msgstr "接尾辞を付ける"
|
||||
|
||||
|
|
@ -10031,7 +10089,7 @@ msgstr "SSHキーのリセット"
|
|||
|
||||
#: users/notifications.py:253
|
||||
msgid "Update SSH Key url"
|
||||
msgstr ""
|
||||
msgstr "SSHキーの更新アドレス"
|
||||
|
||||
#: users/notifications.py:276
|
||||
msgid "Reset MFA"
|
||||
|
|
@ -10042,12 +10100,12 @@ msgid "Reset MFA url"
|
|||
msgstr "MFAリセットのURL"
|
||||
|
||||
#: users/serializers/preference/koko.py:10
|
||||
#: users/serializers/preference/luna.py:63
|
||||
#: users/serializers/preference/luna.py:67
|
||||
msgid "File name conflict resolution"
|
||||
msgstr "ファイル名競合ソリューション"
|
||||
|
||||
#: users/serializers/preference/koko.py:14
|
||||
#: users/serializers/preference/luna.py:80
|
||||
#: users/serializers/preference/luna.py:84
|
||||
msgid "Terminal theme name"
|
||||
msgstr "ターミナルテーマ名"
|
||||
|
||||
|
|
@ -10079,27 +10137,33 @@ msgstr "非同期ロード資産ツリー"
|
|||
msgid "Connect default open method"
|
||||
msgstr "デフォルトの接続オープン方法"
|
||||
|
||||
#: users/serializers/preference/luna.py:37
|
||||
#: users/serializers/preference/luna.py:34
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr "テーマ"
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
msgid "RDP resolution"
|
||||
msgstr "RDP 解像度"
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
#: users/serializers/preference/luna.py:45
|
||||
msgid "Keyboard layout"
|
||||
msgstr "キーボードレイアウト"
|
||||
|
||||
#: users/serializers/preference/luna.py:45
|
||||
#: users/serializers/preference/luna.py:49
|
||||
msgid "RDP client option"
|
||||
msgstr "RDPクライアントオプション"
|
||||
|
||||
#: users/serializers/preference/luna.py:49
|
||||
#: users/serializers/preference/luna.py:53
|
||||
msgid "RDP color quality"
|
||||
msgstr "RDP の色品質"
|
||||
|
||||
#: users/serializers/preference/luna.py:53
|
||||
#: users/serializers/preference/luna.py:57
|
||||
msgid "RDP smart size"
|
||||
msgstr "RDP スマート サイズ"
|
||||
|
||||
#: users/serializers/preference/luna.py:54
|
||||
#: users/serializers/preference/luna.py:58
|
||||
msgid ""
|
||||
"Determines whether the client computer should scale the content on the "
|
||||
"remote computer to fit the window size of the client computer when the "
|
||||
|
|
@ -10115,27 +10179,27 @@ msgstr ""
|
|||
# "ウィンドウサイズを変更するときにクライアントコンピュータがクライアントコン"
|
||||
# "ピュータのウィンドウサイズに合わせるためにリモートコンピュータ上のコンテンツ"
|
||||
# "をスケーリングすべきかどうかを判断する"
|
||||
#: users/serializers/preference/luna.py:59
|
||||
#: users/serializers/preference/luna.py:63
|
||||
msgid "Remote app connect method"
|
||||
msgstr "リモートアプリケーション接続方式"
|
||||
|
||||
#: users/serializers/preference/luna.py:70
|
||||
#: users/serializers/preference/luna.py:74
|
||||
msgid "Terminal font size"
|
||||
msgstr "文字終端フォントサイズ"
|
||||
|
||||
#: users/serializers/preference/luna.py:73
|
||||
#: users/serializers/preference/luna.py:77
|
||||
msgid "Backspace as Ctrl+H"
|
||||
msgstr "文字終端Backspace As Ctrl+H"
|
||||
|
||||
#: users/serializers/preference/luna.py:76
|
||||
#: users/serializers/preference/luna.py:80
|
||||
msgid "Right click quickly paste"
|
||||
msgstr "右クリックでクイック貼り付け"
|
||||
|
||||
#: users/serializers/preference/luna.py:86
|
||||
#: users/serializers/preference/luna.py:90
|
||||
msgid "Graphics"
|
||||
msgstr "図形化"
|
||||
|
||||
#: users/serializers/preference/luna.py:87
|
||||
#: users/serializers/preference/luna.py:91
|
||||
msgid "Command line"
|
||||
msgstr "コマンドライン"
|
||||
|
||||
|
|
@ -10695,7 +10759,7 @@ msgstr "ZStack"
|
|||
|
||||
#: xpack/plugins/cloud/const.py:30 xpack/plugins/cloud/providers/smartx.py:9
|
||||
msgid "SmartX CloudTower"
|
||||
msgstr ""
|
||||
msgstr "SmartXクラウドタワー"
|
||||
|
||||
#: xpack/plugins/cloud/const.py:31
|
||||
msgid "Fusion Compute"
|
||||
|
|
@ -10798,64 +10862,64 @@ msgstr "タスク実行完了"
|
|||
msgid "Synchronization regions"
|
||||
msgstr "地域を同期する"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:141
|
||||
#: xpack/plugins/cloud/manager.py:140
|
||||
#, python-format
|
||||
msgid "Get instances of region \"%s\" error, error: %s"
|
||||
msgstr "地域 \"%s\" のインスタンスを取得できませんでした、エラー:%s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:186
|
||||
#: xpack/plugins/cloud/manager.py:185
|
||||
#, python-format
|
||||
msgid "Failed to synchronize the instance \"%s\""
|
||||
msgstr "インスタンス \"%s\" の同期に失敗しました"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:377
|
||||
#: xpack/plugins/cloud/manager.py:376
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The updated platform of asset \"%s\" is inconsistent with the original "
|
||||
"platform type. Skip platform and protocol updates"
|
||||
msgstr "更新された資産 \"%s\" のプラットフォームタイプと元のタイプは一致しません。プラットフォームとプロトコルの更新をスキップ"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:434
|
||||
#: xpack/plugins/cloud/manager.py:433
|
||||
#, python-format
|
||||
msgid "The asset \"%s\" already exists"
|
||||
msgstr "資産 \"%s\" はすでに存在します"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:436
|
||||
#: xpack/plugins/cloud/manager.py:435
|
||||
#, python-format
|
||||
msgid "Update asset \"%s\""
|
||||
msgstr "資産の更新 \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:439
|
||||
#: xpack/plugins/cloud/manager.py:438
|
||||
#, python-format
|
||||
msgid "Asset \"%s\" has been updated"
|
||||
msgstr "資産 \"%s\" が更新されました"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:448
|
||||
#: xpack/plugins/cloud/manager.py:447
|
||||
#, python-format
|
||||
msgid "Prepare to create asset \"%s\""
|
||||
msgstr "資産 \"%s\" の作成準備"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:469
|
||||
#: xpack/plugins/cloud/manager.py:468
|
||||
#, python-format
|
||||
msgid "Set nodes \"%s\""
|
||||
msgstr "ノードを設定する \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:495
|
||||
#: xpack/plugins/cloud/manager.py:494
|
||||
#, python-format
|
||||
msgid "Set accounts \"%s\""
|
||||
msgstr "アカウントを設定する \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:511
|
||||
#: xpack/plugins/cloud/manager.py:510
|
||||
#, python-format
|
||||
msgid "Set protocols \"%s\""
|
||||
msgstr "プロトコル \"%s\" の設定"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:519
|
||||
#: xpack/plugins/cloud/manager.py:518
|
||||
#, python-format
|
||||
msgid "Set labels \"%s\""
|
||||
msgstr "ラベル設定: \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:533 xpack/plugins/cloud/tasks.py:31
|
||||
#: xpack/plugins/cloud/manager.py:532 xpack/plugins/cloud/tasks.py:31
|
||||
msgid "Run sync instance task"
|
||||
msgstr "同期インスタンス タスクを実行する"
|
||||
|
||||
|
|
@ -11388,11 +11452,6 @@ msgstr "管理ページのロゴ"
|
|||
msgid "Logout logo"
|
||||
msgstr "ログアウト"
|
||||
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr "テーマ"
|
||||
|
||||
#: xpack/plugins/interface/models.py:42
|
||||
msgid "Footer content"
|
||||
msgstr "フッターの内容"
|
||||
|
|
@ -11412,17 +11471,3 @@ msgstr "ライセンスのインポートに成功"
|
|||
#: xpack/plugins/license/api.py:53
|
||||
msgid "Invalid license"
|
||||
msgstr "ライセンスが無効です"
|
||||
|
||||
#~ msgid "Task execution id"
|
||||
#~ msgstr "タスク実行ID"
|
||||
|
||||
#~ msgid "Respectful"
|
||||
#~ msgstr "尊敬する"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Hello! The following is the failure of changing the password of your assets "
|
||||
#~ "or pushing the account. Please check and handle it in time."
|
||||
#~ msgstr "こんにちは! アセットの変更またはアカウントのプッシュが失敗する状況は次のとおりです。 時間内に確認して対処してください。"
|
||||
|
||||
#~ msgid "EXCHANGE"
|
||||
#~ msgstr "EXCHANGE"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-17 15:02+0800\n"
|
||||
"POT-Creation-Date: 2025-10-16 14:10+0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -18,7 +18,7 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: accounts/api/account/account.py:138
|
||||
#: accounts/api/account/account.py:141
|
||||
#: accounts/serializers/account/account.py:181
|
||||
#: accounts/serializers/account/account.py:362
|
||||
msgid "Account already exists"
|
||||
|
|
@ -96,7 +96,7 @@ msgstr "계획 실행 종료"
|
|||
|
||||
#: accounts/automations/base/manager.py:119
|
||||
msgid "Windows does not support SSH key authentication"
|
||||
msgstr ""
|
||||
msgstr "Windows는 SSH 키 인증을 지원하지 않습니다."
|
||||
|
||||
#: accounts/automations/base/manager.py:123
|
||||
msgid "Windows password cannot contain special characters like > ^"
|
||||
|
|
@ -210,7 +210,7 @@ msgstr "템플릿"
|
|||
msgid "Skip"
|
||||
msgstr "건너뛰기"
|
||||
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:291
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:292
|
||||
#: templates/_csv_import_export.html:18 templates/_csv_update_modal.html:6
|
||||
msgid "Update"
|
||||
msgstr "업데이트"
|
||||
|
|
@ -576,17 +576,18 @@ msgstr "계정 활동"
|
|||
#: accounts/serializers/account/service.py:29
|
||||
#: accounts/serializers/account/virtual.py:20 acls/models/base.py:35
|
||||
#: acls/models/base.py:96 acls/models/command_acl.py:21
|
||||
#: acls/notifications.py:69 acls/serializers/base.py:35
|
||||
#: assets/models/asset/common.py:100 assets/models/asset/common.py:166
|
||||
#: assets/models/cmd_filter.py:21 assets/models/label.py:18
|
||||
#: assets/models/platform.py:15 assets/models/platform.py:94
|
||||
#: assets/models/zone.py:19 assets/serializers/asset/common.py:174
|
||||
#: assets/serializers/platform.py:158 assets/serializers/platform.py:283
|
||||
#: acls/models/data_masking.py:20 acls/notifications.py:69
|
||||
#: acls/serializers/base.py:35 assets/models/asset/common.py:100
|
||||
#: assets/models/asset/common.py:166 assets/models/cmd_filter.py:21
|
||||
#: assets/models/label.py:18 assets/models/platform.py:15
|
||||
#: assets/models/platform.py:94 assets/models/zone.py:19
|
||||
#: assets/serializers/asset/common.py:174 assets/serializers/platform.py:158
|
||||
#: assets/serializers/platform.py:283
|
||||
#: authentication/backends/passkey/models.py:10
|
||||
#: authentication/models/ssh_key.py:12 authentication/notifications.py:17
|
||||
#: authentication/notifications.py:56
|
||||
#: authentication/serializers/connect_token_secret.py:117
|
||||
#: authentication/serializers/connect_token_secret.py:174 labels/models.py:11
|
||||
#: authentication/serializers/connect_token_secret.py:125
|
||||
#: authentication/serializers/connect_token_secret.py:183 labels/models.py:11
|
||||
#: ops/mixin.py:32 ops/models/adhoc.py:19 ops/models/celery.py:15
|
||||
#: ops/models/celery.py:81 ops/models/job.py:147 ops/models/playbook.py:28
|
||||
#: ops/models/variable.py:9 ops/serializers/job.py:20
|
||||
|
|
@ -780,7 +781,7 @@ msgstr "종료 날짜"
|
|||
#: assets/models/automations/base.py:137
|
||||
#: assets/serializers/automations/base.py:47 audits/models.py:224
|
||||
#: audits/serializers.py:77 ops/models/base.py:49 ops/models/job.py:233
|
||||
#: terminal/models/applet/applet.py:374 terminal/models/applet/host.py:140
|
||||
#: terminal/models/applet/applet.py:382 terminal/models/applet/host.py:140
|
||||
#: terminal/models/component/status.py:30
|
||||
#: terminal/models/virtualapp/virtualapp.py:99
|
||||
#: terminal/serializers/applet.py:19 terminal/serializers/applet_host.py:163
|
||||
|
|
@ -921,7 +922,7 @@ msgstr "계정 위험"
|
|||
|
||||
#: accounts/models/automations/check_account.py:119
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
msgstr "URL 식별자"
|
||||
|
||||
#: accounts/models/automations/check_account.py:125
|
||||
msgid "Check engine"
|
||||
|
|
@ -1037,7 +1038,7 @@ msgstr "암호 규칙"
|
|||
|
||||
#: accounts/models/base.py:69 assets/models/automations/base.py:28
|
||||
#: assets/models/cmd_filter.py:39 assets/models/label.py:22
|
||||
#: authentication/serializers/connect_token_secret.py:121
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: terminal/models/applet/applet.py:41
|
||||
#: terminal/models/virtualapp/virtualapp.py:23 users/serializers/user.py:257
|
||||
msgid "Is active"
|
||||
|
|
@ -1209,7 +1210,7 @@ msgstr "카테고리"
|
|||
#: assets/serializers/platform.py:160 assets/serializers/platform.py:172
|
||||
#: audits/serializers.py:76 audits/serializers.py:196
|
||||
#: authentication/models/connection_token.py:67
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: authentication/serializers/connect_token_secret.py:138
|
||||
#: ops/models/job.py:155 perms/serializers/user_permission.py:28
|
||||
#: terminal/models/applet/applet.py:40 terminal/models/component/storage.py:58
|
||||
#: terminal/models/component/storage.py:152 terminal/serializers/applet.py:30
|
||||
|
|
@ -1234,7 +1235,7 @@ msgstr "디렉토리 서비스"
|
|||
#: accounts/serializers/account/account.py:278
|
||||
#, python-brace-format
|
||||
msgid "Account already exists. Field(s): {fields} must be unique."
|
||||
msgstr ""
|
||||
msgstr "계정이 이미 존재합니다. 필드: {fields}는 고유해야 합니다."
|
||||
|
||||
#: accounts/serializers/account/account.py:285
|
||||
msgid "Has secret"
|
||||
|
|
@ -1281,7 +1282,7 @@ msgid "Spec info"
|
|||
msgstr "특별 정보"
|
||||
|
||||
#: accounts/serializers/account/account.py:493
|
||||
#: authentication/serializers/connect_token_secret.py:164
|
||||
#: authentication/serializers/connect_token_secret.py:173
|
||||
#: authentication/templates/authentication/_access_key_modal.html:30
|
||||
#: perms/models/perm_node.py:21 users/serializers/group.py:33
|
||||
msgid "ID"
|
||||
|
|
@ -1339,7 +1340,7 @@ msgstr "IP 화이트리스트"
|
|||
#: assets/models/cmd_filter.py:88 common/db/models.py:36
|
||||
#: ops/models/adhoc.py:25 ops/models/job.py:165 ops/models/playbook.py:31
|
||||
#: rbac/models/role.py:37 settings/models.py:44
|
||||
#: terminal/models/applet/applet.py:46 terminal/models/applet/applet.py:375
|
||||
#: terminal/models/applet/applet.py:46 terminal/models/applet/applet.py:383
|
||||
#: terminal/models/applet/host.py:143 terminal/models/component/endpoint.py:29
|
||||
#: terminal/models/component/endpoint.py:117
|
||||
#: terminal/models/session/session.py:44
|
||||
|
|
@ -1833,7 +1834,7 @@ msgstr "우선순위 선택 범위는 1-100 (숫자가 작을수록 더 우선)"
|
|||
#: acls/models/base.py:41 acls/serializers/base.py:57
|
||||
#: assets/models/cmd_filter.py:81 audits/models.py:99
|
||||
#: audits/serializers.py:107
|
||||
#: authentication/serializers/connect_token_secret.py:123
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/templates/authentication/_access_key_modal.html:34
|
||||
#: perms/serializers/permission.py:63 perms/serializers/permission.py:85
|
||||
#: terminal/backends/command/models.py:24
|
||||
|
|
@ -1842,7 +1843,7 @@ msgid "Action"
|
|||
msgstr "행동"
|
||||
|
||||
#: acls/models/base.py:42 assets/models/cmd_filter.py:86
|
||||
#: authentication/serializers/connect_token_secret.py:93
|
||||
#: authentication/serializers/connect_token_secret.py:101
|
||||
msgid "Reviewers"
|
||||
msgstr "승인자"
|
||||
|
||||
|
|
@ -1883,7 +1884,7 @@ msgstr "대소문자 무시"
|
|||
|
||||
#: acls/models/command_acl.py:33 acls/models/command_acl.py:97
|
||||
#: acls/serializers/command_acl.py:29
|
||||
#: authentication/serializers/connect_token_secret.py:90
|
||||
#: authentication/serializers/connect_token_secret.py:98
|
||||
#: terminal/templates/terminal/_msg_command_warning.html:23
|
||||
msgid "Command group"
|
||||
msgstr "명령 그룹"
|
||||
|
|
@ -1909,6 +1910,38 @@ msgstr "연결 방식"
|
|||
msgid "Connect method acl"
|
||||
msgstr "연결 방식 제어"
|
||||
|
||||
#: acls/models/data_masking.py:13
|
||||
msgid "Fixed Character Replacement"
|
||||
msgstr "고정 문자 교체"
|
||||
|
||||
#: acls/models/data_masking.py:14
|
||||
msgid "Hide Middle Characters"
|
||||
msgstr "중간 문자 숨기기"
|
||||
|
||||
#: acls/models/data_masking.py:15
|
||||
msgid "Keep Prefix Only"
|
||||
msgstr "접두사 유지"
|
||||
|
||||
#: acls/models/data_masking.py:16
|
||||
msgid "Keep Suffix Only"
|
||||
msgstr "접미사 유지"
|
||||
|
||||
#: acls/models/data_masking.py:21
|
||||
msgid "Fields pattern"
|
||||
msgstr "열 이름 가리기"
|
||||
|
||||
#: acls/models/data_masking.py:27 acls/serializers/data_masking.py:14
|
||||
msgid "Masking Method"
|
||||
msgstr "가리기 방법"
|
||||
|
||||
#: acls/models/data_masking.py:31
|
||||
msgid "Mask Pattern"
|
||||
msgstr "가리기 문자"
|
||||
|
||||
#: acls/models/data_masking.py:42
|
||||
msgid "Data Masking Rule"
|
||||
msgstr "데이터 마스킹 규칙"
|
||||
|
||||
#: acls/models/login_acl.py:11 acls/models/login_asset_acl.py:9
|
||||
#: acls/serializers/login_acl.py:16 acls/serializers/login_asset_acl.py:13
|
||||
msgid "Rule"
|
||||
|
|
@ -1943,6 +1976,14 @@ msgstr "사용자 로그인 알림"
|
|||
msgid "Login city"
|
||||
msgstr "로그인 도시"
|
||||
|
||||
#: acls/notifications.py:20 acls/notifications.py:71
|
||||
msgid "Recipient name"
|
||||
msgstr "수령인명"
|
||||
|
||||
#: acls/notifications.py:21 acls/notifications.py:72
|
||||
msgid "Recipient username"
|
||||
msgstr "수령인 사용자 이름"
|
||||
|
||||
#: acls/notifications.py:22 acls/templates/acls/user_login_reminder.html:12
|
||||
#: audits/models.py:213 audits/models.py:291 audits/serializers.py:91
|
||||
msgid "User agent"
|
||||
|
|
@ -2238,7 +2279,7 @@ msgstr "비활성화"
|
|||
#: assets/const/base.py:33 settings/serializers/basic.py:8
|
||||
#: users/serializers/preference/koko.py:19
|
||||
#: users/serializers/preference/lina.py:51
|
||||
#: users/serializers/preference/luna.py:85
|
||||
#: users/serializers/preference/luna.py:89
|
||||
msgid "Basic"
|
||||
msgstr "기본"
|
||||
|
||||
|
|
@ -2266,7 +2307,7 @@ msgstr "클라우드 서비스"
|
|||
|
||||
#: assets/const/category.py:14 assets/models/asset/gpt.py:11
|
||||
#: assets/models/asset/web.py:16 audits/const.py:46
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:77
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:83
|
||||
msgid "Web"
|
||||
msgstr "웹"
|
||||
|
||||
|
|
@ -2296,15 +2337,15 @@ msgstr "화웨이"
|
|||
|
||||
#: assets/const/device.py:9
|
||||
msgid "H3C"
|
||||
msgstr ""
|
||||
msgstr "H3C"
|
||||
|
||||
#: assets/const/device.py:10
|
||||
msgid "Juniper"
|
||||
msgstr ""
|
||||
msgstr "주니퍼"
|
||||
|
||||
#: assets/const/device.py:11
|
||||
msgid "TP-Link"
|
||||
msgstr ""
|
||||
msgstr "TP-Link"
|
||||
|
||||
#: assets/const/device.py:12 assets/const/ds.py:7
|
||||
#: terminal/models/applet/applet.py:27 tickets/const.py:9
|
||||
|
|
@ -2327,7 +2368,7 @@ msgstr "방화벽"
|
|||
msgid "Windows Active Directory"
|
||||
msgstr "Windows 활동 디렉토리"
|
||||
|
||||
#: assets/const/gpt.py:7
|
||||
#: assets/const/gpt.py:8
|
||||
msgid "ChatGPT"
|
||||
msgstr "ChatGPT"
|
||||
|
||||
|
|
@ -2448,7 +2489,7 @@ msgstr "암호화된"
|
|||
|
||||
#: assets/const/protocol.py:202
|
||||
msgid "Whether to use TLS encryption."
|
||||
msgstr ""
|
||||
msgstr "TLS 암호화를 사용할 것인지 여부."
|
||||
|
||||
#: assets/const/protocol.py:232
|
||||
msgid "Auth source"
|
||||
|
|
@ -2540,7 +2581,7 @@ msgstr "주소"
|
|||
#: assets/models/asset/common.py:169 assets/models/platform.py:155
|
||||
#: assets/serializers/asset/common.py:151
|
||||
#: authentication/backends/passkey/models.py:12
|
||||
#: authentication/serializers/connect_token_secret.py:122
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: perms/serializers/user_permission.py:26 xpack/plugins/cloud/models.py:399
|
||||
msgid "Platform"
|
||||
msgstr "플랫폼"
|
||||
|
|
@ -2733,7 +2774,7 @@ msgstr "시스템"
|
|||
#: assets/serializers/cagegory.py:11 assets/serializers/cagegory.py:18
|
||||
#: assets/serializers/cagegory.py:24
|
||||
#: authentication/models/connection_token.py:35
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: authentication/serializers/connect_token_secret.py:137
|
||||
#: common/serializers/common.py:86 labels/models.py:12 settings/models.py:40
|
||||
#: users/models/preference.py:13
|
||||
msgid "Value"
|
||||
|
|
@ -2742,7 +2783,7 @@ msgstr "값"
|
|||
#: assets/models/label.py:40 assets/serializers/cagegory.py:10
|
||||
#: assets/serializers/cagegory.py:17 assets/serializers/cagegory.py:23
|
||||
#: assets/serializers/platform.py:159
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
#: authentication/serializers/connect_token_secret.py:136
|
||||
#: common/serializers/common.py:85 labels/serializers.py:45
|
||||
#: settings/serializers/msg.py:91 xpack/plugins/cloud/models.py:404
|
||||
msgid "Label"
|
||||
|
|
@ -2793,7 +2834,7 @@ msgid "Required"
|
|||
msgstr "필수"
|
||||
|
||||
#: assets/models/platform.py:19 assets/serializers/platform.py:161
|
||||
#: terminal/models/component/storage.py:28
|
||||
#: terminal/models/component/storage.py:28 users/const.py:42
|
||||
#: xpack/plugins/cloud/providers/nutanix.py:30
|
||||
msgid "Default"
|
||||
msgstr "기본"
|
||||
|
|
@ -3065,7 +3106,7 @@ msgid "Disk total"
|
|||
msgstr "하드디스크 크기"
|
||||
|
||||
#: assets/serializers/asset/info/gathered.py:16
|
||||
#: authentication/serializers/connect_token_secret.py:119
|
||||
#: authentication/serializers/connect_token_secret.py:127
|
||||
msgid "OS"
|
||||
msgstr "운영 체제"
|
||||
|
||||
|
|
@ -3355,7 +3396,7 @@ msgstr "디렉터리 삭제"
|
|||
|
||||
#: audits/const.py:14 audits/const.py:25
|
||||
#: authentication/templates/authentication/_access_key_modal.html:65
|
||||
#: rbac/tree.py:292
|
||||
#: rbac/tree.py:293
|
||||
msgid "Delete"
|
||||
msgstr "삭제"
|
||||
|
||||
|
|
@ -3381,7 +3422,7 @@ msgstr "다운로드"
|
|||
msgid "Rename dir"
|
||||
msgstr "디렉터리 매핑"
|
||||
|
||||
#: audits/const.py:23 rbac/tree.py:290 terminal/api/session/session.py:285
|
||||
#: audits/const.py:23 rbac/tree.py:291 terminal/api/session/session.py:285
|
||||
#: terminal/templates/terminal/_msg_session_sharing.html:10
|
||||
#: xpack/plugins/cloud/manager.py:102
|
||||
msgid "View"
|
||||
|
|
@ -3389,7 +3430,7 @@ msgstr "조회"
|
|||
|
||||
#: audits/const.py:26
|
||||
#: authentication/templates/authentication/_access_key_modal.html:22
|
||||
#: rbac/tree.py:289
|
||||
#: rbac/tree.py:290
|
||||
msgid "Create"
|
||||
msgstr "생성"
|
||||
|
||||
|
|
@ -3542,7 +3583,7 @@ msgid "MFA"
|
|||
msgstr "MFA"
|
||||
|
||||
#: audits/models.py:219 terminal/models/session/sharing.py:123
|
||||
#: xpack/plugins/cloud/manager.py:187 xpack/plugins/cloud/models.py:237
|
||||
#: xpack/plugins/cloud/manager.py:186 xpack/plugins/cloud/models.py:237
|
||||
msgid "Reason"
|
||||
msgstr "원인"
|
||||
|
||||
|
|
@ -3793,6 +3834,10 @@ msgstr "사용자가 {}에서 옵니다. 해당 시스템에서 비밀번호를
|
|||
msgid "Forgot password"
|
||||
msgstr "비밀번호를 잊으셨나요"
|
||||
|
||||
#: authentication/api/password.py:70 authentication/mfa/email.py:42
|
||||
msgid "The validity period of the verification code is {} minute"
|
||||
msgstr "인증 코드의 유효 기간은 {} 분입니다."
|
||||
|
||||
#: authentication/apps.py:7
|
||||
msgid "App Authentication"
|
||||
msgstr "인증 관리"
|
||||
|
|
@ -4209,7 +4254,7 @@ msgid "Input secret"
|
|||
msgstr "비밀번호 사용자 정의"
|
||||
|
||||
#: authentication/models/connection_token.py:47
|
||||
#: authentication/serializers/connect_token_secret.py:118
|
||||
#: authentication/serializers/connect_token_secret.py:126
|
||||
#: terminal/models/applet/applet.py:43
|
||||
#: terminal/models/virtualapp/virtualapp.py:24
|
||||
#: terminal/serializers/session.py:31 terminal/serializers/session.py:58
|
||||
|
|
@ -4272,15 +4317,15 @@ msgstr "사용자가 없거나 사용자가 비활성화됨"
|
|||
msgid "No asset or inactive asset"
|
||||
msgstr "자산이 없거나 자산이 활성화되지 않음"
|
||||
|
||||
#: authentication/models/connection_token.py:348
|
||||
#: authentication/models/connection_token.py:360
|
||||
msgid "Can view super connection token secret"
|
||||
msgstr "슈퍼 연결 토큰 암호를 볼 수 있음"
|
||||
|
||||
#: authentication/models/connection_token.py:350
|
||||
#: authentication/models/connection_token.py:362
|
||||
msgid "Super connection token"
|
||||
msgstr "슈퍼 연결 토큰"
|
||||
|
||||
#: authentication/models/connection_token.py:367
|
||||
#: authentication/models/connection_token.py:379
|
||||
msgid "Admin connection token"
|
||||
msgstr "관리자 연결 토큰"
|
||||
|
||||
|
|
@ -4332,38 +4377,38 @@ msgstr "OAuth ID"
|
|||
msgid "binding reminder"
|
||||
msgstr "바인딩 알림"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:120
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
msgid "Is builtin"
|
||||
msgstr "내장된"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:124
|
||||
#: authentication/serializers/connect_token_secret.py:132
|
||||
msgid "Options"
|
||||
msgstr "옵션"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/serializers/connect_token_secret.py:139
|
||||
#: ops/notifications.py:19 rbac/tree.py:63
|
||||
msgid "Component"
|
||||
msgstr "구성 요소"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:140
|
||||
#: authentication/serializers/connect_token_secret.py:148
|
||||
msgid "Domain"
|
||||
msgstr "도메인"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:142
|
||||
#: authentication/serializers/connect_token_secret.py:151
|
||||
msgid "Expired now"
|
||||
msgstr "즉시 만료"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:175
|
||||
#: authentication/serializers/connect_token_secret.py:184
|
||||
#: terminal/models/virtualapp/virtualapp.py:25
|
||||
msgid "Image name"
|
||||
msgstr "이미지 이름"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:176
|
||||
#: authentication/serializers/connect_token_secret.py:185
|
||||
#: terminal/models/virtualapp/virtualapp.py:27
|
||||
msgid "Image port"
|
||||
msgstr "이미지 포트"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:177
|
||||
#: authentication/serializers/connect_token_secret.py:186
|
||||
#: terminal/models/virtualapp/virtualapp.py:26
|
||||
msgid "Image protocol"
|
||||
msgstr "이미지 프로토콜"
|
||||
|
|
@ -4472,13 +4517,13 @@ msgid "Show"
|
|||
msgstr "표시"
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:66
|
||||
#: settings/serializers/terminal.py:24 users/const.py:42
|
||||
#: settings/serializers/terminal.py:24 users/const.py:48
|
||||
#: users/templates/users/user_verify_mfa.html:36
|
||||
msgid "Disable"
|
||||
msgstr "비활성화"
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:67
|
||||
#: settings/serializers/terminal.py:24 users/const.py:43
|
||||
#: settings/serializers/terminal.py:24 users/const.py:49
|
||||
#: users/templates/users/mfa_setting.html:120
|
||||
#: users/templates/users/mfa_setting.html:158
|
||||
#: users/templates/users/mfa_setting.html:177
|
||||
|
|
@ -4537,16 +4582,11 @@ msgid ""
|
|||
"account password in time."
|
||||
msgstr "이번 로그인 행위가 이상하다고 생각되시면, 즉시 계정 비밀번호를 수정하시기 바랍니다."
|
||||
|
||||
#: authentication/templates/authentication/_msg_mfa_email_code.html:15
|
||||
#: authentication/templates/authentication/_msg_reset_password_code.html:18
|
||||
msgid "The validity period of the verification code is one minute"
|
||||
msgstr "인증 코드의 유효 기간은 1분입니다."
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:6
|
||||
msgid "Your account has just been bound to"
|
||||
msgstr "귀하의 계정이 방금"
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:17
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:15
|
||||
msgid "If the operation is not your own, unbind and change the password."
|
||||
msgstr "바로 본인이 한 조작이 아니라면, 연결을 해제하고 비밀번호를 수정해 주시기 바랍니다."
|
||||
|
||||
|
|
@ -4888,7 +4928,7 @@ msgstr "기업 전문 버전"
|
|||
msgid "Ultimate edition"
|
||||
msgstr "기업 플래그십 버전"
|
||||
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:452
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:451
|
||||
#, python-format
|
||||
msgid "%(name)s was created successfully"
|
||||
msgstr "%(name)s가 생성되었습니다."
|
||||
|
|
@ -5257,11 +5297,11 @@ msgid ""
|
|||
" this task needs to be executed for sending emails and handling attachments"
|
||||
msgstr "계정 비밀번호 변경 시 계정 백업으로 생성된 첨부 파일에 대해 이메일 및 첨부 파일 전송 이 작업을 수행해야 합니다"
|
||||
|
||||
#: common/tasks.py:107
|
||||
#: common/tasks.py:104
|
||||
msgid "Upload account backup to external storage"
|
||||
msgstr "외부 저장소에 세션 녹화 업로드"
|
||||
|
||||
#: common/tasks.py:109
|
||||
#: common/tasks.py:106
|
||||
msgid ""
|
||||
"When performing an account backup, this task needs to be executed to "
|
||||
"external storage (SFTP)"
|
||||
|
|
@ -5685,7 +5725,7 @@ msgstr "* 유효한 크론탭 표현식을 입력하세요"
|
|||
|
||||
#: ops/mixin.py:194
|
||||
msgid "Crontab minute must not contain '*'"
|
||||
msgstr ""
|
||||
msgstr "Crontab 분에는 \"*\"를 포함할 수 없습니다."
|
||||
|
||||
#: ops/mixin.py:208 settings/serializers/auth/mixin.py:12
|
||||
msgid "Require interval or crontab setting"
|
||||
|
|
@ -6464,7 +6504,7 @@ msgid "Storage"
|
|||
msgstr "저장소"
|
||||
|
||||
#: rbac/tree.py:64 terminal/models/applet/applet.py:53
|
||||
#: terminal/models/applet/applet.py:371 terminal/models/applet/host.py:30
|
||||
#: terminal/models/applet/applet.py:379 terminal/models/applet/host.py:30
|
||||
#: terminal/serializers/applet.py:16
|
||||
msgid "Applet"
|
||||
msgstr "원격 애플리케이션"
|
||||
|
|
@ -6486,24 +6526,24 @@ msgstr "작업 감사"
|
|||
msgid "Report"
|
||||
msgstr "보고서"
|
||||
|
||||
#: rbac/tree.py:181
|
||||
#: rbac/tree.py:182
|
||||
msgid "App organizations"
|
||||
msgstr "조직 관리"
|
||||
|
||||
#: rbac/tree.py:182
|
||||
#: rbac/tree.py:183
|
||||
msgid "Ticket comment"
|
||||
msgstr "작업 댓글"
|
||||
|
||||
#: rbac/tree.py:183 settings/serializers/feature.py:174
|
||||
#: rbac/tree.py:184 settings/serializers/feature.py:174
|
||||
#: settings/serializers/feature.py:176 tickets/models/ticket/general.py:310
|
||||
msgid "Ticket"
|
||||
msgstr "작업"
|
||||
|
||||
#: rbac/tree.py:184
|
||||
#: rbac/tree.py:185
|
||||
msgid "Common setting"
|
||||
msgstr "일반 설정"
|
||||
|
||||
#: rbac/tree.py:185
|
||||
#: rbac/tree.py:186
|
||||
msgid "View permission tree"
|
||||
msgstr "권한 트리 보기"
|
||||
|
||||
|
|
@ -6547,6 +6587,14 @@ msgstr "PAM 대시보드"
|
|||
msgid "ChangeSecretDashboard"
|
||||
msgstr "계정 비밀번호 변경 대시보드"
|
||||
|
||||
#: reports/views.py:181
|
||||
msgid "Failed to send email: "
|
||||
msgstr "메일 전송 실패"
|
||||
|
||||
#: reports/views.py:182
|
||||
msgid "Email sent successfully to "
|
||||
msgstr "메일 전송 성공"
|
||||
|
||||
#: settings/api/chat.py:41
|
||||
msgid "Chat AI is not enabled"
|
||||
msgstr "채팅 AI가 활성화되어 있지 않습니다"
|
||||
|
|
@ -6584,7 +6632,7 @@ msgstr "시스템 설정"
|
|||
|
||||
#: settings/const.py:13
|
||||
msgid "Embed"
|
||||
msgstr ""
|
||||
msgstr "임베드"
|
||||
|
||||
#: settings/models.py:42 users/models/preference.py:14
|
||||
msgid "Encrypted"
|
||||
|
|
@ -6837,7 +6885,7 @@ msgstr ""
|
|||
|
||||
#: settings/serializers/auth/lark.py:13 users/models/user/_source.py:24
|
||||
msgid "Lark"
|
||||
msgstr ""
|
||||
msgstr "Lark"
|
||||
|
||||
#: settings/serializers/auth/lark.py:19
|
||||
msgid ""
|
||||
|
|
@ -7017,7 +7065,7 @@ msgstr "항상 사용자 정보를 업데이트합니다"
|
|||
|
||||
#: settings/serializers/auth/oidc.py:13 settings/serializers/auth/oidc.py:71
|
||||
msgid "OIDC"
|
||||
msgstr ""
|
||||
msgstr "OIDC"
|
||||
|
||||
#: settings/serializers/auth/oidc.py:17
|
||||
msgid "Base site URL"
|
||||
|
|
@ -7081,6 +7129,8 @@ msgid ""
|
|||
"The issuer URL of the OpenID Provider, used to discover its configuration "
|
||||
"via the `$PROVIDER_ENDPOINT/.well-known/openid-configuration` endpoint."
|
||||
msgstr ""
|
||||
"OpenID 공급자의 발행자 URL로, \"$PROVIDER_ENDPOINT/.well-known/openid-"
|
||||
"configuration\" 엔드포인트를 통해 그 구성을 발견하는 데 사용됩니다."
|
||||
|
||||
#: settings/serializers/auth/oidc.py:87
|
||||
msgid "JWKS endpoint"
|
||||
|
|
@ -7439,7 +7489,7 @@ msgid "Tenant ID"
|
|||
msgstr "임대인 ID"
|
||||
|
||||
#: settings/serializers/feature.py:112 terminal/serializers/storage.py:68
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:124
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:123
|
||||
#: xpack/plugins/cloud/models.py:293
|
||||
msgid "Region"
|
||||
msgstr "지역"
|
||||
|
|
@ -8252,7 +8302,7 @@ msgstr "업데이트 템플릿 다운로드"
|
|||
|
||||
#: templates/_foot_js.html:30
|
||||
msgid "Page footer"
|
||||
msgstr ""
|
||||
msgstr "페이지 하단"
|
||||
|
||||
#: templates/_header_bar.html:12
|
||||
msgid "Help"
|
||||
|
|
@ -8356,7 +8406,7 @@ msgid ""
|
|||
msgstr "외부 웹사이트로 이동하고자 합니다. 해당 링크를 신뢰하는지 확인해 주시기 바랍니다."
|
||||
|
||||
#: templates/resource_download.html:20 templates/resource_download.html:35
|
||||
#: users/const.py:78
|
||||
#: users/const.py:84
|
||||
msgid "Client"
|
||||
msgstr "클라이언트"
|
||||
|
||||
|
|
@ -8642,12 +8692,12 @@ msgstr "사용자 정의 플랫폼만 지원합니다"
|
|||
msgid "Missing type in platform.yml"
|
||||
msgstr "platform.yml에 유형이 누락되었습니다"
|
||||
|
||||
#: terminal/models/applet/applet.py:373 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/applet.py:381 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/host.py:138
|
||||
msgid "Hosting"
|
||||
msgstr "호스트 머신"
|
||||
|
||||
#: terminal/models/applet/applet.py:379
|
||||
#: terminal/models/applet/applet.py:387
|
||||
msgid "Applet Publication"
|
||||
msgstr "애플리케이션 배포"
|
||||
|
||||
|
|
@ -8797,7 +8847,7 @@ msgstr "응용 사용자"
|
|||
msgid "Can view terminal config"
|
||||
msgstr "터미널 구성 조회 가능"
|
||||
|
||||
#: terminal/models/session/command.py:76
|
||||
#: terminal/models/session/command.py:77
|
||||
msgid "Command record"
|
||||
msgstr "명령 기록"
|
||||
|
||||
|
|
@ -9709,11 +9759,11 @@ msgstr "새 작업 티켓이 있습니다, 신청인 - {}"
|
|||
msgid "{}: New Ticket - {} ({})"
|
||||
msgstr "새 작업 티켓 - {} ({})"
|
||||
|
||||
#: tickets/notifications.py:160
|
||||
#: tickets/notifications.py:168
|
||||
msgid "Your ticket has been processed, processor - {}"
|
||||
msgstr "귀하의 작업 티켓이 처리되었습니다, 처리자 - {}"
|
||||
|
||||
#: tickets/notifications.py:164
|
||||
#: tickets/notifications.py:172
|
||||
msgid "Ticket has processed - {} ({})"
|
||||
msgstr "귀하의 작업 티켓이 처리되었습니다, 처리자 - {} ({})"
|
||||
|
||||
|
|
@ -9883,23 +9933,31 @@ msgstr "현재 창"
|
|||
msgid "New window"
|
||||
msgstr "새 창"
|
||||
|
||||
#: users/const.py:47
|
||||
#: users/const.py:43
|
||||
msgid "Dark gray"
|
||||
msgstr "짙은 회색"
|
||||
|
||||
#: users/const.py:44
|
||||
msgid "Deep blue"
|
||||
msgstr "짙은 파랑"
|
||||
|
||||
#: users/const.py:53
|
||||
msgid "High(32 bit)"
|
||||
msgstr "높음 (32 비트)"
|
||||
|
||||
#: users/const.py:48
|
||||
#: users/const.py:54
|
||||
msgid "True Color(24 bit)"
|
||||
msgstr ""
|
||||
msgstr "진짜 색상(24비트)"
|
||||
|
||||
#: users/const.py:49
|
||||
#: users/const.py:55
|
||||
msgid "Medium(16 bit)"
|
||||
msgstr "중간 (16 비트)"
|
||||
|
||||
#: users/const.py:82
|
||||
#: users/const.py:88
|
||||
msgid "Replace"
|
||||
msgstr "교체"
|
||||
|
||||
#: users/const.py:83
|
||||
#: users/const.py:89
|
||||
msgid "Suffix"
|
||||
msgstr "접미사 추가"
|
||||
|
||||
|
|
@ -10112,7 +10170,7 @@ msgstr "SSH 키 재설정"
|
|||
|
||||
#: users/notifications.py:253
|
||||
msgid "Update SSH Key url"
|
||||
msgstr ""
|
||||
msgstr "SSH 키 주소 업데이트"
|
||||
|
||||
#: users/notifications.py:276
|
||||
msgid "Reset MFA"
|
||||
|
|
@ -10123,12 +10181,12 @@ msgid "Reset MFA url"
|
|||
msgstr "MFA 재설정 웹사이트"
|
||||
|
||||
#: users/serializers/preference/koko.py:10
|
||||
#: users/serializers/preference/luna.py:63
|
||||
#: users/serializers/preference/luna.py:67
|
||||
msgid "File name conflict resolution"
|
||||
msgstr "파일 이름 충돌 해결 방법"
|
||||
|
||||
#: users/serializers/preference/koko.py:14
|
||||
#: users/serializers/preference/luna.py:80
|
||||
#: users/serializers/preference/luna.py:84
|
||||
msgid "Terminal theme name"
|
||||
msgstr "터미널 테마 이름"
|
||||
|
||||
|
|
@ -10161,54 +10219,60 @@ msgstr "비동기식 자산 트리 로드"
|
|||
msgid "Connect default open method"
|
||||
msgstr "연결 기본 열기 방식"
|
||||
|
||||
#: users/serializers/preference/luna.py:37
|
||||
#: users/serializers/preference/luna.py:34
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr "테마"
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
msgid "RDP resolution"
|
||||
msgstr "RDP 해상도"
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
#: users/serializers/preference/luna.py:45
|
||||
msgid "Keyboard layout"
|
||||
msgstr "키보드 레이아웃"
|
||||
|
||||
#: users/serializers/preference/luna.py:45
|
||||
#: users/serializers/preference/luna.py:49
|
||||
msgid "RDP client option"
|
||||
msgstr "RDP 클라이언트 옵션"
|
||||
|
||||
#: users/serializers/preference/luna.py:49
|
||||
#: users/serializers/preference/luna.py:53
|
||||
msgid "RDP color quality"
|
||||
msgstr "RDP 색상 품질"
|
||||
|
||||
#: users/serializers/preference/luna.py:53
|
||||
#: users/serializers/preference/luna.py:57
|
||||
msgid "RDP smart size"
|
||||
msgstr "RDP 스마트 크기"
|
||||
|
||||
#: users/serializers/preference/luna.py:54
|
||||
#: users/serializers/preference/luna.py:58
|
||||
msgid ""
|
||||
"Determines whether the client computer should scale the content on the "
|
||||
"remote computer to fit the window size of the client computer when the "
|
||||
"window is resized."
|
||||
msgstr "확인: 클라이언트 컴퓨터가 창 크기에 맞게 원격 컴퓨터의 내용을 축소해야 하는지 여부"
|
||||
|
||||
#: users/serializers/preference/luna.py:59
|
||||
#: users/serializers/preference/luna.py:63
|
||||
msgid "Remote app connect method"
|
||||
msgstr "원격 애플리케이션 연결 방식"
|
||||
|
||||
#: users/serializers/preference/luna.py:70
|
||||
#: users/serializers/preference/luna.py:74
|
||||
msgid "Terminal font size"
|
||||
msgstr "문자 터미널 글꼴 크기"
|
||||
|
||||
#: users/serializers/preference/luna.py:73
|
||||
#: users/serializers/preference/luna.py:77
|
||||
msgid "Backspace as Ctrl+H"
|
||||
msgstr "문자 터미널 백스페이스를 Ctrl+H로"
|
||||
|
||||
#: users/serializers/preference/luna.py:76
|
||||
#: users/serializers/preference/luna.py:80
|
||||
msgid "Right click quickly paste"
|
||||
msgstr "우클릭 빠른 붙여넣기"
|
||||
|
||||
#: users/serializers/preference/luna.py:86
|
||||
#: users/serializers/preference/luna.py:90
|
||||
msgid "Graphics"
|
||||
msgstr "그래픽화"
|
||||
|
||||
#: users/serializers/preference/luna.py:87
|
||||
#: users/serializers/preference/luna.py:91
|
||||
msgid "Command line"
|
||||
msgstr "명령행"
|
||||
|
||||
|
|
@ -10786,7 +10850,7 @@ msgstr "ZStack"
|
|||
|
||||
#: xpack/plugins/cloud/const.py:30 xpack/plugins/cloud/providers/smartx.py:9
|
||||
msgid "SmartX CloudTower"
|
||||
msgstr ""
|
||||
msgstr "SmartX 클라우드 타워"
|
||||
|
||||
#: xpack/plugins/cloud/const.py:31
|
||||
msgid "Fusion Compute"
|
||||
|
|
@ -10889,64 +10953,64 @@ msgstr "작업 실행 완료"
|
|||
msgid "Synchronization regions"
|
||||
msgstr "동기화 지역"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:141
|
||||
#: xpack/plugins/cloud/manager.py:140
|
||||
#, python-format
|
||||
msgid "Get instances of region \"%s\" error, error: %s"
|
||||
msgstr "영역 \"%s\"의 인스턴스 오류를 가져오는 중, 오류: %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:186
|
||||
#: xpack/plugins/cloud/manager.py:185
|
||||
#, python-format
|
||||
msgid "Failed to synchronize the instance \"%s\""
|
||||
msgstr "인스턴스 %s을(를) 동기화할 수 없습니다"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:377
|
||||
#: xpack/plugins/cloud/manager.py:376
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The updated platform of asset \"%s\" is inconsistent with the original "
|
||||
"platform type. Skip platform and protocol updates"
|
||||
msgstr "자산 \"%s\"의 업데이트 플랫폼과 원래 플랫폼 유형이 일치하지 않습니다. 플랫폼 및 프로토콜 업데이트를 건너뜁니다"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:434
|
||||
#: xpack/plugins/cloud/manager.py:433
|
||||
#, python-format
|
||||
msgid "The asset \"%s\" already exists"
|
||||
msgstr "자산 \"%s\"가 이미 존재합니다"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:436
|
||||
#: xpack/plugins/cloud/manager.py:435
|
||||
#, python-format
|
||||
msgid "Update asset \"%s\""
|
||||
msgstr "자산 \"%s\" 업데이트됨"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:439
|
||||
#: xpack/plugins/cloud/manager.py:438
|
||||
#, python-format
|
||||
msgid "Asset \"%s\" has been updated"
|
||||
msgstr "자산 \"%s\"이 업데이트되었습니다"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:448
|
||||
#: xpack/plugins/cloud/manager.py:447
|
||||
#, python-format
|
||||
msgid "Prepare to create asset \"%s\""
|
||||
msgstr "자산 %s 생성 준비 중"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:469
|
||||
#: xpack/plugins/cloud/manager.py:468
|
||||
#, python-format
|
||||
msgid "Set nodes \"%s\""
|
||||
msgstr "노드 설정: \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:495
|
||||
#: xpack/plugins/cloud/manager.py:494
|
||||
#, python-format
|
||||
msgid "Set accounts \"%s\""
|
||||
msgstr "계정 설정: %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:511
|
||||
#: xpack/plugins/cloud/manager.py:510
|
||||
#, python-format
|
||||
msgid "Set protocols \"%s\""
|
||||
msgstr "프로토콜 설정: \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:519
|
||||
#: xpack/plugins/cloud/manager.py:518
|
||||
#, python-format
|
||||
msgid "Set labels \"%s\""
|
||||
msgstr "태그 설정: \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:533 xpack/plugins/cloud/tasks.py:31
|
||||
#: xpack/plugins/cloud/manager.py:532 xpack/plugins/cloud/tasks.py:31
|
||||
msgid "Run sync instance task"
|
||||
msgstr "동기화 인스턴스 작업 실행"
|
||||
|
||||
|
|
@ -11480,11 +11544,6 @@ msgstr "관리 페이지 로고"
|
|||
msgid "Logout logo"
|
||||
msgstr "로그아웃"
|
||||
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr "테마"
|
||||
|
||||
#: xpack/plugins/interface/models.py:42
|
||||
msgid "Footer content"
|
||||
msgstr "바닥글 내용"
|
||||
|
|
@ -11505,6 +11564,14 @@ msgstr "라이센스 가져오기 성공"
|
|||
msgid "Invalid license"
|
||||
msgstr "라이센스가 유효하지 않습니다."
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Themes"
|
||||
#~ msgstr "테마"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "domain_name"
|
||||
#~ msgstr "도메인 이름."
|
||||
|
||||
#~ msgid "Task execution id"
|
||||
#~ msgstr "작업 실행 ID"
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-17 15:02+0800\n"
|
||||
"POT-Creation-Date: 2025-10-16 14:10+0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -18,7 +18,7 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: accounts/api/account/account.py:138
|
||||
#: accounts/api/account/account.py:141
|
||||
#: accounts/serializers/account/account.py:181
|
||||
#: accounts/serializers/account/account.py:362
|
||||
msgid "Account already exists"
|
||||
|
|
@ -96,7 +96,7 @@ msgstr "Execução do plano concluída"
|
|||
|
||||
#: accounts/automations/base/manager.py:119
|
||||
msgid "Windows does not support SSH key authentication"
|
||||
msgstr ""
|
||||
msgstr "Windows não suporta autenticação por chave SSH"
|
||||
|
||||
#: accounts/automations/base/manager.py:123
|
||||
msgid "Windows password cannot contain special characters like > ^"
|
||||
|
|
@ -210,7 +210,7 @@ msgstr "Modelo"
|
|||
msgid "Skip"
|
||||
msgstr "Pular"
|
||||
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:291
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:292
|
||||
#: templates/_csv_import_export.html:18 templates/_csv_update_modal.html:6
|
||||
msgid "Update"
|
||||
msgstr "Atualizar"
|
||||
|
|
@ -579,17 +579,18 @@ msgstr "Atividade da conta"
|
|||
#: accounts/serializers/account/service.py:29
|
||||
#: accounts/serializers/account/virtual.py:20 acls/models/base.py:35
|
||||
#: acls/models/base.py:96 acls/models/command_acl.py:21
|
||||
#: acls/notifications.py:69 acls/serializers/base.py:35
|
||||
#: assets/models/asset/common.py:100 assets/models/asset/common.py:166
|
||||
#: assets/models/cmd_filter.py:21 assets/models/label.py:18
|
||||
#: assets/models/platform.py:15 assets/models/platform.py:94
|
||||
#: assets/models/zone.py:19 assets/serializers/asset/common.py:174
|
||||
#: assets/serializers/platform.py:158 assets/serializers/platform.py:283
|
||||
#: acls/models/data_masking.py:20 acls/notifications.py:69
|
||||
#: acls/serializers/base.py:35 assets/models/asset/common.py:100
|
||||
#: assets/models/asset/common.py:166 assets/models/cmd_filter.py:21
|
||||
#: assets/models/label.py:18 assets/models/platform.py:15
|
||||
#: assets/models/platform.py:94 assets/models/zone.py:19
|
||||
#: assets/serializers/asset/common.py:174 assets/serializers/platform.py:158
|
||||
#: assets/serializers/platform.py:283
|
||||
#: authentication/backends/passkey/models.py:10
|
||||
#: authentication/models/ssh_key.py:12 authentication/notifications.py:17
|
||||
#: authentication/notifications.py:56
|
||||
#: authentication/serializers/connect_token_secret.py:117
|
||||
#: authentication/serializers/connect_token_secret.py:174 labels/models.py:11
|
||||
#: authentication/serializers/connect_token_secret.py:125
|
||||
#: authentication/serializers/connect_token_secret.py:183 labels/models.py:11
|
||||
#: ops/mixin.py:32 ops/models/adhoc.py:19 ops/models/celery.py:15
|
||||
#: ops/models/celery.py:81 ops/models/job.py:147 ops/models/playbook.py:28
|
||||
#: ops/models/variable.py:9 ops/serializers/job.py:20
|
||||
|
|
@ -783,7 +784,7 @@ msgstr "Data de fim"
|
|||
#: assets/models/automations/base.py:137
|
||||
#: assets/serializers/automations/base.py:47 audits/models.py:224
|
||||
#: audits/serializers.py:77 ops/models/base.py:49 ops/models/job.py:233
|
||||
#: terminal/models/applet/applet.py:374 terminal/models/applet/host.py:140
|
||||
#: terminal/models/applet/applet.py:382 terminal/models/applet/host.py:140
|
||||
#: terminal/models/component/status.py:30
|
||||
#: terminal/models/virtualapp/virtualapp.py:99
|
||||
#: terminal/serializers/applet.py:19 terminal/serializers/applet_host.py:163
|
||||
|
|
@ -939,7 +940,7 @@ msgstr "Risco de conta"
|
|||
|
||||
#: accounts/models/automations/check_account.py:119
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
msgstr "Identificador de URL"
|
||||
|
||||
#: accounts/models/automations/check_account.py:125
|
||||
msgid "Check engine"
|
||||
|
|
@ -1060,7 +1061,7 @@ msgstr "Regras de senha"
|
|||
|
||||
#: accounts/models/base.py:69 assets/models/automations/base.py:28
|
||||
#: assets/models/cmd_filter.py:39 assets/models/label.py:22
|
||||
#: authentication/serializers/connect_token_secret.py:121
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: terminal/models/applet/applet.py:41
|
||||
#: terminal/models/virtualapp/virtualapp.py:23 users/serializers/user.py:257
|
||||
msgid "Is active"
|
||||
|
|
@ -1242,7 +1243,7 @@ msgstr "Categoria"
|
|||
#: assets/serializers/platform.py:160 assets/serializers/platform.py:172
|
||||
#: audits/serializers.py:76 audits/serializers.py:196
|
||||
#: authentication/models/connection_token.py:67
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: authentication/serializers/connect_token_secret.py:138
|
||||
#: ops/models/job.py:155 perms/serializers/user_permission.py:28
|
||||
#: terminal/models/applet/applet.py:40 terminal/models/component/storage.py:58
|
||||
#: terminal/models/component/storage.py:152 terminal/serializers/applet.py:30
|
||||
|
|
@ -1267,7 +1268,7 @@ msgstr "Serviço de diretório"
|
|||
#: accounts/serializers/account/account.py:278
|
||||
#, python-brace-format
|
||||
msgid "Account already exists. Field(s): {fields} must be unique."
|
||||
msgstr ""
|
||||
msgstr "Conta já existe. O campo: {fields} deve ser único."
|
||||
|
||||
#: accounts/serializers/account/account.py:285
|
||||
msgid "Has secret"
|
||||
|
|
@ -1314,7 +1315,7 @@ msgid "Spec info"
|
|||
msgstr "Informações especiais"
|
||||
|
||||
#: accounts/serializers/account/account.py:493
|
||||
#: authentication/serializers/connect_token_secret.py:164
|
||||
#: authentication/serializers/connect_token_secret.py:173
|
||||
#: authentication/templates/authentication/_access_key_modal.html:30
|
||||
#: perms/models/perm_node.py:21 users/serializers/group.py:33
|
||||
msgid "ID"
|
||||
|
|
@ -1373,7 +1374,7 @@ msgstr "Lista branca de IP"
|
|||
#: assets/models/cmd_filter.py:88 common/db/models.py:36
|
||||
#: ops/models/adhoc.py:25 ops/models/job.py:165 ops/models/playbook.py:31
|
||||
#: rbac/models/role.py:37 settings/models.py:44
|
||||
#: terminal/models/applet/applet.py:46 terminal/models/applet/applet.py:375
|
||||
#: terminal/models/applet/applet.py:46 terminal/models/applet/applet.py:383
|
||||
#: terminal/models/applet/host.py:143 terminal/models/component/endpoint.py:29
|
||||
#: terminal/models/component/endpoint.py:117
|
||||
#: terminal/models/session/session.py:44
|
||||
|
|
@ -1906,7 +1907,7 @@ msgstr ""
|
|||
#: acls/models/base.py:41 acls/serializers/base.py:57
|
||||
#: assets/models/cmd_filter.py:81 audits/models.py:99
|
||||
#: audits/serializers.py:107
|
||||
#: authentication/serializers/connect_token_secret.py:123
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/templates/authentication/_access_key_modal.html:34
|
||||
#: perms/serializers/permission.py:63 perms/serializers/permission.py:85
|
||||
#: terminal/backends/command/models.py:24
|
||||
|
|
@ -1915,7 +1916,7 @@ msgid "Action"
|
|||
msgstr "Action"
|
||||
|
||||
#: acls/models/base.py:42 assets/models/cmd_filter.py:86
|
||||
#: authentication/serializers/connect_token_secret.py:93
|
||||
#: authentication/serializers/connect_token_secret.py:101
|
||||
msgid "Reviewers"
|
||||
msgstr "Aprovador"
|
||||
|
||||
|
|
@ -1956,7 +1957,7 @@ msgstr "Ignorar Maiúsculas e Minúsculas"
|
|||
|
||||
#: acls/models/command_acl.py:33 acls/models/command_acl.py:97
|
||||
#: acls/serializers/command_acl.py:29
|
||||
#: authentication/serializers/connect_token_secret.py:90
|
||||
#: authentication/serializers/connect_token_secret.py:98
|
||||
#: terminal/templates/terminal/_msg_command_warning.html:23
|
||||
msgid "Command group"
|
||||
msgstr "Grupo de Comandos"
|
||||
|
|
@ -1982,6 +1983,38 @@ msgstr "Modo de conexão"
|
|||
msgid "Connect method acl"
|
||||
msgstr "Controle de modo de conexão"
|
||||
|
||||
#: acls/models/data_masking.py:13
|
||||
msgid "Fixed Character Replacement"
|
||||
msgstr "Substituição de caracteres fixos"
|
||||
|
||||
#: acls/models/data_masking.py:14
|
||||
msgid "Hide Middle Characters"
|
||||
msgstr "Ocultar caracteres intermediários"
|
||||
|
||||
#: acls/models/data_masking.py:15
|
||||
msgid "Keep Prefix Only"
|
||||
msgstr "Manter prefixo"
|
||||
|
||||
#: acls/models/data_masking.py:16
|
||||
msgid "Keep Suffix Only"
|
||||
msgstr "Manter sufixo"
|
||||
|
||||
#: acls/models/data_masking.py:21
|
||||
msgid "Fields pattern"
|
||||
msgstr "Ocultar nome da coluna"
|
||||
|
||||
#: acls/models/data_masking.py:27 acls/serializers/data_masking.py:14
|
||||
msgid "Masking Method"
|
||||
msgstr "Método de ocultação"
|
||||
|
||||
#: acls/models/data_masking.py:31
|
||||
msgid "Mask Pattern"
|
||||
msgstr "Caracteres de ocultação"
|
||||
|
||||
#: acls/models/data_masking.py:42
|
||||
msgid "Data Masking Rule"
|
||||
msgstr "Regras de mascaramento de dados"
|
||||
|
||||
#: acls/models/login_acl.py:11 acls/models/login_asset_acl.py:9
|
||||
#: acls/serializers/login_acl.py:16 acls/serializers/login_asset_acl.py:13
|
||||
msgid "Rule"
|
||||
|
|
@ -2016,6 +2049,14 @@ msgstr "Alerta de login do usuário"
|
|||
msgid "Login city"
|
||||
msgstr "Cidade do login"
|
||||
|
||||
#: acls/notifications.py:20 acls/notifications.py:71
|
||||
msgid "Recipient name"
|
||||
msgstr "Nome do destinatário"
|
||||
|
||||
#: acls/notifications.py:21 acls/notifications.py:72
|
||||
msgid "Recipient username"
|
||||
msgstr "Nome de usuário do destinatário"
|
||||
|
||||
#: acls/notifications.py:22 acls/templates/acls/user_login_reminder.html:12
|
||||
#: audits/models.py:213 audits/models.py:291 audits/serializers.py:91
|
||||
msgid "User agent"
|
||||
|
|
@ -2318,7 +2359,7 @@ msgstr "Desativado"
|
|||
#: assets/const/base.py:33 settings/serializers/basic.py:8
|
||||
#: users/serializers/preference/koko.py:19
|
||||
#: users/serializers/preference/lina.py:51
|
||||
#: users/serializers/preference/luna.py:85
|
||||
#: users/serializers/preference/luna.py:89
|
||||
msgid "Basic"
|
||||
msgstr "Básico"
|
||||
|
||||
|
|
@ -2346,7 +2387,7 @@ msgstr "Serviço de nuvem"
|
|||
|
||||
#: assets/const/category.py:14 assets/models/asset/gpt.py:11
|
||||
#: assets/models/asset/web.py:16 audits/const.py:46
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:77
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:83
|
||||
msgid "Web"
|
||||
msgstr "Web"
|
||||
|
||||
|
|
@ -2376,15 +2417,15 @@ msgstr "Huawei."
|
|||
|
||||
#: assets/const/device.py:9
|
||||
msgid "H3C"
|
||||
msgstr ""
|
||||
msgstr "H3C"
|
||||
|
||||
#: assets/const/device.py:10
|
||||
msgid "Juniper"
|
||||
msgstr ""
|
||||
msgstr "Juniper"
|
||||
|
||||
#: assets/const/device.py:11
|
||||
msgid "TP-Link"
|
||||
msgstr ""
|
||||
msgstr "TP-Link"
|
||||
|
||||
#: assets/const/device.py:12 assets/const/ds.py:7
|
||||
#: terminal/models/applet/applet.py:27 tickets/const.py:9
|
||||
|
|
@ -2407,7 +2448,7 @@ msgstr "Firewall"
|
|||
msgid "Windows Active Directory"
|
||||
msgstr "Diretório Ativo do Windows"
|
||||
|
||||
#: assets/const/gpt.py:7
|
||||
#: assets/const/gpt.py:8
|
||||
msgid "ChatGPT"
|
||||
msgstr "ChatGPT"
|
||||
|
||||
|
|
@ -2535,7 +2576,7 @@ msgstr "Métodos de login de terceiros criptografados incluem:"
|
|||
|
||||
#: assets/const/protocol.py:202
|
||||
msgid "Whether to use TLS encryption."
|
||||
msgstr ""
|
||||
msgstr "É utilizado criptografia TLS?"
|
||||
|
||||
#: assets/const/protocol.py:232
|
||||
msgid "Auth source"
|
||||
|
|
@ -2633,7 +2674,7 @@ msgstr "Endereço"
|
|||
#: assets/models/asset/common.py:169 assets/models/platform.py:155
|
||||
#: assets/serializers/asset/common.py:151
|
||||
#: authentication/backends/passkey/models.py:12
|
||||
#: authentication/serializers/connect_token_secret.py:122
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: perms/serializers/user_permission.py:26 xpack/plugins/cloud/models.py:399
|
||||
msgid "Platform"
|
||||
msgstr "Plataforma"
|
||||
|
|
@ -2826,7 +2867,7 @@ msgstr "Sistema"
|
|||
#: assets/serializers/cagegory.py:11 assets/serializers/cagegory.py:18
|
||||
#: assets/serializers/cagegory.py:24
|
||||
#: authentication/models/connection_token.py:35
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: authentication/serializers/connect_token_secret.py:137
|
||||
#: common/serializers/common.py:86 labels/models.py:12 settings/models.py:40
|
||||
#: users/models/preference.py:13
|
||||
msgid "Value"
|
||||
|
|
@ -2835,7 +2876,7 @@ msgstr "Valor"
|
|||
#: assets/models/label.py:40 assets/serializers/cagegory.py:10
|
||||
#: assets/serializers/cagegory.py:17 assets/serializers/cagegory.py:23
|
||||
#: assets/serializers/platform.py:159
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
#: authentication/serializers/connect_token_secret.py:136
|
||||
#: common/serializers/common.py:85 labels/serializers.py:45
|
||||
#: settings/serializers/msg.py:91 xpack/plugins/cloud/models.py:404
|
||||
msgid "Label"
|
||||
|
|
@ -2886,7 +2927,7 @@ msgid "Required"
|
|||
msgstr "Obrigatório"
|
||||
|
||||
#: assets/models/platform.py:19 assets/serializers/platform.py:161
|
||||
#: terminal/models/component/storage.py:28
|
||||
#: terminal/models/component/storage.py:28 users/const.py:42
|
||||
#: xpack/plugins/cloud/providers/nutanix.py:30
|
||||
msgid "Default"
|
||||
msgstr "Padrão"
|
||||
|
|
@ -3168,7 +3209,7 @@ msgid "Disk total"
|
|||
msgstr "Tamanho do disco rígido"
|
||||
|
||||
#: assets/serializers/asset/info/gathered.py:16
|
||||
#: authentication/serializers/connect_token_secret.py:119
|
||||
#: authentication/serializers/connect_token_secret.py:127
|
||||
msgid "OS"
|
||||
msgstr "Sistema operacional"
|
||||
|
||||
|
|
@ -3478,7 +3519,7 @@ msgstr "Excluir diretório"
|
|||
|
||||
#: audits/const.py:14 audits/const.py:25
|
||||
#: authentication/templates/authentication/_access_key_modal.html:65
|
||||
#: rbac/tree.py:292
|
||||
#: rbac/tree.py:293
|
||||
msgid "Delete"
|
||||
msgstr "Excluir"
|
||||
|
||||
|
|
@ -3504,7 +3545,7 @@ msgstr "Baixar"
|
|||
msgid "Rename dir"
|
||||
msgstr "Mapeamento de Diretórios"
|
||||
|
||||
#: audits/const.py:23 rbac/tree.py:290 terminal/api/session/session.py:285
|
||||
#: audits/const.py:23 rbac/tree.py:291 terminal/api/session/session.py:285
|
||||
#: terminal/templates/terminal/_msg_session_sharing.html:10
|
||||
#: xpack/plugins/cloud/manager.py:102
|
||||
msgid "View"
|
||||
|
|
@ -3512,7 +3553,7 @@ msgstr "Visualizar"
|
|||
|
||||
#: audits/const.py:26
|
||||
#: authentication/templates/authentication/_access_key_modal.html:22
|
||||
#: rbac/tree.py:289
|
||||
#: rbac/tree.py:290
|
||||
msgid "Create"
|
||||
msgstr "Criar"
|
||||
|
||||
|
|
@ -3665,7 +3706,7 @@ msgid "MFA"
|
|||
msgstr "MFA"
|
||||
|
||||
#: audits/models.py:219 terminal/models/session/sharing.py:123
|
||||
#: xpack/plugins/cloud/manager.py:187 xpack/plugins/cloud/models.py:237
|
||||
#: xpack/plugins/cloud/manager.py:186 xpack/plugins/cloud/models.py:237
|
||||
msgid "Reason"
|
||||
msgstr "Motivo"
|
||||
|
||||
|
|
@ -3928,6 +3969,10 @@ msgstr ""
|
|||
msgid "Forgot password"
|
||||
msgstr "Esqueceu a senha"
|
||||
|
||||
#: authentication/api/password.py:70 authentication/mfa/email.py:42
|
||||
msgid "The validity period of the verification code is {} minute"
|
||||
msgstr "O código de verificação é válido por {} minuto"
|
||||
|
||||
#: authentication/apps.py:7
|
||||
msgid "App Authentication"
|
||||
msgstr "gerenciamento de autenticação"
|
||||
|
|
@ -4355,7 +4400,7 @@ msgid "Input secret"
|
|||
msgstr "Senha personalizada"
|
||||
|
||||
#: authentication/models/connection_token.py:47
|
||||
#: authentication/serializers/connect_token_secret.py:118
|
||||
#: authentication/serializers/connect_token_secret.py:126
|
||||
#: terminal/models/applet/applet.py:43
|
||||
#: terminal/models/virtualapp/virtualapp.py:24
|
||||
#: terminal/serializers/session.py:31 terminal/serializers/session.py:58
|
||||
|
|
@ -4418,15 +4463,15 @@ msgstr "Sem usuário ou usuário inválido"
|
|||
msgid "No asset or inactive asset"
|
||||
msgstr "Sem ativos ou ativos não ativados"
|
||||
|
||||
#: authentication/models/connection_token.py:348
|
||||
#: authentication/models/connection_token.py:360
|
||||
msgid "Can view super connection token secret"
|
||||
msgstr "Pode ver o texto cifrado do token de link super"
|
||||
|
||||
#: authentication/models/connection_token.py:350
|
||||
#: authentication/models/connection_token.py:362
|
||||
msgid "Super connection token"
|
||||
msgstr "Token de link super"
|
||||
|
||||
#: authentication/models/connection_token.py:367
|
||||
#: authentication/models/connection_token.py:379
|
||||
msgid "Admin connection token"
|
||||
msgstr "TokenDeConexãoAdmin"
|
||||
|
||||
|
|
@ -4478,38 +4523,38 @@ msgstr "ID OAuth"
|
|||
msgid "binding reminder"
|
||||
msgstr "Alerta de vinculação"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:120
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
msgid "Is builtin"
|
||||
msgstr "Incorporado"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:124
|
||||
#: authentication/serializers/connect_token_secret.py:132
|
||||
msgid "Options"
|
||||
msgstr "Opções"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/serializers/connect_token_secret.py:139
|
||||
#: ops/notifications.py:19 rbac/tree.py:63
|
||||
msgid "Component"
|
||||
msgstr "Componentes"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:140
|
||||
#: authentication/serializers/connect_token_secret.py:148
|
||||
msgid "Domain"
|
||||
msgstr "Domínio da Web"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:142
|
||||
#: authentication/serializers/connect_token_secret.py:151
|
||||
msgid "Expired now"
|
||||
msgstr "Expiração Imediata"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:175
|
||||
#: authentication/serializers/connect_token_secret.py:184
|
||||
#: terminal/models/virtualapp/virtualapp.py:25
|
||||
msgid "Image name"
|
||||
msgstr "Nome da Imagem"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:176
|
||||
#: authentication/serializers/connect_token_secret.py:185
|
||||
#: terminal/models/virtualapp/virtualapp.py:27
|
||||
msgid "Image port"
|
||||
msgstr "Porta da Imagem"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:177
|
||||
#: authentication/serializers/connect_token_secret.py:186
|
||||
#: terminal/models/virtualapp/virtualapp.py:26
|
||||
msgid "Image protocol"
|
||||
msgstr "Protocolo da Imagem"
|
||||
|
|
@ -4628,13 +4673,13 @@ msgid "Show"
|
|||
msgstr "Mostrar"
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:66
|
||||
#: settings/serializers/terminal.py:24 users/const.py:42
|
||||
#: settings/serializers/terminal.py:24 users/const.py:48
|
||||
#: users/templates/users/user_verify_mfa.html:36
|
||||
msgid "Disable"
|
||||
msgstr "Desativar"
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:67
|
||||
#: settings/serializers/terminal.py:24 users/const.py:43
|
||||
#: settings/serializers/terminal.py:24 users/const.py:49
|
||||
#: users/templates/users/mfa_setting.html:120
|
||||
#: users/templates/users/mfa_setting.html:158
|
||||
#: users/templates/users/mfa_setting.html:177
|
||||
|
|
@ -4695,16 +4740,11 @@ msgstr ""
|
|||
"Se você suspeita de atividades incomuns, por favor, altere sua senha "
|
||||
"imediatamente"
|
||||
|
||||
#: authentication/templates/authentication/_msg_mfa_email_code.html:15
|
||||
#: authentication/templates/authentication/_msg_reset_password_code.html:18
|
||||
msgid "The validity period of the verification code is one minute"
|
||||
msgstr "O código de verificação é válido por 1 minuto"
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:6
|
||||
msgid "Your account has just been bound to"
|
||||
msgstr "Sua conta acaba de ser conectada a"
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:17
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:15
|
||||
msgid "If the operation is not your own, unbind and change the password."
|
||||
msgstr ""
|
||||
"Se essa ação não foi feita por você, por favor, desvincule sua conta e "
|
||||
|
|
@ -5071,7 +5111,7 @@ msgstr "Versão Profissional Empresarial"
|
|||
msgid "Ultimate edition"
|
||||
msgstr "Versão Premium Empresarial"
|
||||
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:452
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:451
|
||||
#, python-format
|
||||
msgid "%(name)s was created successfully"
|
||||
msgstr "%(name)s criado com sucesso"
|
||||
|
|
@ -5454,11 +5494,11 @@ msgstr ""
|
|||
"Ação a ser realizada ao enviar email e anexos, quando a senha é alterada e o"
|
||||
" backup de conta gera anexos"
|
||||
|
||||
#: common/tasks.py:107
|
||||
#: common/tasks.py:104
|
||||
msgid "Upload account backup to external storage"
|
||||
msgstr "Upload de gravação de sessão para armazenamento externo"
|
||||
|
||||
#: common/tasks.py:109
|
||||
#: common/tasks.py:106
|
||||
msgid ""
|
||||
"When performing an account backup, this task needs to be executed to "
|
||||
"external storage (SFTP)"
|
||||
|
|
@ -5885,7 +5925,7 @@ msgstr "* Por favor, insira uma expressão crontab válida"
|
|||
|
||||
#: ops/mixin.py:194
|
||||
msgid "Crontab minute must not contain '*'"
|
||||
msgstr ""
|
||||
msgstr "O minuto do Crontab não pode conter “*”"
|
||||
|
||||
#: ops/mixin.py:208 settings/serializers/auth/mixin.py:12
|
||||
msgid "Require interval or crontab setting"
|
||||
|
|
@ -6674,7 +6714,7 @@ msgid "Storage"
|
|||
msgstr "Armazenamento"
|
||||
|
||||
#: rbac/tree.py:64 terminal/models/applet/applet.py:53
|
||||
#: terminal/models/applet/applet.py:371 terminal/models/applet/host.py:30
|
||||
#: terminal/models/applet/applet.py:379 terminal/models/applet/host.py:30
|
||||
#: terminal/serializers/applet.py:16
|
||||
msgid "Applet"
|
||||
msgstr "Aplicativo Remoto"
|
||||
|
|
@ -6696,24 +6736,24 @@ msgstr "Auditoria de Tarefas"
|
|||
msgid "Report"
|
||||
msgstr "Relatório"
|
||||
|
||||
#: rbac/tree.py:181
|
||||
#: rbac/tree.py:182
|
||||
msgid "App organizations"
|
||||
msgstr "Gerenciamento de Organização"
|
||||
|
||||
#: rbac/tree.py:182
|
||||
#: rbac/tree.py:183
|
||||
msgid "Ticket comment"
|
||||
msgstr "Comentários de Ordem de Serviço"
|
||||
|
||||
#: rbac/tree.py:183 settings/serializers/feature.py:174
|
||||
#: rbac/tree.py:184 settings/serializers/feature.py:174
|
||||
#: settings/serializers/feature.py:176 tickets/models/ticket/general.py:310
|
||||
msgid "Ticket"
|
||||
msgstr "Ordem de Serviço"
|
||||
|
||||
#: rbac/tree.py:184
|
||||
#: rbac/tree.py:185
|
||||
msgid "Common setting"
|
||||
msgstr "Configurações Gerais"
|
||||
|
||||
#: rbac/tree.py:185
|
||||
#: rbac/tree.py:186
|
||||
msgid "View permission tree"
|
||||
msgstr "Visualizar Árvore de Autorização"
|
||||
|
||||
|
|
@ -6757,6 +6797,14 @@ msgstr "Painel PAM"
|
|||
msgid "ChangeSecretDashboard"
|
||||
msgstr "Painel de Alteração de Senha da Conta"
|
||||
|
||||
#: reports/views.py:181
|
||||
msgid "Failed to send email: "
|
||||
msgstr "Envio de e-mail falhou"
|
||||
|
||||
#: reports/views.py:182
|
||||
msgid "Email sent successfully to "
|
||||
msgstr "Envio de e-mail bem-sucedido"
|
||||
|
||||
#: settings/api/chat.py:41
|
||||
msgid "Chat AI is not enabled"
|
||||
msgstr "Chat AI Não Ativado"
|
||||
|
|
@ -6794,7 +6842,7 @@ msgstr "Configurações do Sistema"
|
|||
|
||||
#: settings/const.py:13
|
||||
msgid "Embed"
|
||||
msgstr ""
|
||||
msgstr "Embutido"
|
||||
|
||||
#: settings/models.py:42 users/models/preference.py:14
|
||||
msgid "Encrypted"
|
||||
|
|
@ -7061,7 +7109,7 @@ msgstr ""
|
|||
|
||||
#: settings/serializers/auth/lark.py:13 users/models/user/_source.py:24
|
||||
msgid "Lark"
|
||||
msgstr ""
|
||||
msgstr "Lark"
|
||||
|
||||
#: settings/serializers/auth/lark.py:19
|
||||
msgid ""
|
||||
|
|
@ -7252,7 +7300,7 @@ msgstr "Sempre atualizar informações do usuário"
|
|||
|
||||
#: settings/serializers/auth/oidc.py:13 settings/serializers/auth/oidc.py:71
|
||||
msgid "OIDC"
|
||||
msgstr ""
|
||||
msgstr "OIDC"
|
||||
|
||||
#: settings/serializers/auth/oidc.py:17
|
||||
msgid "Base site URL"
|
||||
|
|
@ -7319,6 +7367,8 @@ msgid ""
|
|||
"The issuer URL of the OpenID Provider, used to discover its configuration "
|
||||
"via the `$PROVIDER_ENDPOINT/.well-known/openid-configuration` endpoint."
|
||||
msgstr ""
|
||||
"URL do emissor do provedor OpenID, usado para descobrir sua configuração "
|
||||
"através do endpoint “$PROVIDER_ENDPOINT/.well-known/openid-configuration”."
|
||||
|
||||
#: settings/serializers/auth/oidc.py:87
|
||||
msgid "JWKS endpoint"
|
||||
|
|
@ -7701,7 +7751,7 @@ msgid "Tenant ID"
|
|||
msgstr "ID do inquilino"
|
||||
|
||||
#: settings/serializers/feature.py:112 terminal/serializers/storage.py:68
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:124
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:123
|
||||
#: xpack/plugins/cloud/models.py:293
|
||||
msgid "Region"
|
||||
msgstr "Região"
|
||||
|
|
@ -8574,7 +8624,7 @@ msgstr "Baixar modelo atualizado"
|
|||
|
||||
#: templates/_foot_js.html:30
|
||||
msgid "Page footer"
|
||||
msgstr ""
|
||||
msgstr "Rodapé"
|
||||
|
||||
#: templates/_header_bar.html:12
|
||||
msgid "Help"
|
||||
|
|
@ -8686,7 +8736,7 @@ msgstr ""
|
|||
"confirme que confia neste link."
|
||||
|
||||
#: templates/resource_download.html:20 templates/resource_download.html:35
|
||||
#: users/const.py:78
|
||||
#: users/const.py:84
|
||||
msgid "Client"
|
||||
msgstr "Cliente"
|
||||
|
||||
|
|
@ -8978,12 +9028,12 @@ msgstr "Somente suporte para plataformas personalizadas"
|
|||
msgid "Missing type in platform.yml"
|
||||
msgstr "Tipo ausente em platform.yml"
|
||||
|
||||
#: terminal/models/applet/applet.py:373 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/applet.py:381 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/host.py:138
|
||||
msgid "Hosting"
|
||||
msgstr "Máquina Hospedeira"
|
||||
|
||||
#: terminal/models/applet/applet.py:379
|
||||
#: terminal/models/applet/applet.py:387
|
||||
msgid "Applet Publication"
|
||||
msgstr "Publicação de Aplicativo"
|
||||
|
||||
|
|
@ -9133,7 +9183,7 @@ msgstr "Usuário de aplicativo"
|
|||
msgid "Can view terminal config"
|
||||
msgstr "Pode-se visualizar a configuração do terminal"
|
||||
|
||||
#: terminal/models/session/command.py:76
|
||||
#: terminal/models/session/command.py:77
|
||||
msgid "Command record"
|
||||
msgstr "Registro de comandos"
|
||||
|
||||
|
|
@ -10083,11 +10133,11 @@ msgstr "Você tem uma nova ordem de serviço, requerente - {}"
|
|||
msgid "{}: New Ticket - {} ({})"
|
||||
msgstr "Nova Ordem de Serviço - {} ({})"
|
||||
|
||||
#: tickets/notifications.py:160
|
||||
#: tickets/notifications.py:168
|
||||
msgid "Your ticket has been processed, processor - {}"
|
||||
msgstr "Sua ordem de serviço foi processada, operador - {}"
|
||||
|
||||
#: tickets/notifications.py:164
|
||||
#: tickets/notifications.py:172
|
||||
msgid "Ticket has processed - {} ({})"
|
||||
msgstr "Sua ordem de serviço foi processada, operador - {} ( {} )"
|
||||
|
||||
|
|
@ -10249,23 +10299,31 @@ msgstr "Janela atual"
|
|||
msgid "New window"
|
||||
msgstr "Nova janela"
|
||||
|
||||
#: users/const.py:47
|
||||
#: users/const.py:43
|
||||
msgid "Dark gray"
|
||||
msgstr "Cinza escuro"
|
||||
|
||||
#: users/const.py:44
|
||||
msgid "Deep blue"
|
||||
msgstr "Azul escuro"
|
||||
|
||||
#: users/const.py:53
|
||||
msgid "High(32 bit)"
|
||||
msgstr "Alto (32 bit)"
|
||||
|
||||
#: users/const.py:48
|
||||
#: users/const.py:54
|
||||
msgid "True Color(24 bit)"
|
||||
msgstr ""
|
||||
msgstr "Cores verdadeiras (24 bits)"
|
||||
|
||||
#: users/const.py:49
|
||||
#: users/const.py:55
|
||||
msgid "Medium(16 bit)"
|
||||
msgstr "Médio (16 bit)"
|
||||
|
||||
#: users/const.py:82
|
||||
#: users/const.py:88
|
||||
msgid "Replace"
|
||||
msgstr "Substituir"
|
||||
|
||||
#: users/const.py:83
|
||||
#: users/const.py:89
|
||||
msgid "Suffix"
|
||||
msgstr "Adicionar sufixo"
|
||||
|
||||
|
|
@ -10483,7 +10541,7 @@ msgstr "Reiniciar chave SSH"
|
|||
|
||||
#: users/notifications.py:253
|
||||
msgid "Update SSH Key url"
|
||||
msgstr ""
|
||||
msgstr "Atualizar endereço da chave SSH"
|
||||
|
||||
#: users/notifications.py:276
|
||||
msgid "Reset MFA"
|
||||
|
|
@ -10494,12 +10552,12 @@ msgid "Reset MFA url"
|
|||
msgstr "URL para redefinir MFA"
|
||||
|
||||
#: users/serializers/preference/koko.py:10
|
||||
#: users/serializers/preference/luna.py:63
|
||||
#: users/serializers/preference/luna.py:67
|
||||
msgid "File name conflict resolution"
|
||||
msgstr "Solução de conflito de nomes de arquivos"
|
||||
|
||||
#: users/serializers/preference/koko.py:14
|
||||
#: users/serializers/preference/luna.py:80
|
||||
#: users/serializers/preference/luna.py:84
|
||||
msgid "Terminal theme name"
|
||||
msgstr "Nome do tema do terminal"
|
||||
|
||||
|
|
@ -10534,27 +10592,33 @@ msgstr "Carregamento assíncrono da árvore de ativos"
|
|||
msgid "Connect default open method"
|
||||
msgstr "Forma padrão de abertura de conexão"
|
||||
|
||||
#: users/serializers/preference/luna.py:37
|
||||
#: users/serializers/preference/luna.py:34
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr "Tema"
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
msgid "RDP resolution"
|
||||
msgstr "Resolução RDP"
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
#: users/serializers/preference/luna.py:45
|
||||
msgid "Keyboard layout"
|
||||
msgstr "Layout do teclado"
|
||||
|
||||
#: users/serializers/preference/luna.py:45
|
||||
#: users/serializers/preference/luna.py:49
|
||||
msgid "RDP client option"
|
||||
msgstr "Opções do cliente RDP"
|
||||
|
||||
#: users/serializers/preference/luna.py:49
|
||||
#: users/serializers/preference/luna.py:53
|
||||
msgid "RDP color quality"
|
||||
msgstr "Qualidade de cor RDP"
|
||||
|
||||
#: users/serializers/preference/luna.py:53
|
||||
#: users/serializers/preference/luna.py:57
|
||||
msgid "RDP smart size"
|
||||
msgstr "Tamanho inteligente RDP"
|
||||
|
||||
#: users/serializers/preference/luna.py:54
|
||||
#: users/serializers/preference/luna.py:58
|
||||
msgid ""
|
||||
"Determines whether the client computer should scale the content on the "
|
||||
"remote computer to fit the window size of the client computer when the "
|
||||
|
|
@ -10564,27 +10628,27 @@ msgstr ""
|
|||
"computador remoto para se ajustar ao tamanho da janela do computador cliente"
|
||||
" quando o tamanho da janela é alterado"
|
||||
|
||||
#: users/serializers/preference/luna.py:59
|
||||
#: users/serializers/preference/luna.py:63
|
||||
msgid "Remote app connect method"
|
||||
msgstr "Método de conexão do aplicativo remoto"
|
||||
|
||||
#: users/serializers/preference/luna.py:70
|
||||
#: users/serializers/preference/luna.py:74
|
||||
msgid "Terminal font size"
|
||||
msgstr "Tamanho da fonte do terminal de caracteres"
|
||||
|
||||
#: users/serializers/preference/luna.py:73
|
||||
#: users/serializers/preference/luna.py:77
|
||||
msgid "Backspace as Ctrl+H"
|
||||
msgstr "Terminal de caracteres Backspace As Ctrl+H"
|
||||
|
||||
#: users/serializers/preference/luna.py:76
|
||||
#: users/serializers/preference/luna.py:80
|
||||
msgid "Right click quickly paste"
|
||||
msgstr "Clique direito para colar rapidamente"
|
||||
|
||||
#: users/serializers/preference/luna.py:86
|
||||
#: users/serializers/preference/luna.py:90
|
||||
msgid "Graphics"
|
||||
msgstr "Gráfico"
|
||||
|
||||
#: users/serializers/preference/luna.py:87
|
||||
#: users/serializers/preference/luna.py:91
|
||||
msgid "Command line"
|
||||
msgstr "Linha de comando"
|
||||
|
||||
|
|
@ -11195,7 +11259,7 @@ msgstr "ZStack"
|
|||
|
||||
#: xpack/plugins/cloud/const.py:30 xpack/plugins/cloud/providers/smartx.py:9
|
||||
msgid "SmartX CloudTower"
|
||||
msgstr ""
|
||||
msgstr "SmartX Cloud Tower"
|
||||
|
||||
#: xpack/plugins/cloud/const.py:31
|
||||
msgid "Fusion Compute"
|
||||
|
|
@ -11298,17 +11362,17 @@ msgstr "Conclusão de execução da tarefa"
|
|||
msgid "Synchronization regions"
|
||||
msgstr "Sincronizar região"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:141
|
||||
#: xpack/plugins/cloud/manager.py:140
|
||||
#, python-format
|
||||
msgid "Get instances of region \"%s\" error, error: %s"
|
||||
msgstr "Obter erro de instância na região \"%s\", erro: %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:186
|
||||
#: xpack/plugins/cloud/manager.py:185
|
||||
#, python-format
|
||||
msgid "Failed to synchronize the instance \"%s\""
|
||||
msgstr "Impossível sincronizar instância %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:377
|
||||
#: xpack/plugins/cloud/manager.py:376
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The updated platform of asset \"%s\" is inconsistent with the original "
|
||||
|
|
@ -11317,47 +11381,47 @@ msgstr ""
|
|||
"A atualização da plataforma do ativo “%s” não é consistente com o tipo de "
|
||||
"plataforma original. Ignorar atualização de plataforma e protocolo"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:434
|
||||
#: xpack/plugins/cloud/manager.py:433
|
||||
#, python-format
|
||||
msgid "The asset \"%s\" already exists"
|
||||
msgstr "Ativo \"%s\" já existe"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:436
|
||||
#: xpack/plugins/cloud/manager.py:435
|
||||
#, python-format
|
||||
msgid "Update asset \"%s\""
|
||||
msgstr "Atualizando ativo \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:439
|
||||
#: xpack/plugins/cloud/manager.py:438
|
||||
#, python-format
|
||||
msgid "Asset \"%s\" has been updated"
|
||||
msgstr "Ativo \"%s\" foi atualizado"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:448
|
||||
#: xpack/plugins/cloud/manager.py:447
|
||||
#, python-format
|
||||
msgid "Prepare to create asset \"%s\""
|
||||
msgstr "Preparar para criar ativo %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:469
|
||||
#: xpack/plugins/cloud/manager.py:468
|
||||
#, python-format
|
||||
msgid "Set nodes \"%s\""
|
||||
msgstr "Configurar os nós: \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:495
|
||||
#: xpack/plugins/cloud/manager.py:494
|
||||
#, python-format
|
||||
msgid "Set accounts \"%s\""
|
||||
msgstr "Configurar a conta: %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:511
|
||||
#: xpack/plugins/cloud/manager.py:510
|
||||
#, python-format
|
||||
msgid "Set protocols \"%s\""
|
||||
msgstr "Configurar protocolo \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:519
|
||||
#: xpack/plugins/cloud/manager.py:518
|
||||
#, python-format
|
||||
msgid "Set labels \"%s\""
|
||||
msgstr "Definir etiqueta: \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:533 xpack/plugins/cloud/tasks.py:31
|
||||
#: xpack/plugins/cloud/manager.py:532 xpack/plugins/cloud/tasks.py:31
|
||||
msgid "Run sync instance task"
|
||||
msgstr "Executar tarefa de sincronização de instância"
|
||||
|
||||
|
|
@ -11899,11 +11963,6 @@ msgstr "Gerenciar página de logo"
|
|||
msgid "Logout logo"
|
||||
msgstr "Fazer Logout"
|
||||
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr "Tema"
|
||||
|
||||
#: xpack/plugins/interface/models.py:42
|
||||
msgid "Footer content"
|
||||
msgstr "Conteúdo do rodapé"
|
||||
|
|
@ -11924,6 +11983,14 @@ msgstr "Importação de licença bem-sucedida"
|
|||
msgid "Invalid license"
|
||||
msgstr "Licença inválida"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Themes"
|
||||
#~ msgstr "Tema"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "domain_name"
|
||||
#~ msgstr "Nome do domínio"
|
||||
|
||||
#~ msgid "Task execution id"
|
||||
#~ msgstr "ID de execução da tarefa"
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-17 15:02+0800\n"
|
||||
"POT-Creation-Date: 2025-10-16 14:10+0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -18,7 +18,7 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: accounts/api/account/account.py:138
|
||||
#: accounts/api/account/account.py:141
|
||||
#: accounts/serializers/account/account.py:181
|
||||
#: accounts/serializers/account/account.py:362
|
||||
msgid "Account already exists"
|
||||
|
|
@ -96,7 +96,7 @@ msgstr "Kế hoạch thực hiện đã kết thúc"
|
|||
|
||||
#: accounts/automations/base/manager.py:119
|
||||
msgid "Windows does not support SSH key authentication"
|
||||
msgstr ""
|
||||
msgstr "Windows không hỗ trợ xác thực bằng khóa SSH"
|
||||
|
||||
#: accounts/automations/base/manager.py:123
|
||||
msgid "Windows password cannot contain special characters like > ^"
|
||||
|
|
@ -212,7 +212,7 @@ msgstr "Mẫu"
|
|||
msgid "Skip"
|
||||
msgstr "Bỏ qua"
|
||||
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:291
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:292
|
||||
#: templates/_csv_import_export.html:18 templates/_csv_update_modal.html:6
|
||||
msgid "Update"
|
||||
msgstr "Cập nhật"
|
||||
|
|
@ -580,17 +580,18 @@ msgstr "Hoạt động tài khoản"
|
|||
#: accounts/serializers/account/service.py:29
|
||||
#: accounts/serializers/account/virtual.py:20 acls/models/base.py:35
|
||||
#: acls/models/base.py:96 acls/models/command_acl.py:21
|
||||
#: acls/notifications.py:69 acls/serializers/base.py:35
|
||||
#: assets/models/asset/common.py:100 assets/models/asset/common.py:166
|
||||
#: assets/models/cmd_filter.py:21 assets/models/label.py:18
|
||||
#: assets/models/platform.py:15 assets/models/platform.py:94
|
||||
#: assets/models/zone.py:19 assets/serializers/asset/common.py:174
|
||||
#: assets/serializers/platform.py:158 assets/serializers/platform.py:283
|
||||
#: acls/models/data_masking.py:20 acls/notifications.py:69
|
||||
#: acls/serializers/base.py:35 assets/models/asset/common.py:100
|
||||
#: assets/models/asset/common.py:166 assets/models/cmd_filter.py:21
|
||||
#: assets/models/label.py:18 assets/models/platform.py:15
|
||||
#: assets/models/platform.py:94 assets/models/zone.py:19
|
||||
#: assets/serializers/asset/common.py:174 assets/serializers/platform.py:158
|
||||
#: assets/serializers/platform.py:283
|
||||
#: authentication/backends/passkey/models.py:10
|
||||
#: authentication/models/ssh_key.py:12 authentication/notifications.py:17
|
||||
#: authentication/notifications.py:56
|
||||
#: authentication/serializers/connect_token_secret.py:117
|
||||
#: authentication/serializers/connect_token_secret.py:174 labels/models.py:11
|
||||
#: authentication/serializers/connect_token_secret.py:125
|
||||
#: authentication/serializers/connect_token_secret.py:183 labels/models.py:11
|
||||
#: ops/mixin.py:32 ops/models/adhoc.py:19 ops/models/celery.py:15
|
||||
#: ops/models/celery.py:81 ops/models/job.py:147 ops/models/playbook.py:28
|
||||
#: ops/models/variable.py:9 ops/serializers/job.py:20
|
||||
|
|
@ -784,7 +785,7 @@ msgstr "Ngày kết thúc"
|
|||
#: assets/models/automations/base.py:137
|
||||
#: assets/serializers/automations/base.py:47 audits/models.py:224
|
||||
#: audits/serializers.py:77 ops/models/base.py:49 ops/models/job.py:233
|
||||
#: terminal/models/applet/applet.py:374 terminal/models/applet/host.py:140
|
||||
#: terminal/models/applet/applet.py:382 terminal/models/applet/host.py:140
|
||||
#: terminal/models/component/status.py:30
|
||||
#: terminal/models/virtualapp/virtualapp.py:99
|
||||
#: terminal/serializers/applet.py:19 terminal/serializers/applet_host.py:163
|
||||
|
|
@ -925,7 +926,7 @@ msgstr "Rủi ro tài khoản"
|
|||
|
||||
#: accounts/models/automations/check_account.py:119
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
msgstr "URL nhận diện"
|
||||
|
||||
#: accounts/models/automations/check_account.py:125
|
||||
msgid "Check engine"
|
||||
|
|
@ -1059,7 +1060,7 @@ msgstr "Quy tắc mật khẩu"
|
|||
|
||||
#: accounts/models/base.py:69 assets/models/automations/base.py:28
|
||||
#: assets/models/cmd_filter.py:39 assets/models/label.py:22
|
||||
#: authentication/serializers/connect_token_secret.py:121
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: terminal/models/applet/applet.py:41
|
||||
#: terminal/models/virtualapp/virtualapp.py:23 users/serializers/user.py:257
|
||||
msgid "Is active"
|
||||
|
|
@ -1242,7 +1243,7 @@ msgstr "Thể loại"
|
|||
#: assets/serializers/platform.py:160 assets/serializers/platform.py:172
|
||||
#: audits/serializers.py:76 audits/serializers.py:196
|
||||
#: authentication/models/connection_token.py:67
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: authentication/serializers/connect_token_secret.py:138
|
||||
#: ops/models/job.py:155 perms/serializers/user_permission.py:28
|
||||
#: terminal/models/applet/applet.py:40 terminal/models/component/storage.py:58
|
||||
#: terminal/models/component/storage.py:152 terminal/serializers/applet.py:30
|
||||
|
|
@ -1267,7 +1268,7 @@ msgstr "Dịch vụ thư mục"
|
|||
#: accounts/serializers/account/account.py:278
|
||||
#, python-brace-format
|
||||
msgid "Account already exists. Field(s): {fields} must be unique."
|
||||
msgstr ""
|
||||
msgstr "Tài khoản đã tồn tại. Trường :{fields} phải là duy nhất."
|
||||
|
||||
#: accounts/serializers/account/account.py:285
|
||||
msgid "Has secret"
|
||||
|
|
@ -1314,7 +1315,7 @@ msgid "Spec info"
|
|||
msgstr "Thông tin đặc biệt"
|
||||
|
||||
#: accounts/serializers/account/account.py:493
|
||||
#: authentication/serializers/connect_token_secret.py:164
|
||||
#: authentication/serializers/connect_token_secret.py:173
|
||||
#: authentication/templates/authentication/_access_key_modal.html:30
|
||||
#: perms/models/perm_node.py:21 users/serializers/group.py:33
|
||||
msgid "ID"
|
||||
|
|
@ -1373,7 +1374,7 @@ msgstr "Danh sách trắng IP"
|
|||
#: assets/models/cmd_filter.py:88 common/db/models.py:36
|
||||
#: ops/models/adhoc.py:25 ops/models/job.py:165 ops/models/playbook.py:31
|
||||
#: rbac/models/role.py:37 settings/models.py:44
|
||||
#: terminal/models/applet/applet.py:46 terminal/models/applet/applet.py:375
|
||||
#: terminal/models/applet/applet.py:46 terminal/models/applet/applet.py:383
|
||||
#: terminal/models/applet/host.py:143 terminal/models/component/endpoint.py:29
|
||||
#: terminal/models/component/endpoint.py:117
|
||||
#: terminal/models/session/session.py:44
|
||||
|
|
@ -1902,7 +1903,7 @@ msgstr ""
|
|||
#: acls/models/base.py:41 acls/serializers/base.py:57
|
||||
#: assets/models/cmd_filter.py:81 audits/models.py:99
|
||||
#: audits/serializers.py:107
|
||||
#: authentication/serializers/connect_token_secret.py:123
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/templates/authentication/_access_key_modal.html:34
|
||||
#: perms/serializers/permission.py:63 perms/serializers/permission.py:85
|
||||
#: terminal/backends/command/models.py:24
|
||||
|
|
@ -1911,7 +1912,7 @@ msgid "Action"
|
|||
msgstr "Action"
|
||||
|
||||
#: acls/models/base.py:42 assets/models/cmd_filter.py:86
|
||||
#: authentication/serializers/connect_token_secret.py:93
|
||||
#: authentication/serializers/connect_token_secret.py:101
|
||||
msgid "Reviewers"
|
||||
msgstr "Người phê duyệt"
|
||||
|
||||
|
|
@ -1952,7 +1953,7 @@ msgstr "Bỏ qua chữ hoa chữ thường"
|
|||
|
||||
#: acls/models/command_acl.py:33 acls/models/command_acl.py:97
|
||||
#: acls/serializers/command_acl.py:29
|
||||
#: authentication/serializers/connect_token_secret.py:90
|
||||
#: authentication/serializers/connect_token_secret.py:98
|
||||
#: terminal/templates/terminal/_msg_command_warning.html:23
|
||||
msgid "Command group"
|
||||
msgstr "Nhóm lệnh"
|
||||
|
|
@ -1978,6 +1979,38 @@ msgstr "Phương thức kết nối"
|
|||
msgid "Connect method acl"
|
||||
msgstr "Kiểm soát phương thức kết nối"
|
||||
|
||||
#: acls/models/data_masking.py:13
|
||||
msgid "Fixed Character Replacement"
|
||||
msgstr "Thay thế ký tự cố định"
|
||||
|
||||
#: acls/models/data_masking.py:14
|
||||
msgid "Hide Middle Characters"
|
||||
msgstr "Ẩn ký tự ở giữa"
|
||||
|
||||
#: acls/models/data_masking.py:15
|
||||
msgid "Keep Prefix Only"
|
||||
msgstr "Giữ tiền tố"
|
||||
|
||||
#: acls/models/data_masking.py:16
|
||||
msgid "Keep Suffix Only"
|
||||
msgstr "Giữ hậu tố"
|
||||
|
||||
#: acls/models/data_masking.py:21
|
||||
msgid "Fields pattern"
|
||||
msgstr "Che giấu tên cột"
|
||||
|
||||
#: acls/models/data_masking.py:27 acls/serializers/data_masking.py:14
|
||||
msgid "Masking Method"
|
||||
msgstr "Phương pháp che phủ"
|
||||
|
||||
#: acls/models/data_masking.py:31
|
||||
msgid "Mask Pattern"
|
||||
msgstr "Ký tự che phủ"
|
||||
|
||||
#: acls/models/data_masking.py:42
|
||||
msgid "Data Masking Rule"
|
||||
msgstr "Quy tắc bảo vệ dữ liệu"
|
||||
|
||||
#: acls/models/login_acl.py:11 acls/models/login_asset_acl.py:9
|
||||
#: acls/serializers/login_acl.py:16 acls/serializers/login_asset_acl.py:13
|
||||
msgid "Rule"
|
||||
|
|
@ -2012,6 +2045,14 @@ msgstr "Nhắc nhở người dùng đăng nhập"
|
|||
msgid "Login city"
|
||||
msgstr "Thành phố đăng nhập"
|
||||
|
||||
#: acls/notifications.py:20 acls/notifications.py:71
|
||||
msgid "Recipient name"
|
||||
msgstr "Tên người nhận"
|
||||
|
||||
#: acls/notifications.py:21 acls/notifications.py:72
|
||||
msgid "Recipient username"
|
||||
msgstr "Tên người dùng người nhận"
|
||||
|
||||
#: acls/notifications.py:22 acls/templates/acls/user_login_reminder.html:12
|
||||
#: audits/models.py:213 audits/models.py:291 audits/serializers.py:91
|
||||
msgid "User agent"
|
||||
|
|
@ -2321,7 +2362,7 @@ msgstr "Vô hiệu hóa"
|
|||
#: assets/const/base.py:33 settings/serializers/basic.py:8
|
||||
#: users/serializers/preference/koko.py:19
|
||||
#: users/serializers/preference/lina.py:51
|
||||
#: users/serializers/preference/luna.py:85
|
||||
#: users/serializers/preference/luna.py:89
|
||||
msgid "Basic"
|
||||
msgstr "Cơ bản"
|
||||
|
||||
|
|
@ -2349,7 +2390,7 @@ msgstr "Cloud"
|
|||
|
||||
#: assets/const/category.py:14 assets/models/asset/gpt.py:11
|
||||
#: assets/models/asset/web.py:16 audits/const.py:46
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:77
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:83
|
||||
msgid "Web"
|
||||
msgstr "Web"
|
||||
|
||||
|
|
@ -2379,15 +2420,15 @@ msgstr "Huawei"
|
|||
|
||||
#: assets/const/device.py:9
|
||||
msgid "H3C"
|
||||
msgstr ""
|
||||
msgstr "H3C"
|
||||
|
||||
#: assets/const/device.py:10
|
||||
msgid "Juniper"
|
||||
msgstr ""
|
||||
msgstr "Juniper"
|
||||
|
||||
#: assets/const/device.py:11
|
||||
msgid "TP-Link"
|
||||
msgstr ""
|
||||
msgstr "TP-Link"
|
||||
|
||||
#: assets/const/device.py:12 assets/const/ds.py:7
|
||||
#: terminal/models/applet/applet.py:27 tickets/const.py:9
|
||||
|
|
@ -2410,7 +2451,7 @@ msgstr "Tường lửa"
|
|||
msgid "Windows Active Directory"
|
||||
msgstr "Active Directory Windows"
|
||||
|
||||
#: assets/const/gpt.py:7
|
||||
#: assets/const/gpt.py:8
|
||||
msgid "ChatGPT"
|
||||
msgstr "ChatGPT"
|
||||
|
||||
|
|
@ -2538,7 +2579,7 @@ msgstr "Mã hóa"
|
|||
|
||||
#: assets/const/protocol.py:202
|
||||
msgid "Whether to use TLS encryption."
|
||||
msgstr ""
|
||||
msgstr "Có sử dụng mã hóa TLS không?."
|
||||
|
||||
#: assets/const/protocol.py:232
|
||||
msgid "Auth source"
|
||||
|
|
@ -2635,7 +2676,7 @@ msgstr "Địa chỉ"
|
|||
#: assets/models/asset/common.py:169 assets/models/platform.py:155
|
||||
#: assets/serializers/asset/common.py:151
|
||||
#: authentication/backends/passkey/models.py:12
|
||||
#: authentication/serializers/connect_token_secret.py:122
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: perms/serializers/user_permission.py:26 xpack/plugins/cloud/models.py:399
|
||||
msgid "Platform"
|
||||
msgstr "Nền tảng"
|
||||
|
|
@ -2828,7 +2869,7 @@ msgstr "Hệ thống"
|
|||
#: assets/serializers/cagegory.py:11 assets/serializers/cagegory.py:18
|
||||
#: assets/serializers/cagegory.py:24
|
||||
#: authentication/models/connection_token.py:35
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: authentication/serializers/connect_token_secret.py:137
|
||||
#: common/serializers/common.py:86 labels/models.py:12 settings/models.py:40
|
||||
#: users/models/preference.py:13
|
||||
msgid "Value"
|
||||
|
|
@ -2837,7 +2878,7 @@ msgstr "Giá trị"
|
|||
#: assets/models/label.py:40 assets/serializers/cagegory.py:10
|
||||
#: assets/serializers/cagegory.py:17 assets/serializers/cagegory.py:23
|
||||
#: assets/serializers/platform.py:159
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
#: authentication/serializers/connect_token_secret.py:136
|
||||
#: common/serializers/common.py:85 labels/serializers.py:45
|
||||
#: settings/serializers/msg.py:91 xpack/plugins/cloud/models.py:404
|
||||
msgid "Label"
|
||||
|
|
@ -2888,7 +2929,7 @@ msgid "Required"
|
|||
msgstr "Thiết yếu"
|
||||
|
||||
#: assets/models/platform.py:19 assets/serializers/platform.py:161
|
||||
#: terminal/models/component/storage.py:28
|
||||
#: terminal/models/component/storage.py:28 users/const.py:42
|
||||
#: xpack/plugins/cloud/providers/nutanix.py:30
|
||||
msgid "Default"
|
||||
msgstr "Mặc định"
|
||||
|
|
@ -3169,7 +3210,7 @@ msgid "Disk total"
|
|||
msgstr "Dung lượng ổ cứng"
|
||||
|
||||
#: assets/serializers/asset/info/gathered.py:16
|
||||
#: authentication/serializers/connect_token_secret.py:119
|
||||
#: authentication/serializers/connect_token_secret.py:127
|
||||
msgid "OS"
|
||||
msgstr "Hệ điều hành"
|
||||
|
||||
|
|
@ -3507,7 +3548,7 @@ msgstr "Xóa thư mục"
|
|||
|
||||
#: audits/const.py:14 audits/const.py:25
|
||||
#: authentication/templates/authentication/_access_key_modal.html:65
|
||||
#: rbac/tree.py:292
|
||||
#: rbac/tree.py:293
|
||||
msgid "Delete"
|
||||
msgstr "Xóa"
|
||||
|
||||
|
|
@ -3533,7 +3574,7 @@ msgstr "Tải xuống"
|
|||
msgid "Rename dir"
|
||||
msgstr "Liên kết thư mục"
|
||||
|
||||
#: audits/const.py:23 rbac/tree.py:290 terminal/api/session/session.py:285
|
||||
#: audits/const.py:23 rbac/tree.py:291 terminal/api/session/session.py:285
|
||||
#: terminal/templates/terminal/_msg_session_sharing.html:10
|
||||
#: xpack/plugins/cloud/manager.py:102
|
||||
msgid "View"
|
||||
|
|
@ -3541,7 +3582,7 @@ msgstr "Xem"
|
|||
|
||||
#: audits/const.py:26
|
||||
#: authentication/templates/authentication/_access_key_modal.html:22
|
||||
#: rbac/tree.py:289
|
||||
#: rbac/tree.py:290
|
||||
msgid "Create"
|
||||
msgstr "Tạo"
|
||||
|
||||
|
|
@ -3694,7 +3735,7 @@ msgid "MFA"
|
|||
msgstr "MFA"
|
||||
|
||||
#: audits/models.py:219 terminal/models/session/sharing.py:123
|
||||
#: xpack/plugins/cloud/manager.py:187 xpack/plugins/cloud/models.py:237
|
||||
#: xpack/plugins/cloud/manager.py:186 xpack/plugins/cloud/models.py:237
|
||||
msgid "Reason"
|
||||
msgstr "Nguyên nhân"
|
||||
|
||||
|
|
@ -3954,6 +3995,10 @@ msgstr ""
|
|||
msgid "Forgot password"
|
||||
msgstr "Quên mật khẩu"
|
||||
|
||||
#: authentication/api/password.py:70 authentication/mfa/email.py:42
|
||||
msgid "The validity period of the verification code is {} minute"
|
||||
msgstr "Mã xác minh có hiệu lực trong {} phút"
|
||||
|
||||
#: authentication/apps.py:7
|
||||
msgid "App Authentication"
|
||||
msgstr "Authentication"
|
||||
|
|
@ -4380,7 +4425,7 @@ msgid "Input secret"
|
|||
msgstr "Mật khẩu tùy chỉnh"
|
||||
|
||||
#: authentication/models/connection_token.py:47
|
||||
#: authentication/serializers/connect_token_secret.py:118
|
||||
#: authentication/serializers/connect_token_secret.py:126
|
||||
#: terminal/models/applet/applet.py:43
|
||||
#: terminal/models/virtualapp/virtualapp.py:24
|
||||
#: terminal/serializers/session.py:31 terminal/serializers/session.py:58
|
||||
|
|
@ -4443,15 +4488,15 @@ msgstr "Không có người dùng hoặc người dùng đã hết hiệu lực"
|
|||
msgid "No asset or inactive asset"
|
||||
msgstr "Không có tài sản hoặc tài sản chưa được kích hoạt"
|
||||
|
||||
#: authentication/models/connection_token.py:348
|
||||
#: authentication/models/connection_token.py:360
|
||||
msgid "Can view super connection token secret"
|
||||
msgstr "Có thể xem mã hóa của siêu mã thông báo kết nối"
|
||||
|
||||
#: authentication/models/connection_token.py:350
|
||||
#: authentication/models/connection_token.py:362
|
||||
msgid "Super connection token"
|
||||
msgstr "Siêu mã thông báo kết nối"
|
||||
|
||||
#: authentication/models/connection_token.py:367
|
||||
#: authentication/models/connection_token.py:379
|
||||
msgid "Admin connection token"
|
||||
msgstr "Mã thông báo kết nối quản trị"
|
||||
|
||||
|
|
@ -4505,38 +4550,38 @@ msgstr ""
|
|||
msgid "binding reminder"
|
||||
msgstr "Nhắc nhở liên kết"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:120
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
msgid "Is builtin"
|
||||
msgstr "Builtin"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:124
|
||||
#: authentication/serializers/connect_token_secret.py:132
|
||||
msgid "Options"
|
||||
msgstr "Tùy chọn"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/serializers/connect_token_secret.py:139
|
||||
#: ops/notifications.py:19 rbac/tree.py:63
|
||||
msgid "Component"
|
||||
msgstr "Thành phần"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:140
|
||||
#: authentication/serializers/connect_token_secret.py:148
|
||||
msgid "Domain"
|
||||
msgstr "Tên miền"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:142
|
||||
#: authentication/serializers/connect_token_secret.py:151
|
||||
msgid "Expired now"
|
||||
msgstr "Ngừng hiệu lực ngay lập tức"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:175
|
||||
#: authentication/serializers/connect_token_secret.py:184
|
||||
#: terminal/models/virtualapp/virtualapp.py:25
|
||||
msgid "Image name"
|
||||
msgstr "Tên hình ảnh"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:176
|
||||
#: authentication/serializers/connect_token_secret.py:185
|
||||
#: terminal/models/virtualapp/virtualapp.py:27
|
||||
msgid "Image port"
|
||||
msgstr "Cổng hình ảnh"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:177
|
||||
#: authentication/serializers/connect_token_secret.py:186
|
||||
#: terminal/models/virtualapp/virtualapp.py:26
|
||||
msgid "Image protocol"
|
||||
msgstr "Giao thức hình ảnh"
|
||||
|
|
@ -4654,13 +4699,13 @@ msgid "Show"
|
|||
msgstr "Hiển thị"
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:66
|
||||
#: settings/serializers/terminal.py:24 users/const.py:42
|
||||
#: settings/serializers/terminal.py:24 users/const.py:48
|
||||
#: users/templates/users/user_verify_mfa.html:36
|
||||
msgid "Disable"
|
||||
msgstr "Vô hiệu hóa"
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:67
|
||||
#: settings/serializers/terminal.py:24 users/const.py:43
|
||||
#: settings/serializers/terminal.py:24 users/const.py:49
|
||||
#: users/templates/users/mfa_setting.html:120
|
||||
#: users/templates/users/mfa_setting.html:158
|
||||
#: users/templates/users/mfa_setting.html:177
|
||||
|
|
@ -4721,16 +4766,11 @@ msgstr ""
|
|||
"Nếu nghi ngờ hành vi đăng nhập này là bất thường, hãy kịp thời thay đổi mật "
|
||||
"khẩu tài khoản"
|
||||
|
||||
#: authentication/templates/authentication/_msg_mfa_email_code.html:15
|
||||
#: authentication/templates/authentication/_msg_reset_password_code.html:18
|
||||
msgid "The validity period of the verification code is one minute"
|
||||
msgstr "Mã xác thực có hiệu lực trong 1 phút"
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:6
|
||||
msgid "Your account has just been bound to"
|
||||
msgstr "Tài khoản của bạn vừa được liên kết đến"
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:17
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:15
|
||||
msgid "If the operation is not your own, unbind and change the password."
|
||||
msgstr ""
|
||||
"Nếu thao tác không phải do bạn thực hiện, vui lòng hủy liên kết và thay đổi "
|
||||
|
|
@ -5093,7 +5133,7 @@ msgstr "Phiên bản chuyên nghiệp doanh nghiệp"
|
|||
msgid "Ultimate edition"
|
||||
msgstr "Phiên bản cao cấp doanh nghiệp"
|
||||
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:452
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:451
|
||||
#, python-format
|
||||
msgid "%(name)s was created successfully"
|
||||
msgstr "%(name)s đã tạo thành công"
|
||||
|
|
@ -5484,11 +5524,11 @@ msgstr ""
|
|||
"Khi đổi mật khẩu tài khoản, tệp đính kèm từ việc sao lưu tài khoản cần được "
|
||||
"gửi qua email, thực hiện nhiệm vụ này"
|
||||
|
||||
#: common/tasks.py:107
|
||||
#: common/tasks.py:104
|
||||
msgid "Upload account backup to external storage"
|
||||
msgstr "Tải lên video cuộc họp vào lưu trữ bên ngoài"
|
||||
|
||||
#: common/tasks.py:109
|
||||
#: common/tasks.py:106
|
||||
msgid ""
|
||||
"When performing an account backup, this task needs to be executed to "
|
||||
"external storage (SFTP)"
|
||||
|
|
@ -5911,7 +5951,7 @@ msgstr "* Vui lòng nhập biểu thức crontab hợp lệ"
|
|||
|
||||
#: ops/mixin.py:194
|
||||
msgid "Crontab minute must not contain '*'"
|
||||
msgstr ""
|
||||
msgstr "Phút trong Crontab không thể chứa “*”"
|
||||
|
||||
#: ops/mixin.py:208 settings/serializers/auth/mixin.py:12
|
||||
msgid "Require interval or crontab setting"
|
||||
|
|
@ -6695,7 +6735,7 @@ msgid "Storage"
|
|||
msgstr "Lưu trữ"
|
||||
|
||||
#: rbac/tree.py:64 terminal/models/applet/applet.py:53
|
||||
#: terminal/models/applet/applet.py:371 terminal/models/applet/host.py:30
|
||||
#: terminal/models/applet/applet.py:379 terminal/models/applet/host.py:30
|
||||
#: terminal/serializers/applet.py:16
|
||||
msgid "Applet"
|
||||
msgstr "Ứng dụng từ xa"
|
||||
|
|
@ -6717,24 +6757,24 @@ msgstr "Kiểm tra công việc"
|
|||
msgid "Report"
|
||||
msgstr "Báo cáo"
|
||||
|
||||
#: rbac/tree.py:181
|
||||
#: rbac/tree.py:182
|
||||
msgid "App organizations"
|
||||
msgstr "Organizations"
|
||||
|
||||
#: rbac/tree.py:182
|
||||
#: rbac/tree.py:183
|
||||
msgid "Ticket comment"
|
||||
msgstr "Nhận xét nhiệm vụ"
|
||||
|
||||
#: rbac/tree.py:183 settings/serializers/feature.py:174
|
||||
#: rbac/tree.py:184 settings/serializers/feature.py:174
|
||||
#: settings/serializers/feature.py:176 tickets/models/ticket/general.py:310
|
||||
msgid "Ticket"
|
||||
msgstr "Nhiệm vụ"
|
||||
|
||||
#: rbac/tree.py:184
|
||||
#: rbac/tree.py:185
|
||||
msgid "Common setting"
|
||||
msgstr "Cài đặt chung"
|
||||
|
||||
#: rbac/tree.py:185
|
||||
#: rbac/tree.py:186
|
||||
msgid "View permission tree"
|
||||
msgstr "Xem cây ủy quyền"
|
||||
|
||||
|
|
@ -6778,6 +6818,14 @@ msgstr "Bảng điều khiển PAM"
|
|||
msgid "ChangeSecretDashboard"
|
||||
msgstr "Bảng điều khiển thay đổi mật khẩu tài khoản"
|
||||
|
||||
#: reports/views.py:181
|
||||
msgid "Failed to send email: "
|
||||
msgstr "Gửi thư không thành công"
|
||||
|
||||
#: reports/views.py:182
|
||||
msgid "Email sent successfully to "
|
||||
msgstr "Gửi thư thành công"
|
||||
|
||||
#: settings/api/chat.py:41
|
||||
msgid "Chat AI is not enabled"
|
||||
msgstr "AI trò chuyện chưa được bật"
|
||||
|
|
@ -6815,7 +6863,7 @@ msgstr "Settings"
|
|||
|
||||
#: settings/const.py:13
|
||||
msgid "Embed"
|
||||
msgstr ""
|
||||
msgstr "Nhúng"
|
||||
|
||||
#: settings/models.py:42 users/models/preference.py:14
|
||||
msgid "Encrypted"
|
||||
|
|
@ -7078,7 +7126,7 @@ msgstr ""
|
|||
|
||||
#: settings/serializers/auth/lark.py:13 users/models/user/_source.py:24
|
||||
msgid "Lark"
|
||||
msgstr ""
|
||||
msgstr "Lark"
|
||||
|
||||
#: settings/serializers/auth/lark.py:19
|
||||
msgid ""
|
||||
|
|
@ -7284,7 +7332,7 @@ msgstr "Luôn cập nhật thông tin người dùng"
|
|||
|
||||
#: settings/serializers/auth/oidc.py:13 settings/serializers/auth/oidc.py:71
|
||||
msgid "OIDC"
|
||||
msgstr ""
|
||||
msgstr "OIDC"
|
||||
|
||||
#: settings/serializers/auth/oidc.py:17
|
||||
msgid "Base site URL"
|
||||
|
|
@ -7351,6 +7399,9 @@ msgid ""
|
|||
"The issuer URL of the OpenID Provider, used to discover its configuration "
|
||||
"via the `$PROVIDER_ENDPOINT/.well-known/openid-configuration` endpoint."
|
||||
msgstr ""
|
||||
"URL phát hành của nhà cung cấp OpenID, được sử dụng để khám phá cấu hình của"
|
||||
" nó thông qua đầu cuối “$PROVIDER_ENDPOINT/.well-known/openid-"
|
||||
"configuration”."
|
||||
|
||||
#: settings/serializers/auth/oidc.py:87
|
||||
msgid "JWKS endpoint"
|
||||
|
|
@ -7728,7 +7779,7 @@ msgid "Tenant ID"
|
|||
msgstr "ID thuê bao"
|
||||
|
||||
#: settings/serializers/feature.py:112 terminal/serializers/storage.py:68
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:124
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:123
|
||||
#: xpack/plugins/cloud/models.py:293
|
||||
msgid "Region"
|
||||
msgstr "Khu vực"
|
||||
|
|
@ -8583,7 +8634,7 @@ msgstr "Tải xuống mẫu cập nhật"
|
|||
|
||||
#: templates/_foot_js.html:30
|
||||
msgid "Page footer"
|
||||
msgstr ""
|
||||
msgstr "Chân trang"
|
||||
|
||||
#: templates/_header_bar.html:12
|
||||
msgid "Help"
|
||||
|
|
@ -8693,7 +8744,7 @@ msgstr ""
|
|||
"tưởng liên kết này"
|
||||
|
||||
#: templates/resource_download.html:20 templates/resource_download.html:35
|
||||
#: users/const.py:78
|
||||
#: users/const.py:84
|
||||
msgid "Client"
|
||||
msgstr "Khách hàng"
|
||||
|
||||
|
|
@ -8985,12 +9036,12 @@ msgstr "Chỉ hỗ trợ nền tảng tùy chỉnh"
|
|||
msgid "Missing type in platform.yml"
|
||||
msgstr "Thiếu loại trong platform.yml"
|
||||
|
||||
#: terminal/models/applet/applet.py:373 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/applet.py:381 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/host.py:138
|
||||
msgid "Hosting"
|
||||
msgstr "Máy chủ chủ"
|
||||
|
||||
#: terminal/models/applet/applet.py:379
|
||||
#: terminal/models/applet/applet.py:387
|
||||
msgid "Applet Publication"
|
||||
msgstr "Phát hành ứng dụng"
|
||||
|
||||
|
|
@ -9140,7 +9191,7 @@ msgstr "Người dùng ứng dụng"
|
|||
msgid "Can view terminal config"
|
||||
msgstr "Có thể xem cấu hình thiết bị đầu cuối"
|
||||
|
||||
#: terminal/models/session/command.py:76
|
||||
#: terminal/models/session/command.py:77
|
||||
msgid "Command record"
|
||||
msgstr "Bản ghi lệnh"
|
||||
|
||||
|
|
@ -9848,10 +9899,8 @@ msgid ""
|
|||
msgstr "Thông tin chi tiết về cảnh báo"
|
||||
|
||||
#: terminal/templates/terminal/_msg_command_warning.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Asset details"
|
||||
msgid "Alert details"
|
||||
msgstr "Thông tin tài sản"
|
||||
msgstr "Chi tiết cảnh báo"
|
||||
|
||||
#: terminal/templates/terminal/_msg_command_warning.html:25
|
||||
msgid "View session"
|
||||
|
|
@ -10087,11 +10136,11 @@ msgstr "Bạn có một công việc mới, người xin - {}"
|
|||
msgid "{}: New Ticket - {} ({})"
|
||||
msgstr "Công việc mới - {} ({})"
|
||||
|
||||
#: tickets/notifications.py:160
|
||||
#: tickets/notifications.py:168
|
||||
msgid "Your ticket has been processed, processor - {}"
|
||||
msgstr "Công việc của bạn đã được xử lý, người xử lý - {}"
|
||||
|
||||
#: tickets/notifications.py:164
|
||||
#: tickets/notifications.py:172
|
||||
msgid "Ticket has processed - {} ({})"
|
||||
msgstr "Công việc của bạn đã được xử lý, người xử lý - {} ({})"
|
||||
|
||||
|
|
@ -10250,23 +10299,31 @@ msgstr "Cửa sổ hiện tại"
|
|||
msgid "New window"
|
||||
msgstr "Cửa sổ mới"
|
||||
|
||||
#: users/const.py:47
|
||||
#: users/const.py:43
|
||||
msgid "Dark gray"
|
||||
msgstr "Màu xám đậm"
|
||||
|
||||
#: users/const.py:44
|
||||
msgid "Deep blue"
|
||||
msgstr "Màu xanh đậm"
|
||||
|
||||
#: users/const.py:53
|
||||
msgid "High(32 bit)"
|
||||
msgstr "Cao (32 bit)"
|
||||
|
||||
#: users/const.py:48
|
||||
#: users/const.py:54
|
||||
msgid "True Color(24 bit)"
|
||||
msgstr ""
|
||||
msgstr "Màu thật (24 bit)"
|
||||
|
||||
#: users/const.py:49
|
||||
#: users/const.py:55
|
||||
msgid "Medium(16 bit)"
|
||||
msgstr "Trung bình (16 bit)"
|
||||
|
||||
#: users/const.py:82
|
||||
#: users/const.py:88
|
||||
msgid "Replace"
|
||||
msgstr "Thay thế"
|
||||
|
||||
#: users/const.py:83
|
||||
#: users/const.py:89
|
||||
msgid "Suffix"
|
||||
msgstr "Thêm hậu tố"
|
||||
|
||||
|
|
@ -10482,7 +10539,7 @@ msgstr "Đặt lại khóa SSH"
|
|||
|
||||
#: users/notifications.py:253
|
||||
msgid "Update SSH Key url"
|
||||
msgstr ""
|
||||
msgstr "Cập nhật địa chỉ SSH khóa"
|
||||
|
||||
#: users/notifications.py:276
|
||||
msgid "Reset MFA"
|
||||
|
|
@ -10493,12 +10550,12 @@ msgid "Reset MFA url"
|
|||
msgstr "Địa chỉ trang web đặt lại MFA"
|
||||
|
||||
#: users/serializers/preference/koko.py:10
|
||||
#: users/serializers/preference/luna.py:63
|
||||
#: users/serializers/preference/luna.py:67
|
||||
msgid "File name conflict resolution"
|
||||
msgstr "Giải pháp xung đột tên tệp"
|
||||
|
||||
#: users/serializers/preference/koko.py:14
|
||||
#: users/serializers/preference/luna.py:80
|
||||
#: users/serializers/preference/luna.py:84
|
||||
msgid "Terminal theme name"
|
||||
msgstr "Tên chủ đề terminal"
|
||||
|
||||
|
|
@ -10532,27 +10589,33 @@ msgstr "Tải tài sản cây không đồng bộ"
|
|||
msgid "Connect default open method"
|
||||
msgstr "Kết nối với cách mở mặc định"
|
||||
|
||||
#: users/serializers/preference/luna.py:37
|
||||
#: users/serializers/preference/luna.py:34
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr "Chủ đề"
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
msgid "RDP resolution"
|
||||
msgstr "Độ phân giải RDP"
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
#: users/serializers/preference/luna.py:45
|
||||
msgid "Keyboard layout"
|
||||
msgstr "Bố cục bàn phím"
|
||||
|
||||
#: users/serializers/preference/luna.py:45
|
||||
#: users/serializers/preference/luna.py:49
|
||||
msgid "RDP client option"
|
||||
msgstr "Tùy chọn khách hàng RDP"
|
||||
|
||||
#: users/serializers/preference/luna.py:49
|
||||
#: users/serializers/preference/luna.py:53
|
||||
msgid "RDP color quality"
|
||||
msgstr "Chất lượng màu RDP"
|
||||
|
||||
#: users/serializers/preference/luna.py:53
|
||||
#: users/serializers/preference/luna.py:57
|
||||
msgid "RDP smart size"
|
||||
msgstr "Kích thước thông minh RDP"
|
||||
|
||||
#: users/serializers/preference/luna.py:54
|
||||
#: users/serializers/preference/luna.py:58
|
||||
msgid ""
|
||||
"Determines whether the client computer should scale the content on the "
|
||||
"remote computer to fit the window size of the client computer when the "
|
||||
|
|
@ -10561,27 +10624,27 @@ msgstr ""
|
|||
"Xác nhận liệu máy tính khách có nên thu phóng nội dung trên máy tính từ xa "
|
||||
"để phù hợp với kích thước cửa sổ của máy tính khách hay không"
|
||||
|
||||
#: users/serializers/preference/luna.py:59
|
||||
#: users/serializers/preference/luna.py:63
|
||||
msgid "Remote app connect method"
|
||||
msgstr "Cách kết nối ứng dụng từ xa"
|
||||
|
||||
#: users/serializers/preference/luna.py:70
|
||||
#: users/serializers/preference/luna.py:74
|
||||
msgid "Terminal font size"
|
||||
msgstr "Kích thước phông chữ trong terminal ký tự"
|
||||
|
||||
#: users/serializers/preference/luna.py:73
|
||||
#: users/serializers/preference/luna.py:77
|
||||
msgid "Backspace as Ctrl+H"
|
||||
msgstr "Terminal ký tự Backspace như Ctrl+H"
|
||||
|
||||
#: users/serializers/preference/luna.py:76
|
||||
#: users/serializers/preference/luna.py:80
|
||||
msgid "Right click quickly paste"
|
||||
msgstr "Dán nhanh bằng chuột phải"
|
||||
|
||||
#: users/serializers/preference/luna.py:86
|
||||
#: users/serializers/preference/luna.py:90
|
||||
msgid "Graphics"
|
||||
msgstr "Đồ họa hóa"
|
||||
|
||||
#: users/serializers/preference/luna.py:87
|
||||
#: users/serializers/preference/luna.py:91
|
||||
msgid "Command line"
|
||||
msgstr "Dòng lệnh"
|
||||
|
||||
|
|
@ -11215,7 +11278,7 @@ msgstr "ZStack"
|
|||
|
||||
#: xpack/plugins/cloud/const.py:30 xpack/plugins/cloud/providers/smartx.py:9
|
||||
msgid "SmartX CloudTower"
|
||||
msgstr ""
|
||||
msgstr "Cloud SmartX"
|
||||
|
||||
#: xpack/plugins/cloud/const.py:31
|
||||
msgid "Fusion Compute"
|
||||
|
|
@ -11318,17 +11381,17 @@ msgstr "Nhiệm vụ đã hoàn thành"
|
|||
msgid "Synchronization regions"
|
||||
msgstr "Đồng bộ khu vực"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:141
|
||||
#: xpack/plugins/cloud/manager.py:140
|
||||
#, python-format
|
||||
msgid "Get instances of region \"%s\" error, error: %s"
|
||||
msgstr "Gặp lỗi khi lấy实例 của khu vực \"%s\", lỗi: %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:186
|
||||
#: xpack/plugins/cloud/manager.py:185
|
||||
#, python-format
|
||||
msgid "Failed to synchronize the instance \"%s\""
|
||||
msgstr "Không thể đồng bộ实例 %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:377
|
||||
#: xpack/plugins/cloud/manager.py:376
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The updated platform of asset \"%s\" is inconsistent with the original "
|
||||
|
|
@ -11337,47 +11400,47 @@ msgstr ""
|
|||
"Cập nhật nền tảng của tài sản \"%s\" không đồng nhất với loại nền tảng ban "
|
||||
"đầu. Bỏ qua cập nhật nền tảng và giao thức"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:434
|
||||
#: xpack/plugins/cloud/manager.py:433
|
||||
#, python-format
|
||||
msgid "The asset \"%s\" already exists"
|
||||
msgstr "Tài sản \"%s\" đã tồn tại"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:436
|
||||
#: xpack/plugins/cloud/manager.py:435
|
||||
#, python-format
|
||||
msgid "Update asset \"%s\""
|
||||
msgstr "Cập nhật tài sản \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:439
|
||||
#: xpack/plugins/cloud/manager.py:438
|
||||
#, python-format
|
||||
msgid "Asset \"%s\" has been updated"
|
||||
msgstr "Tài sản \"%s\" đã được cập nhật."
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:448
|
||||
#: xpack/plugins/cloud/manager.py:447
|
||||
#, python-format
|
||||
msgid "Prepare to create asset \"%s\""
|
||||
msgstr "Chuẩn bị tạo tài sản %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:469
|
||||
#: xpack/plugins/cloud/manager.py:468
|
||||
#, python-format
|
||||
msgid "Set nodes \"%s\""
|
||||
msgstr "Thiết lập nút: \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:495
|
||||
#: xpack/plugins/cloud/manager.py:494
|
||||
#, python-format
|
||||
msgid "Set accounts \"%s\""
|
||||
msgstr "Thiết lập tài khoản: %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:511
|
||||
#: xpack/plugins/cloud/manager.py:510
|
||||
#, python-format
|
||||
msgid "Set protocols \"%s\""
|
||||
msgstr "Thiết lập giao thức \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:519
|
||||
#: xpack/plugins/cloud/manager.py:518
|
||||
#, python-format
|
||||
msgid "Set labels \"%s\""
|
||||
msgstr "Thiết lập nhãn: \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:533 xpack/plugins/cloud/tasks.py:31
|
||||
#: xpack/plugins/cloud/manager.py:532 xpack/plugins/cloud/tasks.py:31
|
||||
msgid "Run sync instance task"
|
||||
msgstr "Thực hiện nhiệm vụ đồng bộ hóa phiên bản"
|
||||
|
||||
|
|
@ -11939,11 +12002,6 @@ msgstr "Trang quản lý Logo"
|
|||
msgid "Logout logo"
|
||||
msgstr "Đăng xuất"
|
||||
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr "Chủ đề"
|
||||
|
||||
#: xpack/plugins/interface/models.py:42
|
||||
msgid "Footer content"
|
||||
msgstr "Nội dung chân trang"
|
||||
|
|
@ -11964,6 +12022,14 @@ msgstr "Nhập giấy phép thành công"
|
|||
msgid "Invalid license"
|
||||
msgstr "Giấy phép không hợp lệ"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Themes"
|
||||
#~ msgstr "Chủ đề"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "domain_name"
|
||||
#~ msgstr "Tên miền"
|
||||
|
||||
#~ msgid "Task execution id"
|
||||
#~ msgstr "ID thực hiện nhiệm vụ"
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: JumpServer 0.3.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-17 15:02+0800\n"
|
||||
"POT-Creation-Date: 2025-10-16 14:10+0800\n"
|
||||
"PO-Revision-Date: 2021-05-20 10:54+0800\n"
|
||||
"Last-Translator: ibuler <ibuler@qq.com>\n"
|
||||
"Language-Team: JumpServer team<ibuler@qq.com>\n"
|
||||
|
|
@ -18,7 +18,7 @@ msgstr ""
|
|||
"X-Generator: Poedit 2.4.3\n"
|
||||
"X-ZhConverter: 繁化姬 dict-74c8d060-r1048 @ 2024/04/07 18:19:20 | https://zhconvert.org\n"
|
||||
|
||||
#: accounts/api/account/account.py:138
|
||||
#: accounts/api/account/account.py:141
|
||||
#: accounts/serializers/account/account.py:181
|
||||
#: accounts/serializers/account/account.py:362
|
||||
msgid "Account already exists"
|
||||
|
|
@ -96,7 +96,7 @@ msgstr "計劃執行結束"
|
|||
|
||||
#: accounts/automations/base/manager.py:119
|
||||
msgid "Windows does not support SSH key authentication"
|
||||
msgstr ""
|
||||
msgstr "Windows 不支持 SSH 金鑰認證"
|
||||
|
||||
#: accounts/automations/base/manager.py:123
|
||||
msgid "Windows password cannot contain special characters like > ^"
|
||||
|
|
@ -210,7 +210,7 @@ msgstr "模板"
|
|||
msgid "Skip"
|
||||
msgstr "跳過"
|
||||
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:291
|
||||
#: accounts/const/account.py:33 audits/const.py:24 rbac/tree.py:292
|
||||
#: templates/_csv_import_export.html:18 templates/_csv_update_modal.html:6
|
||||
msgid "Update"
|
||||
msgstr "更新"
|
||||
|
|
@ -576,17 +576,18 @@ msgstr "帳號活動"
|
|||
#: accounts/serializers/account/service.py:29
|
||||
#: accounts/serializers/account/virtual.py:20 acls/models/base.py:35
|
||||
#: acls/models/base.py:96 acls/models/command_acl.py:21
|
||||
#: acls/notifications.py:69 acls/serializers/base.py:35
|
||||
#: assets/models/asset/common.py:100 assets/models/asset/common.py:166
|
||||
#: assets/models/cmd_filter.py:21 assets/models/label.py:18
|
||||
#: assets/models/platform.py:15 assets/models/platform.py:94
|
||||
#: assets/models/zone.py:19 assets/serializers/asset/common.py:174
|
||||
#: assets/serializers/platform.py:158 assets/serializers/platform.py:283
|
||||
#: acls/models/data_masking.py:20 acls/notifications.py:69
|
||||
#: acls/serializers/base.py:35 assets/models/asset/common.py:100
|
||||
#: assets/models/asset/common.py:166 assets/models/cmd_filter.py:21
|
||||
#: assets/models/label.py:18 assets/models/platform.py:15
|
||||
#: assets/models/platform.py:94 assets/models/zone.py:19
|
||||
#: assets/serializers/asset/common.py:174 assets/serializers/platform.py:158
|
||||
#: assets/serializers/platform.py:283
|
||||
#: authentication/backends/passkey/models.py:10
|
||||
#: authentication/models/ssh_key.py:12 authentication/notifications.py:17
|
||||
#: authentication/notifications.py:56
|
||||
#: authentication/serializers/connect_token_secret.py:117
|
||||
#: authentication/serializers/connect_token_secret.py:174 labels/models.py:11
|
||||
#: authentication/serializers/connect_token_secret.py:125
|
||||
#: authentication/serializers/connect_token_secret.py:183 labels/models.py:11
|
||||
#: ops/mixin.py:32 ops/models/adhoc.py:19 ops/models/celery.py:15
|
||||
#: ops/models/celery.py:81 ops/models/job.py:147 ops/models/playbook.py:28
|
||||
#: ops/models/variable.py:9 ops/serializers/job.py:20
|
||||
|
|
@ -780,7 +781,7 @@ msgstr "結束日期"
|
|||
#: assets/models/automations/base.py:137
|
||||
#: assets/serializers/automations/base.py:47 audits/models.py:224
|
||||
#: audits/serializers.py:77 ops/models/base.py:49 ops/models/job.py:233
|
||||
#: terminal/models/applet/applet.py:374 terminal/models/applet/host.py:140
|
||||
#: terminal/models/applet/applet.py:382 terminal/models/applet/host.py:140
|
||||
#: terminal/models/component/status.py:30
|
||||
#: terminal/models/virtualapp/virtualapp.py:99
|
||||
#: terminal/serializers/applet.py:19 terminal/serializers/applet_host.py:163
|
||||
|
|
@ -921,7 +922,7 @@ msgstr "帳號風險"
|
|||
|
||||
#: accounts/models/automations/check_account.py:119
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
msgstr "URL 標識符"
|
||||
|
||||
#: accounts/models/automations/check_account.py:125
|
||||
msgid "Check engine"
|
||||
|
|
@ -1037,7 +1038,7 @@ msgstr "密碼規則"
|
|||
|
||||
#: accounts/models/base.py:69 assets/models/automations/base.py:28
|
||||
#: assets/models/cmd_filter.py:39 assets/models/label.py:22
|
||||
#: authentication/serializers/connect_token_secret.py:121
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: terminal/models/applet/applet.py:41
|
||||
#: terminal/models/virtualapp/virtualapp.py:23 users/serializers/user.py:257
|
||||
msgid "Is active"
|
||||
|
|
@ -1209,7 +1210,7 @@ msgstr "類別"
|
|||
#: assets/serializers/platform.py:160 assets/serializers/platform.py:172
|
||||
#: audits/serializers.py:76 audits/serializers.py:196
|
||||
#: authentication/models/connection_token.py:67
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: authentication/serializers/connect_token_secret.py:138
|
||||
#: ops/models/job.py:155 perms/serializers/user_permission.py:28
|
||||
#: terminal/models/applet/applet.py:40 terminal/models/component/storage.py:58
|
||||
#: terminal/models/component/storage.py:152 terminal/serializers/applet.py:30
|
||||
|
|
@ -1234,7 +1235,7 @@ msgstr "目錄服務"
|
|||
#: accounts/serializers/account/account.py:278
|
||||
#, python-brace-format
|
||||
msgid "Account already exists. Field(s): {fields} must be unique."
|
||||
msgstr ""
|
||||
msgstr "帳號已存在。字段:{fields} 必須是唯一的。"
|
||||
|
||||
#: accounts/serializers/account/account.py:285
|
||||
msgid "Has secret"
|
||||
|
|
@ -1281,7 +1282,7 @@ msgid "Spec info"
|
|||
msgstr "特殊資訊"
|
||||
|
||||
#: accounts/serializers/account/account.py:493
|
||||
#: authentication/serializers/connect_token_secret.py:164
|
||||
#: authentication/serializers/connect_token_secret.py:173
|
||||
#: authentication/templates/authentication/_access_key_modal.html:30
|
||||
#: perms/models/perm_node.py:21 users/serializers/group.py:33
|
||||
msgid "ID"
|
||||
|
|
@ -1338,7 +1339,7 @@ msgstr "IP 白名單"
|
|||
#: assets/models/cmd_filter.py:88 common/db/models.py:36
|
||||
#: ops/models/adhoc.py:25 ops/models/job.py:165 ops/models/playbook.py:31
|
||||
#: rbac/models/role.py:37 settings/models.py:44
|
||||
#: terminal/models/applet/applet.py:46 terminal/models/applet/applet.py:375
|
||||
#: terminal/models/applet/applet.py:46 terminal/models/applet/applet.py:383
|
||||
#: terminal/models/applet/host.py:143 terminal/models/component/endpoint.py:29
|
||||
#: terminal/models/component/endpoint.py:117
|
||||
#: terminal/models/session/session.py:44
|
||||
|
|
@ -1825,7 +1826,7 @@ msgstr "優先度可選範圍為 1-100 (數值越小越優先)"
|
|||
#: acls/models/base.py:41 acls/serializers/base.py:57
|
||||
#: assets/models/cmd_filter.py:81 audits/models.py:99
|
||||
#: audits/serializers.py:107
|
||||
#: authentication/serializers/connect_token_secret.py:123
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/templates/authentication/_access_key_modal.html:34
|
||||
#: perms/serializers/permission.py:63 perms/serializers/permission.py:85
|
||||
#: terminal/backends/command/models.py:24
|
||||
|
|
@ -1834,7 +1835,7 @@ msgid "Action"
|
|||
msgstr "動作"
|
||||
|
||||
#: acls/models/base.py:42 assets/models/cmd_filter.py:86
|
||||
#: authentication/serializers/connect_token_secret.py:93
|
||||
#: authentication/serializers/connect_token_secret.py:101
|
||||
msgid "Reviewers"
|
||||
msgstr "審批人"
|
||||
|
||||
|
|
@ -1875,7 +1876,7 @@ msgstr "忽略大小寫"
|
|||
|
||||
#: acls/models/command_acl.py:33 acls/models/command_acl.py:97
|
||||
#: acls/serializers/command_acl.py:29
|
||||
#: authentication/serializers/connect_token_secret.py:90
|
||||
#: authentication/serializers/connect_token_secret.py:98
|
||||
#: terminal/templates/terminal/_msg_command_warning.html:23
|
||||
msgid "Command group"
|
||||
msgstr "命令組"
|
||||
|
|
@ -1901,6 +1902,38 @@ msgstr "連接方式"
|
|||
msgid "Connect method acl"
|
||||
msgstr "連接方式控制"
|
||||
|
||||
#: acls/models/data_masking.py:13
|
||||
msgid "Fixed Character Replacement"
|
||||
msgstr "固定字符替換"
|
||||
|
||||
#: acls/models/data_masking.py:14
|
||||
msgid "Hide Middle Characters"
|
||||
msgstr "隱藏中間字符"
|
||||
|
||||
#: acls/models/data_masking.py:15
|
||||
msgid "Keep Prefix Only"
|
||||
msgstr "保留前綴"
|
||||
|
||||
#: acls/models/data_masking.py:16
|
||||
msgid "Keep Suffix Only"
|
||||
msgstr "保留後綴"
|
||||
|
||||
#: acls/models/data_masking.py:21
|
||||
msgid "Fields pattern"
|
||||
msgstr "遮蓋列名"
|
||||
|
||||
#: acls/models/data_masking.py:27 acls/serializers/data_masking.py:14
|
||||
msgid "Masking Method"
|
||||
msgstr "遮蓋方法"
|
||||
|
||||
#: acls/models/data_masking.py:31
|
||||
msgid "Mask Pattern"
|
||||
msgstr "遮蓋字符"
|
||||
|
||||
#: acls/models/data_masking.py:42
|
||||
msgid "Data Masking Rule"
|
||||
msgstr "數據屏蔽規則"
|
||||
|
||||
#: acls/models/login_acl.py:11 acls/models/login_asset_acl.py:9
|
||||
#: acls/serializers/login_acl.py:16 acls/serializers/login_asset_acl.py:13
|
||||
msgid "Rule"
|
||||
|
|
@ -1935,6 +1968,14 @@ msgstr "用戶登錄提醒"
|
|||
msgid "Login city"
|
||||
msgstr "登錄城市"
|
||||
|
||||
#: acls/notifications.py:20 acls/notifications.py:71
|
||||
msgid "Recipient name"
|
||||
msgstr "收件人名稱"
|
||||
|
||||
#: acls/notifications.py:21 acls/notifications.py:72
|
||||
msgid "Recipient username"
|
||||
msgstr "收件人用戶名"
|
||||
|
||||
#: acls/notifications.py:22 acls/templates/acls/user_login_reminder.html:12
|
||||
#: audits/models.py:213 audits/models.py:291 audits/serializers.py:91
|
||||
msgid "User agent"
|
||||
|
|
@ -2228,7 +2269,7 @@ msgstr "禁用"
|
|||
#: assets/const/base.py:33 settings/serializers/basic.py:8
|
||||
#: users/serializers/preference/koko.py:19
|
||||
#: users/serializers/preference/lina.py:51
|
||||
#: users/serializers/preference/luna.py:85
|
||||
#: users/serializers/preference/luna.py:89
|
||||
msgid "Basic"
|
||||
msgstr "基本"
|
||||
|
||||
|
|
@ -2256,7 +2297,7 @@ msgstr "雲服務"
|
|||
|
||||
#: assets/const/category.py:14 assets/models/asset/gpt.py:11
|
||||
#: assets/models/asset/web.py:16 audits/const.py:46
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:77
|
||||
#: terminal/models/applet/applet.py:28 users/const.py:83
|
||||
msgid "Web"
|
||||
msgstr "Web"
|
||||
|
||||
|
|
@ -2286,15 +2327,15 @@ msgstr "華為"
|
|||
|
||||
#: assets/const/device.py:9
|
||||
msgid "H3C"
|
||||
msgstr ""
|
||||
msgstr "H3C"
|
||||
|
||||
#: assets/const/device.py:10
|
||||
msgid "Juniper"
|
||||
msgstr ""
|
||||
msgstr "Juniper"
|
||||
|
||||
#: assets/const/device.py:11
|
||||
msgid "TP-Link"
|
||||
msgstr ""
|
||||
msgstr "TP-Link"
|
||||
|
||||
#: assets/const/device.py:12 assets/const/ds.py:7
|
||||
#: terminal/models/applet/applet.py:27 tickets/const.py:9
|
||||
|
|
@ -2317,7 +2358,7 @@ msgstr "防火牆"
|
|||
msgid "Windows Active Directory"
|
||||
msgstr "Windows 活動目錄"
|
||||
|
||||
#: assets/const/gpt.py:7
|
||||
#: assets/const/gpt.py:8
|
||||
msgid "ChatGPT"
|
||||
msgstr "ChatGPT"
|
||||
|
||||
|
|
@ -2436,7 +2477,7 @@ msgstr "加密的<–SEP->第三方登入方式包括:"
|
|||
|
||||
#: assets/const/protocol.py:202
|
||||
msgid "Whether to use TLS encryption."
|
||||
msgstr ""
|
||||
msgstr "是否使用 TLS 加密。"
|
||||
|
||||
#: assets/const/protocol.py:232
|
||||
msgid "Auth source"
|
||||
|
|
@ -2528,7 +2569,7 @@ msgstr "地址"
|
|||
#: assets/models/asset/common.py:169 assets/models/platform.py:155
|
||||
#: assets/serializers/asset/common.py:151
|
||||
#: authentication/backends/passkey/models.py:12
|
||||
#: authentication/serializers/connect_token_secret.py:122
|
||||
#: authentication/serializers/connect_token_secret.py:130
|
||||
#: perms/serializers/user_permission.py:26 xpack/plugins/cloud/models.py:399
|
||||
msgid "Platform"
|
||||
msgstr "系統平台"
|
||||
|
|
@ -2723,7 +2764,7 @@ msgstr "系統"
|
|||
#: assets/serializers/cagegory.py:11 assets/serializers/cagegory.py:18
|
||||
#: assets/serializers/cagegory.py:24
|
||||
#: authentication/models/connection_token.py:35
|
||||
#: authentication/serializers/connect_token_secret.py:129
|
||||
#: authentication/serializers/connect_token_secret.py:137
|
||||
#: common/serializers/common.py:86 labels/models.py:12 settings/models.py:40
|
||||
#: users/models/preference.py:13
|
||||
msgid "Value"
|
||||
|
|
@ -2732,7 +2773,7 @@ msgstr "值"
|
|||
#: assets/models/label.py:40 assets/serializers/cagegory.py:10
|
||||
#: assets/serializers/cagegory.py:17 assets/serializers/cagegory.py:23
|
||||
#: assets/serializers/platform.py:159
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
#: authentication/serializers/connect_token_secret.py:136
|
||||
#: common/serializers/common.py:85 labels/serializers.py:45
|
||||
#: settings/serializers/msg.py:91 xpack/plugins/cloud/models.py:404
|
||||
msgid "Label"
|
||||
|
|
@ -2783,7 +2824,7 @@ msgid "Required"
|
|||
msgstr "必須的"
|
||||
|
||||
#: assets/models/platform.py:19 assets/serializers/platform.py:161
|
||||
#: terminal/models/component/storage.py:28
|
||||
#: terminal/models/component/storage.py:28 users/const.py:42
|
||||
#: xpack/plugins/cloud/providers/nutanix.py:30
|
||||
msgid "Default"
|
||||
msgstr "默認"
|
||||
|
|
@ -3057,7 +3098,7 @@ msgid "Disk total"
|
|||
msgstr "硬碟大小"
|
||||
|
||||
#: assets/serializers/asset/info/gathered.py:16
|
||||
#: authentication/serializers/connect_token_secret.py:119
|
||||
#: authentication/serializers/connect_token_secret.py:127
|
||||
msgid "OS"
|
||||
msgstr "操作系統"
|
||||
|
||||
|
|
@ -3343,7 +3384,7 @@ msgstr "刪除目錄"
|
|||
|
||||
#: audits/const.py:14 audits/const.py:25
|
||||
#: authentication/templates/authentication/_access_key_modal.html:65
|
||||
#: rbac/tree.py:292
|
||||
#: rbac/tree.py:293
|
||||
msgid "Delete"
|
||||
msgstr "刪除"
|
||||
|
||||
|
|
@ -3369,7 +3410,7 @@ msgstr "下載"
|
|||
msgid "Rename dir"
|
||||
msgstr "映射目錄"
|
||||
|
||||
#: audits/const.py:23 rbac/tree.py:290 terminal/api/session/session.py:285
|
||||
#: audits/const.py:23 rbac/tree.py:291 terminal/api/session/session.py:285
|
||||
#: terminal/templates/terminal/_msg_session_sharing.html:10
|
||||
#: xpack/plugins/cloud/manager.py:102
|
||||
msgid "View"
|
||||
|
|
@ -3377,7 +3418,7 @@ msgstr "查看"
|
|||
|
||||
#: audits/const.py:26
|
||||
#: authentication/templates/authentication/_access_key_modal.html:22
|
||||
#: rbac/tree.py:289
|
||||
#: rbac/tree.py:290
|
||||
msgid "Create"
|
||||
msgstr "創建"
|
||||
|
||||
|
|
@ -3530,7 +3571,7 @@ msgid "MFA"
|
|||
msgstr "MFA"
|
||||
|
||||
#: audits/models.py:219 terminal/models/session/sharing.py:123
|
||||
#: xpack/plugins/cloud/manager.py:187 xpack/plugins/cloud/models.py:237
|
||||
#: xpack/plugins/cloud/manager.py:186 xpack/plugins/cloud/models.py:237
|
||||
msgid "Reason"
|
||||
msgstr "原因"
|
||||
|
||||
|
|
@ -3781,6 +3822,10 @@ msgstr "用戶來自 {} 請去相應系統修改密碼"
|
|||
msgid "Forgot password"
|
||||
msgstr "忘記密碼"
|
||||
|
||||
#: authentication/api/password.py:70 authentication/mfa/email.py:42
|
||||
msgid "The validity period of the verification code is {} minute"
|
||||
msgstr "驗證碼有效期為 {} 分鐘"
|
||||
|
||||
#: authentication/apps.py:7
|
||||
msgid "App Authentication"
|
||||
msgstr "身份验证管理"
|
||||
|
|
@ -4186,7 +4231,7 @@ msgid "Input secret"
|
|||
msgstr "自訂密碼"
|
||||
|
||||
#: authentication/models/connection_token.py:47
|
||||
#: authentication/serializers/connect_token_secret.py:118
|
||||
#: authentication/serializers/connect_token_secret.py:126
|
||||
#: terminal/models/applet/applet.py:43
|
||||
#: terminal/models/virtualapp/virtualapp.py:24
|
||||
#: terminal/serializers/session.py:31 terminal/serializers/session.py:58
|
||||
|
|
@ -4249,15 +4294,15 @@ msgstr "沒有用戶或用戶失效"
|
|||
msgid "No asset or inactive asset"
|
||||
msgstr "沒有資產或資產未啟用"
|
||||
|
||||
#: authentication/models/connection_token.py:348
|
||||
#: authentication/models/connection_token.py:360
|
||||
msgid "Can view super connection token secret"
|
||||
msgstr "可以查看超級連接令牌密文"
|
||||
|
||||
#: authentication/models/connection_token.py:350
|
||||
#: authentication/models/connection_token.py:362
|
||||
msgid "Super connection token"
|
||||
msgstr "超級連接令牌"
|
||||
|
||||
#: authentication/models/connection_token.py:367
|
||||
#: authentication/models/connection_token.py:379
|
||||
msgid "Admin connection token"
|
||||
msgstr "管理者連接令牌"
|
||||
|
||||
|
|
@ -4309,38 +4354,38 @@ msgstr "OAuth ID"
|
|||
msgid "binding reminder"
|
||||
msgstr "綁定提醒"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:120
|
||||
#: authentication/serializers/connect_token_secret.py:128
|
||||
msgid "Is builtin"
|
||||
msgstr "內建的"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:124
|
||||
#: authentication/serializers/connect_token_secret.py:132
|
||||
msgid "Options"
|
||||
msgstr "選項"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:131
|
||||
#: authentication/serializers/connect_token_secret.py:139
|
||||
#: ops/notifications.py:19 rbac/tree.py:63
|
||||
msgid "Component"
|
||||
msgstr "組件"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:140
|
||||
#: authentication/serializers/connect_token_secret.py:148
|
||||
msgid "Domain"
|
||||
msgstr "網域"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:142
|
||||
#: authentication/serializers/connect_token_secret.py:151
|
||||
msgid "Expired now"
|
||||
msgstr "立刻過期"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:175
|
||||
#: authentication/serializers/connect_token_secret.py:184
|
||||
#: terminal/models/virtualapp/virtualapp.py:25
|
||||
msgid "Image name"
|
||||
msgstr "鏡像名稱"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:176
|
||||
#: authentication/serializers/connect_token_secret.py:185
|
||||
#: terminal/models/virtualapp/virtualapp.py:27
|
||||
msgid "Image port"
|
||||
msgstr "鏡像埠"
|
||||
|
||||
#: authentication/serializers/connect_token_secret.py:177
|
||||
#: authentication/serializers/connect_token_secret.py:186
|
||||
#: terminal/models/virtualapp/virtualapp.py:26
|
||||
msgid "Image protocol"
|
||||
msgstr "鏡像協議"
|
||||
|
|
@ -4448,13 +4493,13 @@ msgid "Show"
|
|||
msgstr "顯示"
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:66
|
||||
#: settings/serializers/terminal.py:24 users/const.py:42
|
||||
#: settings/serializers/terminal.py:24 users/const.py:48
|
||||
#: users/templates/users/user_verify_mfa.html:36
|
||||
msgid "Disable"
|
||||
msgstr "禁用"
|
||||
|
||||
#: authentication/templates/authentication/_access_key_modal.html:67
|
||||
#: settings/serializers/terminal.py:24 users/const.py:43
|
||||
#: settings/serializers/terminal.py:24 users/const.py:49
|
||||
#: users/templates/users/mfa_setting.html:120
|
||||
#: users/templates/users/mfa_setting.html:158
|
||||
#: users/templates/users/mfa_setting.html:177
|
||||
|
|
@ -4513,16 +4558,11 @@ msgid ""
|
|||
"account password in time."
|
||||
msgstr "若懷疑此次登錄行為異常,請及時修改帳號密碼"
|
||||
|
||||
#: authentication/templates/authentication/_msg_mfa_email_code.html:15
|
||||
#: authentication/templates/authentication/_msg_reset_password_code.html:18
|
||||
msgid "The validity period of the verification code is one minute"
|
||||
msgstr "驗證碼有效期為 1 分鐘"
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:6
|
||||
msgid "Your account has just been bound to"
|
||||
msgstr "您的帳戶剛剛綁定到"
|
||||
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:17
|
||||
#: authentication/templates/authentication/_msg_oauth_bind.html:15
|
||||
msgid "If the operation is not your own, unbind and change the password."
|
||||
msgstr "如果操作不是您本人,請解綁並且修改密碼"
|
||||
|
||||
|
|
@ -4863,7 +4903,7 @@ msgstr "企業專業版"
|
|||
msgid "Ultimate edition"
|
||||
msgstr "企業旗艦版"
|
||||
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:452
|
||||
#: common/const/common.py:5 xpack/plugins/cloud/manager.py:451
|
||||
#, python-format
|
||||
msgid "%(name)s was created successfully"
|
||||
msgstr "%(name)s 創建成功"
|
||||
|
|
@ -5232,11 +5272,11 @@ msgid ""
|
|||
" this task needs to be executed for sending emails and handling attachments"
|
||||
msgstr "當帳號改密,帳號備份產生附件時,需對發送郵件及附件執行該任務"
|
||||
|
||||
#: common/tasks.py:107
|
||||
#: common/tasks.py:104
|
||||
msgid "Upload account backup to external storage"
|
||||
msgstr "上傳會話錄像到外部存儲"
|
||||
|
||||
#: common/tasks.py:109
|
||||
#: common/tasks.py:106
|
||||
msgid ""
|
||||
"When performing an account backup, this task needs to be executed to "
|
||||
"external storage (SFTP)"
|
||||
|
|
@ -5644,7 +5684,7 @@ msgstr "* 請輸入有效的 crontab 表達式"
|
|||
|
||||
#: ops/mixin.py:194
|
||||
msgid "Crontab minute must not contain '*'"
|
||||
msgstr ""
|
||||
msgstr "Crontab 分鐘不能包含 “*”"
|
||||
|
||||
#: ops/mixin.py:208 settings/serializers/auth/mixin.py:12
|
||||
msgid "Require interval or crontab setting"
|
||||
|
|
@ -6402,7 +6442,7 @@ msgid "Storage"
|
|||
msgstr "儲存"
|
||||
|
||||
#: rbac/tree.py:64 terminal/models/applet/applet.py:53
|
||||
#: terminal/models/applet/applet.py:371 terminal/models/applet/host.py:30
|
||||
#: terminal/models/applet/applet.py:379 terminal/models/applet/host.py:30
|
||||
#: terminal/serializers/applet.py:16
|
||||
msgid "Applet"
|
||||
msgstr "遠程應用"
|
||||
|
|
@ -6424,24 +6464,24 @@ msgstr "作業審核"
|
|||
msgid "Report"
|
||||
msgstr "報表"
|
||||
|
||||
#: rbac/tree.py:181
|
||||
#: rbac/tree.py:182
|
||||
msgid "App organizations"
|
||||
msgstr "組織管理"
|
||||
|
||||
#: rbac/tree.py:182
|
||||
#: rbac/tree.py:183
|
||||
msgid "Ticket comment"
|
||||
msgstr "工單評論"
|
||||
|
||||
#: rbac/tree.py:183 settings/serializers/feature.py:174
|
||||
#: rbac/tree.py:184 settings/serializers/feature.py:174
|
||||
#: settings/serializers/feature.py:176 tickets/models/ticket/general.py:310
|
||||
msgid "Ticket"
|
||||
msgstr "工單管理"
|
||||
|
||||
#: rbac/tree.py:184
|
||||
#: rbac/tree.py:185
|
||||
msgid "Common setting"
|
||||
msgstr "一般設定"
|
||||
|
||||
#: rbac/tree.py:185
|
||||
#: rbac/tree.py:186
|
||||
msgid "View permission tree"
|
||||
msgstr "查看授權樹"
|
||||
|
||||
|
|
@ -6485,6 +6525,14 @@ msgstr "PAM 儀表板"
|
|||
msgid "ChangeSecretDashboard"
|
||||
msgstr "帳號改密儀表盤"
|
||||
|
||||
#: reports/views.py:181
|
||||
msgid "Failed to send email: "
|
||||
msgstr "發送郵件失敗"
|
||||
|
||||
#: reports/views.py:182
|
||||
msgid "Email sent successfully to "
|
||||
msgstr "發送郵件成功"
|
||||
|
||||
#: settings/api/chat.py:41
|
||||
msgid "Chat AI is not enabled"
|
||||
msgstr "聊天 AI 沒有開啟"
|
||||
|
|
@ -6522,7 +6570,7 @@ msgstr "System Settings"
|
|||
|
||||
#: settings/const.py:13
|
||||
msgid "Embed"
|
||||
msgstr ""
|
||||
msgstr "嵌入"
|
||||
|
||||
#: settings/models.py:42 users/models/preference.py:14
|
||||
msgid "Encrypted"
|
||||
|
|
@ -6769,7 +6817,7 @@ msgstr "使用者屬性對照,其中 `key` 是 JumpServer 使用者屬性名
|
|||
|
||||
#: settings/serializers/auth/lark.py:13 users/models/user/_source.py:24
|
||||
msgid "Lark"
|
||||
msgstr ""
|
||||
msgstr "Lark"
|
||||
|
||||
#: settings/serializers/auth/lark.py:19
|
||||
msgid ""
|
||||
|
|
@ -7006,6 +7054,8 @@ msgid ""
|
|||
"The issuer URL of the OpenID Provider, used to discover its configuration "
|
||||
"via the `$PROVIDER_ENDPOINT/.well-known/openid-configuration` endpoint."
|
||||
msgstr ""
|
||||
"OpenID 提供商的發行者 URL,用於通過“$PROVIDER_ENDPOINT/.well-known/openid-"
|
||||
"configuration”端點發現其配置。"
|
||||
|
||||
#: settings/serializers/auth/oidc.py:87
|
||||
msgid "JWKS endpoint"
|
||||
|
|
@ -7353,7 +7403,7 @@ msgid "Tenant ID"
|
|||
msgstr "租戶 ID"
|
||||
|
||||
#: settings/serializers/feature.py:112 terminal/serializers/storage.py:68
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:124
|
||||
#: xpack/plugins/cloud/manager.py:119 xpack/plugins/cloud/manager.py:123
|
||||
#: xpack/plugins/cloud/models.py:293
|
||||
msgid "Region"
|
||||
msgstr "地域"
|
||||
|
|
@ -8128,7 +8178,7 @@ msgstr "下載更新模板"
|
|||
|
||||
#: templates/_foot_js.html:30
|
||||
msgid "Page footer"
|
||||
msgstr ""
|
||||
msgstr "頁腳"
|
||||
|
||||
#: templates/_header_bar.html:12
|
||||
msgid "Help"
|
||||
|
|
@ -8228,7 +8278,7 @@ msgid ""
|
|||
msgstr "您即將跳轉到一個外部網站,請確認您信任該連結"
|
||||
|
||||
#: templates/resource_download.html:20 templates/resource_download.html:35
|
||||
#: users/const.py:78
|
||||
#: users/const.py:84
|
||||
msgid "Client"
|
||||
msgstr "用戶端"
|
||||
|
||||
|
|
@ -8512,12 +8562,12 @@ msgstr "只支持自訂平台"
|
|||
msgid "Missing type in platform.yml"
|
||||
msgstr "在 platform.yml 中缺少類型"
|
||||
|
||||
#: terminal/models/applet/applet.py:373 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/applet.py:381 terminal/models/applet/host.py:36
|
||||
#: terminal/models/applet/host.py:138
|
||||
msgid "Hosting"
|
||||
msgstr "宿主機"
|
||||
|
||||
#: terminal/models/applet/applet.py:379
|
||||
#: terminal/models/applet/applet.py:387
|
||||
msgid "Applet Publication"
|
||||
msgstr "應用發布"
|
||||
|
||||
|
|
@ -8667,7 +8717,7 @@ msgstr "應用用戶"
|
|||
msgid "Can view terminal config"
|
||||
msgstr "可以查看終端配置"
|
||||
|
||||
#: terminal/models/session/command.py:76
|
||||
#: terminal/models/session/command.py:77
|
||||
msgid "Command record"
|
||||
msgstr "命令記錄"
|
||||
|
||||
|
|
@ -9568,11 +9618,11 @@ msgstr "你有一個新的工單, 申請人 - {}"
|
|||
msgid "{}: New Ticket - {} ({})"
|
||||
msgstr "新工單 - {} ({})"
|
||||
|
||||
#: tickets/notifications.py:160
|
||||
#: tickets/notifications.py:168
|
||||
msgid "Your ticket has been processed, processor - {}"
|
||||
msgstr "你的工單已被處理, 處理人 - {}"
|
||||
|
||||
#: tickets/notifications.py:164
|
||||
#: tickets/notifications.py:172
|
||||
msgid "Ticket has processed - {} ({})"
|
||||
msgstr "你的工單已被處理, 處理人 - {} ({})"
|
||||
|
||||
|
|
@ -9727,23 +9777,31 @@ msgstr "當前窗口"
|
|||
msgid "New window"
|
||||
msgstr "新窗口"
|
||||
|
||||
#: users/const.py:47
|
||||
#: users/const.py:43
|
||||
msgid "Dark gray"
|
||||
msgstr "深灰色"
|
||||
|
||||
#: users/const.py:44
|
||||
msgid "Deep blue"
|
||||
msgstr "深藍色"
|
||||
|
||||
#: users/const.py:53
|
||||
msgid "High(32 bit)"
|
||||
msgstr "高(32 bit)"
|
||||
|
||||
#: users/const.py:48
|
||||
#: users/const.py:54
|
||||
msgid "True Color(24 bit)"
|
||||
msgstr ""
|
||||
msgstr "真彩色(24位)"
|
||||
|
||||
#: users/const.py:49
|
||||
#: users/const.py:55
|
||||
msgid "Medium(16 bit)"
|
||||
msgstr "中(16 bit)"
|
||||
|
||||
#: users/const.py:82
|
||||
#: users/const.py:88
|
||||
msgid "Replace"
|
||||
msgstr "替換"
|
||||
|
||||
#: users/const.py:83
|
||||
#: users/const.py:89
|
||||
msgid "Suffix"
|
||||
msgstr "加後綴"
|
||||
|
||||
|
|
@ -9954,7 +10012,7 @@ msgstr "重設 SSH 金鑰"
|
|||
|
||||
#: users/notifications.py:253
|
||||
msgid "Update SSH Key url"
|
||||
msgstr ""
|
||||
msgstr "更新 SSH 密鑰地址"
|
||||
|
||||
#: users/notifications.py:276
|
||||
msgid "Reset MFA"
|
||||
|
|
@ -9965,12 +10023,12 @@ msgid "Reset MFA url"
|
|||
msgstr "重置 MFA 網址"
|
||||
|
||||
#: users/serializers/preference/koko.py:10
|
||||
#: users/serializers/preference/luna.py:63
|
||||
#: users/serializers/preference/luna.py:67
|
||||
msgid "File name conflict resolution"
|
||||
msgstr "檔案名衝突解決方案"
|
||||
|
||||
#: users/serializers/preference/koko.py:14
|
||||
#: users/serializers/preference/luna.py:80
|
||||
#: users/serializers/preference/luna.py:84
|
||||
msgid "Terminal theme name"
|
||||
msgstr "終端主題名稱"
|
||||
|
||||
|
|
@ -10004,56 +10062,62 @@ msgstr "非同步載入資產樹"
|
|||
msgid "Connect default open method"
|
||||
msgstr "連接默認打開方式"
|
||||
|
||||
#: users/serializers/preference/luna.py:37
|
||||
#: users/serializers/preference/luna.py:34
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr "主題"
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
msgid "RDP resolution"
|
||||
msgstr "RDP 解析度"
|
||||
|
||||
#: users/serializers/preference/luna.py:41
|
||||
#: users/serializers/preference/luna.py:45
|
||||
msgid "Keyboard layout"
|
||||
msgstr "鍵盤布局"
|
||||
|
||||
#: users/serializers/preference/luna.py:45
|
||||
#: users/serializers/preference/luna.py:49
|
||||
msgid "RDP client option"
|
||||
msgstr "RDP 用戶端選項"
|
||||
|
||||
#: users/serializers/preference/luna.py:49
|
||||
#: users/serializers/preference/luna.py:53
|
||||
msgid "RDP color quality"
|
||||
msgstr "RDP 顏色質量"
|
||||
|
||||
#: users/serializers/preference/luna.py:53
|
||||
#: users/serializers/preference/luna.py:57
|
||||
msgid "RDP smart size"
|
||||
msgstr "RDP 智慧尺寸"
|
||||
|
||||
# msgid "Rdp smart size"
|
||||
# msgstr "RDP 智慧大小"
|
||||
#: users/serializers/preference/luna.py:54
|
||||
#: users/serializers/preference/luna.py:58
|
||||
msgid ""
|
||||
"Determines whether the client computer should scale the content on the "
|
||||
"remote computer to fit the window size of the client computer when the "
|
||||
"window is resized."
|
||||
msgstr "確定調整窗口大小時用戶端計算機是否應縮放遠程計算機上的內容以適應用戶端計算機的窗口大小"
|
||||
|
||||
#: users/serializers/preference/luna.py:59
|
||||
#: users/serializers/preference/luna.py:63
|
||||
msgid "Remote app connect method"
|
||||
msgstr "遠程應用連線方式"
|
||||
|
||||
#: users/serializers/preference/luna.py:70
|
||||
#: users/serializers/preference/luna.py:74
|
||||
msgid "Terminal font size"
|
||||
msgstr "字元終端機字體大小"
|
||||
|
||||
#: users/serializers/preference/luna.py:73
|
||||
#: users/serializers/preference/luna.py:77
|
||||
msgid "Backspace as Ctrl+H"
|
||||
msgstr "字元終端Backspace As Ctrl+H"
|
||||
|
||||
#: users/serializers/preference/luna.py:76
|
||||
#: users/serializers/preference/luna.py:80
|
||||
msgid "Right click quickly paste"
|
||||
msgstr "右鍵快速黏貼"
|
||||
|
||||
#: users/serializers/preference/luna.py:86
|
||||
#: users/serializers/preference/luna.py:90
|
||||
msgid "Graphics"
|
||||
msgstr "圖形化"
|
||||
|
||||
#: users/serializers/preference/luna.py:87
|
||||
#: users/serializers/preference/luna.py:91
|
||||
msgid "Command line"
|
||||
msgstr "命令行"
|
||||
|
||||
|
|
@ -10622,7 +10686,7 @@ msgstr "ZStack"
|
|||
|
||||
#: xpack/plugins/cloud/const.py:30 xpack/plugins/cloud/providers/smartx.py:9
|
||||
msgid "SmartX CloudTower"
|
||||
msgstr ""
|
||||
msgstr "SmartX 雲塔"
|
||||
|
||||
#: xpack/plugins/cloud/const.py:31
|
||||
msgid "Fusion Compute"
|
||||
|
|
@ -10725,17 +10789,17 @@ msgstr "任務執行完成"
|
|||
msgid "Synchronization regions"
|
||||
msgstr "同步地區"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:141
|
||||
#: xpack/plugins/cloud/manager.py:140
|
||||
#, python-format
|
||||
msgid "Get instances of region \"%s\" error, error: %s"
|
||||
msgstr "An error occurred while getting the instances of Region \"%s\", Error: %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:186
|
||||
#: xpack/plugins/cloud/manager.py:185
|
||||
#, python-format
|
||||
msgid "Failed to synchronize the instance \"%s\""
|
||||
msgstr "Unable to synchronize instance %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:377
|
||||
#: xpack/plugins/cloud/manager.py:376
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The updated platform of asset \"%s\" is inconsistent with the original "
|
||||
|
|
@ -10744,47 +10808,47 @@ msgstr ""
|
|||
"The update platform of asset \"%s\" is not consistent with the original "
|
||||
"platform type. Skip platform and protocol updates"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:434
|
||||
#: xpack/plugins/cloud/manager.py:433
|
||||
#, python-format
|
||||
msgid "The asset \"%s\" already exists"
|
||||
msgstr "\"資產 \"%s\" 已存在"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:436
|
||||
#: xpack/plugins/cloud/manager.py:435
|
||||
#, python-format
|
||||
msgid "Update asset \"%s\""
|
||||
msgstr "更新資產 \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:439
|
||||
#: xpack/plugins/cloud/manager.py:438
|
||||
#, python-format
|
||||
msgid "Asset \"%s\" has been updated"
|
||||
msgstr "資產 \"%s\" 已更新"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:448
|
||||
#: xpack/plugins/cloud/manager.py:447
|
||||
#, python-format
|
||||
msgid "Prepare to create asset \"%s\""
|
||||
msgstr "Preparing to create asset %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:469
|
||||
#: xpack/plugins/cloud/manager.py:468
|
||||
#, python-format
|
||||
msgid "Set nodes \"%s\""
|
||||
msgstr "設定節點: \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:495
|
||||
#: xpack/plugins/cloud/manager.py:494
|
||||
#, python-format
|
||||
msgid "Set accounts \"%s\""
|
||||
msgstr "設定帳號: %s"
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:511
|
||||
#: xpack/plugins/cloud/manager.py:510
|
||||
#, python-format
|
||||
msgid "Set protocols \"%s\""
|
||||
msgstr "設定協議 \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:519
|
||||
#: xpack/plugins/cloud/manager.py:518
|
||||
#, python-format
|
||||
msgid "Set labels \"%s\""
|
||||
msgstr "設定標籤: \"%s\""
|
||||
|
||||
#: xpack/plugins/cloud/manager.py:533 xpack/plugins/cloud/tasks.py:31
|
||||
#: xpack/plugins/cloud/manager.py:532 xpack/plugins/cloud/tasks.py:31
|
||||
msgid "Run sync instance task"
|
||||
msgstr "執行同步實例任務"
|
||||
|
||||
|
|
@ -11314,11 +11378,6 @@ msgstr "頁面 Logo"
|
|||
msgid "Logout logo"
|
||||
msgstr "登出"
|
||||
|
||||
#: xpack/plugins/interface/models.py:41
|
||||
#: xpack/plugins/interface/serializers/interface.py:26
|
||||
msgid "Theme"
|
||||
msgstr "主題"
|
||||
|
||||
#: xpack/plugins/interface/models.py:42
|
||||
msgid "Footer content"
|
||||
msgstr "頁尾內容"
|
||||
|
|
@ -11339,6 +11398,14 @@ msgstr "許可證匯入成功"
|
|||
msgid "Invalid license"
|
||||
msgstr "許可證無效"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Themes"
|
||||
#~ msgstr "主題"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "domain_name"
|
||||
#~ msgstr "域名稱"
|
||||
|
||||
#~ msgid "Task execution id"
|
||||
#~ msgstr "任務執行 ID"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,20 +1,46 @@
|
|||
{
|
||||
"\t%2d) Enter {{.GreenBoldColor}}%s{{.ColorEnd}} to %s.%s": "",
|
||||
"%s approved": "",
|
||||
"%s node has no assets": "",
|
||||
"%s protocol client not installed.": "",
|
||||
"%s rejected": "",
|
||||
"/ + IP, Hostname, Comment": "",
|
||||
"ACL reject": "",
|
||||
"Account <%s> and asset <%s> protocol are inconsistent.": "",
|
||||
"ActionPerm": "Action Permission",
|
||||
"Address": "",
|
||||
"AlreadyExistsPleaseRename": "File already exists, please rename it",
|
||||
"Announcement: ": "",
|
||||
"Authentication failed": "",
|
||||
"AvailableShortcutKey": "Available Shortcut Key",
|
||||
"Back": "Back",
|
||||
"Back: B/b": "",
|
||||
"Cancel": "Cancel",
|
||||
"Cancel confirm": "",
|
||||
"Cancel to login asset or max 3 retry": "",
|
||||
"CancelFileUpload": "Cancel file upload",
|
||||
"CaseSensitive": "Case sensitive",
|
||||
"Clone Connect": "Clone Connect",
|
||||
"Close All Tabs": "Close All Tabs",
|
||||
"Close Current Tab": "Close Current Tab",
|
||||
"Command `%s` is forbidden": "",
|
||||
"Comment": "",
|
||||
"Confirm": "Confirm",
|
||||
"ConfirmBtn": "Confirm",
|
||||
"ConfirmDelete": "Are you sure you want to delete this file?",
|
||||
"Connect": "Connect",
|
||||
"Connect idle more than %d minutes, disconnect": "",
|
||||
"Connect with api server failed": "",
|
||||
"Connecting to %s@%s": "",
|
||||
"Connecting to Database %s": "",
|
||||
"Connecting to Kubernetes %s": "",
|
||||
"Connecting to Kubernetes %s container %s": "",
|
||||
"Connection refused": "",
|
||||
"CopyLink": "Copy Link Address and Code",
|
||||
"CopyShareURLSuccess": "Copy Share URL Success",
|
||||
"Core API failed": "",
|
||||
"Could copy website URL to notify reviewers: %s": "",
|
||||
"Create k8s client err: %s": "",
|
||||
"CreateFolder": "Create folder",
|
||||
"CreateLink": "Create link",
|
||||
"CreateSuccess": "Success",
|
||||
|
|
@ -27,10 +53,14 @@
|
|||
"DownloadProgress": "Download progress",
|
||||
"DownloadSuccess": "Download success",
|
||||
"Downloading": "Downloading",
|
||||
"Dynamic": "",
|
||||
"EndFileTransfer": "File transfer end",
|
||||
"Enter ID number directly login, multiple search use // + field, such as: //16": "",
|
||||
"ExceedTransferSize": "exceed max transfer size",
|
||||
"Expand": "Expand",
|
||||
"ExpiredTime": "Expiration time",
|
||||
"Face ACL is not supported yet. Please use the WebTerminal to connect the asset.": "",
|
||||
"Face verification is not supported yet. Please use the WebTerminal to connect the asset.": "",
|
||||
"FailedCreateConnection": "Failed to create connection",
|
||||
"FileAlreadyExists": "File already exists",
|
||||
"FileListError": "Failed to get file list",
|
||||
|
|
@ -41,10 +71,15 @@
|
|||
"FileUploadInterrupted": "File upload interrupted",
|
||||
"Format": "Format",
|
||||
"General": "General",
|
||||
"Get auth password failed": "",
|
||||
"GetFileManagerTokenTimeOut": "Get file manager token timeout",
|
||||
"GetShareUser": "Enter username",
|
||||
"HandleTask does not support protocol %s, please use web terminal to access": "",
|
||||
"Hostname": "",
|
||||
"Hotkeys": "Hotkeys",
|
||||
"ID": "",
|
||||
"InputVerifyCode": "Input Verify Code",
|
||||
"Invalid ID": "",
|
||||
"JoinShare": "Join Session",
|
||||
"JoinedWithSuccess": "Successfully joined",
|
||||
"KubernetesManagement": "Kubernetes management",
|
||||
|
|
@ -53,41 +88,71 @@
|
|||
"LeftArrow": "Left arrow",
|
||||
"LinkAddr": "Link Address",
|
||||
"List": "List",
|
||||
"Manual": "",
|
||||
"MatchWholeWords": "Match whole words",
|
||||
"Minute": "Minute",
|
||||
"Minutes": "Minutes",
|
||||
"Must be auto login account for %s": "",
|
||||
"Must be unique account for %s": "",
|
||||
"Must be unique asset for %s": "",
|
||||
"MustOneFile": "Only support to select one file",
|
||||
"MustSelectOneFile": "Must select one file",
|
||||
"Name": "Name",
|
||||
"Need ACL review, continue? (y/n): ": "",
|
||||
"Need ticket confirm to execute command, already send email to the reviewers": "",
|
||||
"Need ticket confirm to login, already send email to the reviewers": "",
|
||||
"NewFolder": "New Folder",
|
||||
"No Account found.": "No Account found.",
|
||||
"No Assets": "No Assets",
|
||||
"No Databases": "No Databases",
|
||||
"No account found.": "No account found.",
|
||||
"No found asset": "No found asset",
|
||||
"No kubernetes": "No kubernetes",
|
||||
"No protocol found.": "No protocol found.",
|
||||
"No route to host": "No route to host",
|
||||
"NoActiveTerminalTabFound": "No active terminal tab found",
|
||||
"NoData": "No data",
|
||||
"NoLink": "No Link",
|
||||
"NoRunningTerminalFound": "No running terminal found",
|
||||
"Node: [ ID.Name(Asset amount) ]": "Node: [ ID.Name(Asset amount) ]",
|
||||
"OnlineUser": "Online User",
|
||||
"OperationSuccessful": "Operation successful",
|
||||
"Organization": "Organization",
|
||||
"Owner": "Owner",
|
||||
"Page up: b\tPage down: n": "Page up: b\tPage down: n",
|
||||
"Page: %d, Count: %d, Total Page: %d, Total Count: %d": "Page: %d, Count: %d, Total Page: %d, Total Count: %d",
|
||||
"Paste": "Paste",
|
||||
"PauseSession": "Pause Session",
|
||||
"Permission has expired, disconnect": "Permission has expired, disconnect",
|
||||
"PermissionDenied": "Permission denied",
|
||||
"PermissionExpired": "Permission expired",
|
||||
"PermissionValid": "Permission valid",
|
||||
"Platform": "Platform",
|
||||
"Please waiting for the reviewers to confirm command `%s`, cancel by CTRL+C or CTRL+D.": "",
|
||||
"Please waiting for the reviewers to confirm, enter q to exit. ": "Please waiting for the reviewers to confirm, enter q to exit. ",
|
||||
"PleaseInput": "Please input",
|
||||
"PleaseInputVerifyCode": "Please input verify code",
|
||||
"PrimaryUser": "Primary user",
|
||||
"Protocol": "Protocol",
|
||||
"ReadOnly": "Read Only",
|
||||
"Reconnect": "Reconnect",
|
||||
"Refresh": "Refresh",
|
||||
"Refresh done": "",
|
||||
"Remove": "Remove",
|
||||
"RemoveShareUser": "You have been removed from the shared session.",
|
||||
"RemoveUser": "Remove User",
|
||||
"Rename": "Rename",
|
||||
"ResumeSession": "Resume Session",
|
||||
"Reuse SSH connections (%s@%s) [Number of connections: %d]": "",
|
||||
"RightArrow": "Right arrow",
|
||||
"Search": "Search",
|
||||
"Search: %s": "",
|
||||
"Select account exceed max retry times.": "",
|
||||
"Select protocol exceed max retry times.": "",
|
||||
"SelectAction": "Select",
|
||||
"SelectTheme": "Select Theme",
|
||||
"Self": "Self",
|
||||
"Session max time reached, disconnect": "",
|
||||
"SessionDetail": "Session Detail",
|
||||
"SessionShare": "Session Share",
|
||||
"Settings": "Settings",
|
||||
|
|
@ -96,18 +161,33 @@
|
|||
"ShareUser": "Share User",
|
||||
"ShareUserHelpText": "If left blank, everyone could join the session.",
|
||||
"Size": "Size",
|
||||
"Start domain gateway failed %s": "",
|
||||
"Switch language successfully": "",
|
||||
"Switched to %s": "",
|
||||
"Sync": "Sync",
|
||||
"SyncUserPreferenceFailed": "Sync user preference failed",
|
||||
"SyncUserPreferenceSuccess": "Sync user preference success",
|
||||
"Terminal does not support protocol %s, please use web terminal to access": "",
|
||||
"TerminalInstanceNotFound": "Terminal instance not found for current tab",
|
||||
"TerminalInstanceNotFoundForCurrentTab": "Terminal instance not found for current tab",
|
||||
"Terminated by admin %s": "",
|
||||
"The command '%s' requires review. Continue or not [Y/n]?": "",
|
||||
"The command you executed is risky and an alert notification will be sent to the administrator. Do you want to continue?[Y/N]": "",
|
||||
"TheCurrentTerminalInstanceWasNotFound": "The current terminal instance was not found",
|
||||
"Theme": "Theme",
|
||||
"ThemeColors": "Theme Colors",
|
||||
"ThemeConfig": "Theme",
|
||||
"Ticket Reviewers: %s": "",
|
||||
"Tips: Enter asset[%s] account ID": "",
|
||||
"Tips: Enter g+NodeID to display the host under the node, such as g1": "",
|
||||
"Tips: Enter protocol ID": "",
|
||||
"Tips: To set a default language, go to Personal Settings → Preferences on Web": "",
|
||||
"Tips: switch language by ID (Current session only)": "",
|
||||
"Transfer": "Transfer",
|
||||
"Type": "Type",
|
||||
"UnableToGenerateWebSocketURL": "Unable to generate WebSocket URL, missing parameters",
|
||||
"Unknown error code: %s, detail: %s": "",
|
||||
"Unknown status": "",
|
||||
"UpArrow": "Up arrow",
|
||||
"Upload": "Upload",
|
||||
"UploadEnd": "Upload completed, please wait for further processing",
|
||||
|
|
@ -117,114 +197,34 @@
|
|||
"UploadTips": "Drag file here or click to upload",
|
||||
"UploadTitle": "File upload",
|
||||
"User": "User",
|
||||
"Username": "",
|
||||
"UsingRegularExpressions": "Using regular expressions",
|
||||
"VerifyCode": "Verify Code",
|
||||
"WaitFileTransfer": "Wait file transfer to finish",
|
||||
"Warning": "Warning",
|
||||
"WebSocketClosed": "WebSocket closed",
|
||||
"WebSocketConnectionIsClosedHelpText": "WebSocket connection is closed, please refresh the page or reconnect.",
|
||||
"Writable": "Writable",
|
||||
"No Databases": "",
|
||||
"No kubernetes": "",
|
||||
"Page: %d, Count: %d, Total Page: %d, Total Count: %d": "",
|
||||
"Enter ID number directly login, multiple search use // + field, such as: //16": "",
|
||||
"Page up: b\tPage down: n": "",
|
||||
"No Assets": "",
|
||||
"ID": "",
|
||||
"Address": "",
|
||||
"Platform": "",
|
||||
"Organization": "",
|
||||
"Comment": "",
|
||||
"%s protocol client not installed.": "",
|
||||
"Terminal does not support protocol %s, please use web terminal to access": "",
|
||||
"Core API failed": "",
|
||||
"ACL reject": "",
|
||||
"Face ACL is not supported yet. Please use the WebTerminal to connect the asset.": "",
|
||||
"Unknown error code: %s, detail: %s": "",
|
||||
"get connect token err": "",
|
||||
"%s node has no assets": "",
|
||||
"Welcome to use JumpServer open source fortress system": "",
|
||||
"part IP, Hostname, Comment": "",
|
||||
"to search login if unique": "",
|
||||
"/ + IP, Hostname, Comment": "",
|
||||
"to search, such as: /192.168": "",
|
||||
"display the assets you have permission": "",
|
||||
"display the node that you have permission": "",
|
||||
"display the hosts that you have permission": "",
|
||||
"display the databases that you have permission": "",
|
||||
"display the kubernetes that you have permission": "",
|
||||
"refresh your assets and nodes": "",
|
||||
"language switch": "",
|
||||
"print help": "",
|
||||
"exit": "",
|
||||
"\t%2d) Enter {{.GreenBoldColor}}%s{{.ColorEnd}} to %s.%s": "",
|
||||
"Announcement: ": "",
|
||||
"No Account found.": "",
|
||||
"Username": "",
|
||||
"Tips: Enter asset[%s] account ID": "",
|
||||
"Back: B/b": "",
|
||||
"Hostname": "",
|
||||
"select one asset to login": "",
|
||||
"not found matched username %s": "",
|
||||
"Face verification is not supported yet. Please use the WebTerminal to connect the asset.": "",
|
||||
"Tips: switch language by ID (Current session only)": "",
|
||||
"Tips: To set a default language, go to Personal Settings → Preferences on Web": "",
|
||||
"Invalid ID": "",
|
||||
"Switch language successfully": "",
|
||||
"Node: [ ID.Name(Asset amount) ]": "",
|
||||
"Tips: Enter g+NodeID to display the host under the node, such as g1": "",
|
||||
"Connect idle more than %d minutes, disconnect": "",
|
||||
"No account found.": "",
|
||||
"Select account exceed max retry times.": "",
|
||||
"No protocol found.": "",
|
||||
"Protocol": "",
|
||||
"Tips: Enter protocol ID": "",
|
||||
"Select protocol exceed max retry times.": "",
|
||||
"Refresh done": "",
|
||||
"Need ACL review, continue? (y/n): ": "",
|
||||
"Cancel to login asset or max 3 retry": "",
|
||||
"Need ticket confirm to login, already send email to the reviewers": "",
|
||||
"Ticket Reviewers: %s": "",
|
||||
"Could copy website URL to notify reviewers: %s": "",
|
||||
"Please waiting for the reviewers to confirm, enter q to exit. ": "",
|
||||
"Unknown status": "",
|
||||
"%s approved": "",
|
||||
"%s rejected": "",
|
||||
"Cancel confirm": "",
|
||||
"Search: %s": "",
|
||||
"Must be unique asset for %s": "",
|
||||
"Must be unique account for %s": "",
|
||||
"Must be auto login account for %s": "",
|
||||
"No found asset": "",
|
||||
"Create k8s client err: %s": "",
|
||||
"have no permission to upload file": "",
|
||||
"The command you executed is risky and an alert notification will be sent to the administrator. Do you want to continue?[Y/N]": "",
|
||||
"The command '%s' requires review. Continue or not [Y/n]?": "",
|
||||
"Command `%s` is forbidden": "",
|
||||
"have no permission to download file": "",
|
||||
"Please waiting for the reviewers to confirm command `%s`, cancel by CTRL+C or CTRL+D.": "",
|
||||
"Need ticket confirm to execute command, already send email to the reviewers": "",
|
||||
"HandleTask does not support protocol %s, please use web terminal to access": "",
|
||||
"Account <%s> and asset <%s> protocol are inconsistent.": "",
|
||||
"Writable": "Writable",
|
||||
"You don't have permission login %s": "",
|
||||
"You get auth token failed": "",
|
||||
"Get auth password failed": "",
|
||||
"Reuse SSH connections (%s@%s) [Number of connections: %d]": "",
|
||||
"Switched to %s": "",
|
||||
"Connect with api server failed": "",
|
||||
"Start domain gateway failed %s": "",
|
||||
"Manual": "",
|
||||
"Dynamic": "",
|
||||
"Connecting to %s@%s": "",
|
||||
"Connecting to Database %s": "",
|
||||
"Connecting to Kubernetes %s": "",
|
||||
"Connecting to Kubernetes %s container %s": "",
|
||||
"Session max time reached, disconnect": "",
|
||||
"Permission has expired, disconnect": "",
|
||||
"Terminated by admin %s": "",
|
||||
"Authentication failed": "",
|
||||
"Connection refused": "",
|
||||
"display the assets you have permission": "",
|
||||
"display the databases that you have permission": "",
|
||||
"display the hosts that you have permission": "",
|
||||
"display the kubernetes that you have permission": "",
|
||||
"display the node that you have permission": "",
|
||||
"exit": "",
|
||||
"get connect token err": "",
|
||||
"have no permission to download file": "",
|
||||
"have no permission to upload file": "",
|
||||
"i/o timeout": "",
|
||||
"No route to host": "",
|
||||
"network is unreachable": ""
|
||||
"language switch": "",
|
||||
"network is unreachable": "",
|
||||
"not found matched username %s": "",
|
||||
"part IP, Hostname, Comment": "",
|
||||
"print help": "",
|
||||
"refresh your assets and nodes": "",
|
||||
"select one asset to login": "",
|
||||
"to search login if unique": "",
|
||||
"to search, such as: /192.168": ""
|
||||
}
|
||||
|
|
@ -1,47 +1,47 @@
|
|||
{
|
||||
"\t%2d) Enter {{.GreenBoldColor}}%s{{.ColorEnd}} to %s.%s": "%d) Введите {{.GreenBoldColor}}%s{{.ColorEnd}} для %s.%s",
|
||||
"%s approved": "%s审核通过",
|
||||
"%s node has no assets": "У узла %s нет активов",
|
||||
"\t%2d) Enter {{.GreenBoldColor}}%s{{.ColorEnd}} to %s.%s": "\t%d) Введите {{.GreenBoldColor}}%s{{.ColorEnd}} чтобы %s.%s",
|
||||
"%s approved": "%s одобрено",
|
||||
"%s node has no assets": "В папке %s нет активов",
|
||||
"%s protocol client not installed.": "Клиент протокола %s не установлен",
|
||||
"%s rejected": "%s Проверка отклонена",
|
||||
"ACL reject": "Доступ для данного логина отклонен из-за ограничений политики доступа",
|
||||
"Account <%s> and asset <%s> protocol are inconsistent.": "Системный пользователь <%s> и актив < %s> не согласованы",
|
||||
"ActionPerm": "Права доступа",
|
||||
"%s rejected": "%s отклонено",
|
||||
"ACL reject": "Вход запрещен: ограничение политики контроля доступа",
|
||||
"Account <%s> and asset <%s> protocol are inconsistent.": "Протокол системного пользователя <%s> и актива <%s> не совпадают",
|
||||
"ActionPerm": "Разрешения на действия",
|
||||
"Address": "Адрес",
|
||||
"AlreadyExistsPleaseRename": "Создать папку",
|
||||
"AlreadyExistsPleaseRename": "Файл уже существует, пожалуйста, переименуйте его",
|
||||
"Announcement: ": "Объявление:",
|
||||
"Authentication failed": "Ошибка аутентификации (неправильное имя пользователя или пароль)",
|
||||
"Authentication failed": "Ошибка аутентификации: неверное имя пользователя или пароль",
|
||||
"AvailableShortcutKey": "Доступные горячие клавиши",
|
||||
"Back": "Вернуться",
|
||||
"Back: B/b": "Возврат: B/b",
|
||||
"Back": "Назад",
|
||||
"Back: B/b": "Назад: B/b",
|
||||
"Cancel": "Отмена",
|
||||
"Cancel confirm": "Отменить проверку входа",
|
||||
"Cancel to login asset or max 3 retry": "Отмена входа в актив или достижение 3-х попыток",
|
||||
"Cancel confirm": "Отмена подтверждения входа",
|
||||
"Cancel to login asset or max 3 retry": "Вход на актив отменён или превышен лимит 3 попыток",
|
||||
"CancelFileUpload": "Отменить передачу файла",
|
||||
"CaseSensitive": "Учитывать регистрар",
|
||||
"CaseSensitive": "Учитывать регистр",
|
||||
"Clone Connect": "Клонировать окно",
|
||||
"Close All Tabs": "Закрыть все вкладки",
|
||||
"Close Current Tab": "Закрыть эту вкладку",
|
||||
"Command `%s` is forbidden": "Команда `%s` запрещена ...",
|
||||
"Command `%s` is forbidden": "Команда %s запрещена",
|
||||
"Comment": "Примечание",
|
||||
"Confirm": "Подтвердить",
|
||||
"ConfirmBtn": "Подтвердить",
|
||||
"ConfirmDelete": "Вы уверены, что хотите удалить этот файл?",
|
||||
"ConfirmDelete": "Вы действительно хотите удалить этот файл?",
|
||||
"Connect": "Подключение",
|
||||
"Connect idle more than %d minutes, disconnect": "Время простоя превысило %d минут, соединение разорвано",
|
||||
"Connect with api server failed": "Не удалось подключиться к API сервису",
|
||||
"Connecting to %s@%s": "Начать подключение к %s@%s",
|
||||
"Connecting to Database %s": "Начинаю подключение к базе данных %s",
|
||||
"Connecting to Kubernetes %s": "Начало подключения к Kubernetes %s",
|
||||
"Connecting to Kubernetes %s container %s": "Начинаю подключение к Kubernetes %s контейнеру %s",
|
||||
"Connect idle more than %d minutes, disconnect": "Превышено время простоя (%d минут). Соединение разорвано",
|
||||
"Connect with api server failed": "Не удалось подключиться к API-серверу",
|
||||
"Connecting to %s@%s": "Подключение к %s@%s…",
|
||||
"Connecting to Database %s": "Подключение к базе данных %s...",
|
||||
"Connecting to Kubernetes %s": "Подключение к Kubernetes %s...",
|
||||
"Connecting to Kubernetes %s container %s": "Подключение к Kubernetes %s, контейнер %s…",
|
||||
"Connection refused": "Нет соединения (соединение отклонено)",
|
||||
"CopyLink": "Скопировать ссылку и код подтверждения",
|
||||
"CopyLink": "Копировать ссылку и код",
|
||||
"CopyShareURLSuccess": "URL общего доступа успешно скопирован",
|
||||
"Core API failed": "Произошла ошибка Core API",
|
||||
"Could copy website URL to notify reviewers: %s": "Копируемый адрес для аудита, уведомите аудитора: %s",
|
||||
"Core API failed": "Ошибка Core API",
|
||||
"Could copy website URL to notify reviewers: %s": "Можно скопировать URL для проверки и уведомить проверяющего: %s",
|
||||
"Create k8s client err: %s": "Ошибка создания клиента k8s: %s",
|
||||
"CreateFolder": "Пользователи для分享",
|
||||
"CreateLink": "Создать ссылку",
|
||||
"CreateFolder": "Создать папку",
|
||||
"CreateLink": "Создать ссылку для общего доступа",
|
||||
"CreateSuccess": "Успешно создано",
|
||||
"CurrentUser": "Текущий пользователь",
|
||||
"Custom Setting": "Пользовательские настройки",
|
||||
|
|
@ -49,92 +49,92 @@
|
|||
"Delete": "Удалить",
|
||||
"DownArrow": "Стрелка вниз",
|
||||
"Download": "Скачать",
|
||||
"DownloadProgress": "Прогресс загрузки",
|
||||
"DownloadProgress": "Прогресс скачивания",
|
||||
"DownloadSuccess": "Успешное скачивание",
|
||||
"Downloading": "Ведётся загрузка",
|
||||
"Dynamic": "Динамический аккаунт",
|
||||
"Downloading": "Скачивается",
|
||||
"Dynamic": "Своя учетная запись",
|
||||
"EndFileTransfer": "Передача файла завершена",
|
||||
"Enter ID number directly login, multiple search use // + field, such as: //16": "Подсказка: вводите ID актива для прямого входа, для второго уровня поиска используйте // + поле, например: //192",
|
||||
"Enter ID number directly login, multiple search use // + field, such as: //16": "Подсказка: введите ID ресурса для прямого входа, для расширенного поиска используйте // + значение, например: //192",
|
||||
"ExceedTransferSize": "Превышен максимальный размер передачи",
|
||||
"Expand": "Развернуть",
|
||||
"ExpiredTime": "Срок действия",
|
||||
"Face ACL is not supported yet. Please use the WebTerminal to connect the asset.": "Данный терминал не поддерживает правила доступа по лицу, пожалуйста, войдите через веб-терминал",
|
||||
"Face verification is not supported yet. Please use the WebTerminal to connect the asset.": "Этот терминал не поддерживает аутентификацию по распознаванию лиц, пожалуйста, выполните вход через веб-терминал.",
|
||||
"FailedCreateConnection": "Ошибка создания соединения",
|
||||
"FileAlreadyExists": "Только для чтения",
|
||||
"FileListError": "Не удалось получить информацию о списке файлов",
|
||||
"Face ACL is not supported yet. Please use the WebTerminal to connect the asset.": "Этот терминал пока не поддерживает правила доступа по лицу, пожалуйста, войдите через веб-терминал",
|
||||
"Face verification is not supported yet. Please use the WebTerminal to connect the asset.": "Этот терминал не поддерживает аутентификацию по лицу, пожалуйста, войдите через веб-терминал",
|
||||
"FailedCreateConnection": "Не удалось создать соединение",
|
||||
"FileAlreadyExists": "Файл уже существует",
|
||||
"FileListError": "Не удалось получить список файлов",
|
||||
"FileManagement": "Управление файлами",
|
||||
"FileManagementExpired": "Текущая сессия управления файлами истекла.",
|
||||
"FileManagerTokenTimeout": "Получить токен файлового менеджера, время ожидания истекло",
|
||||
"FileManagerTokenTimeout": "Тайм-аут при получении токена файлового менеджера",
|
||||
"FileTransferInterrupted": "Передача файлов прервана",
|
||||
"FileUploadInterrupted": "Передача файла прервана",
|
||||
"FileUploadInterrupted": "Загрузка файла прервана",
|
||||
"Format": "Формат",
|
||||
"General": "Универсальный",
|
||||
"Get auth password failed": "Вы не смогли получить токен аутентификации",
|
||||
"GetFileManagerTokenTimeOut": "Таймаут получения токена для управления файлами",
|
||||
"General": "Основной",
|
||||
"Get auth password failed": "Не удалось получить пароль аутентификации",
|
||||
"GetFileManagerTokenTimeOut": "Тайм-аут при получении токена управления файлами",
|
||||
"GetShareUser": "Введите имя пользователя",
|
||||
"HandleTask does not support protocol %s, please use web terminal to access": "Этот терминал не поддерживает %s протокол, пожалуйста, войдите через веб-терминал",
|
||||
"HandleTask does not support protocol %s, please use web terminal to access": "Протокол %s не поддерживается этим терминалом. Используйте веб-терминал",
|
||||
"Hostname": "Имя хоста",
|
||||
"Hotkeys": "Горячие клавиши",
|
||||
"ID": "ID",
|
||||
"InputVerifyCode": "Введите код подтверждения",
|
||||
"Invalid ID": "Недействительный ID",
|
||||
"JoinShare": "Присоединиться к общей сессии",
|
||||
"Invalid ID": "Неверный ID",
|
||||
"JoinShare": "Присоединился к общей сессии",
|
||||
"JoinedWithSuccess": "Успешно присоединился",
|
||||
"KubernetesManagement": "Управление Kubernetes",
|
||||
"LastModified": "Последнее время изменения",
|
||||
"LeaveShare": "Покинуть общую сессию",
|
||||
"LeaveShare": "Покинул общую сессию",
|
||||
"LeftArrow": "Стрелка влево",
|
||||
"LinkAddr": "Адрес ссылки",
|
||||
"List": "Список",
|
||||
"Manual": "Ручной аккаунт",
|
||||
"MatchWholeWords": "Полное совпадение",
|
||||
"Minute": "Минуты",
|
||||
"Minutes": "Файл уже существует, пожалуйста, переименуйте",
|
||||
"Must be auto login account for %s": "Должен быть аккаунт для автоматического входа %s",
|
||||
"Must be unique account for %s": "Должен быть уникальный аккаунт %s",
|
||||
"Must be unique asset for %s": "должен быть уникальным активом %s",
|
||||
"Manual": "Ручной ввод",
|
||||
"MatchWholeWords": "Точное совпадение",
|
||||
"Minute": "Минута",
|
||||
"Minutes": "Минут",
|
||||
"Must be auto login account for %s": "УЗ %s должна быть учётной записью с автоматическим входом",
|
||||
"Must be unique account for %s": "УЗ %s должна быть уникальной",
|
||||
"Must be unique asset for %s": "Актив %s должен быть уникальным",
|
||||
"MustOneFile": "Можно выбрать только один файл",
|
||||
"MustSelectOneFile": "Необходимо выбрать файл",
|
||||
"Name": "Название",
|
||||
"Need ACL review, continue? (y/n): ": "требует проверки, продолжить? (y/n):",
|
||||
"Need ticket confirm to execute command, already send email to the reviewers": "Требуется команда рабочего задания для выполнения проверки, уведомление отправлено проверяющему",
|
||||
"Need ticket confirm to login, already send email to the reviewers": "Требуется вход в систему через заявку, уведомление отправлено аудитору",
|
||||
"Name": "Имя",
|
||||
"Need ACL review, continue? (y/n): ": "Требуется проверка правил доступа. Продолжить? (y/n):",
|
||||
"Need ticket confirm to execute command, already send email to the reviewers": "Выполнение команды требует проверки по заявке. Проверяющему отправлено письмо",
|
||||
"Need ticket confirm to login, already send email to the reviewers": "Требуется вход в систему через заявку, уведомление отправлено утверждающему",
|
||||
"NewFolder": "Создать папку",
|
||||
"No Account found.": "Учетная запись не найдена",
|
||||
"No Assets": "Активов нет",
|
||||
"No Databases": "Нет базы данных",
|
||||
"No found asset": "Не найдено подходящего актива %s",
|
||||
"No kubernetes": "Kubernetes отсутствует",
|
||||
"No Assets": "Нет активов",
|
||||
"No Databases": "База данных отсутствует",
|
||||
"No found asset": "Совпадений для актива %s не найдено",
|
||||
"No kubernetes": "Kubernetes не найден",
|
||||
"No protocol found.": "Нет протокола",
|
||||
"No route to host": "Проблемы с сетью (маршрутизация недоступна)",
|
||||
"No route to host": "Нет соединения (маршрут недоступен)",
|
||||
"NoActiveTerminalTabFound": "Активная вкладка терминала не найдена",
|
||||
"NoData": "Нет данных",
|
||||
"NoLink": "Без адреса",
|
||||
"NoRunningTerminalFound": "Не найдено работающего терминала",
|
||||
"Node: [ ID.Name(Asset amount) ]": "Узлы: [ ID.Имя(Количество активов) ]",
|
||||
"OnlineUser": "Онлайн пользователи",
|
||||
"NoRunningTerminalFound": "Активный терминал не найден",
|
||||
"Node: [ ID.Name(Asset amount) ]": "Папка: [ID.Название(кол-во активов)]",
|
||||
"OnlineUser": "Пользователи онлайн",
|
||||
"OperationSuccessful": "Операция выполнена успешно",
|
||||
"Organization": "Организация",
|
||||
"Owner": "Администратор",
|
||||
"Owner": "Владелец",
|
||||
"Page up: b\tPage down: n": "Предыдущая страница: b Следующая страница: n",
|
||||
"Page: %d, Count: %d, Total Page: %d, Total Count: %d": "Номер страницы: %d, количество строк на странице: %d, общее количество страниц: %d, общее количество: %d",
|
||||
"Page: %d, Count: %d, Total Page: %d, Total Count: %d": "Страница: %d, строк на странице: %d, всего страниц: %d, всего записей: %d",
|
||||
"Paste": "Вставить",
|
||||
"PauseSession": "Приостановить сессию",
|
||||
"PermissionDenied": "Нет разрешения",
|
||||
"PermissionDenied": "Доступ запрещен",
|
||||
"PermissionExpired": "Разрешение истекло",
|
||||
"PermissionValid": "Доступ разрешен",
|
||||
"Platform": "Платформа",
|
||||
"Please waiting for the reviewers to confirm command `%s`, cancel by CTRL+C or CTRL+D.": "Пожалуйста, дождитесь проверки команды проверяющим `%s`, отмените, нажав CTRL+C или CTRL+D.",
|
||||
"Please waiting for the reviewers to confirm, enter q to exit. ": "Ожидание подтверждения от проверяющего, нажмите q и Enter для отмены входа.",
|
||||
"Please waiting for the reviewers to confirm command `%s`, cancel by CTRL+C or CTRL+D.": "Пожалуйста, дождитесь проверки команды %s утверждающим. Для отмены нажмите CTRL+C или CTRL+D.",
|
||||
"Please waiting for the reviewers to confirm, enter q to exit. ": "Ждём подтверждения проверяющего. q + Enter — отмена входа.",
|
||||
"PleaseInput": "Пожалуйста, введите",
|
||||
"PleaseInputVerifyCode": "Введите код безопасности",
|
||||
"PrimaryUser": "Главный пользователь",
|
||||
"PleaseInputVerifyCode": "Пожалуйста, введите код подтверждения",
|
||||
"PrimaryUser": "Основной пользователь",
|
||||
"Protocol": "Протокол",
|
||||
"ReadOnly": "Минуты",
|
||||
"ReadOnly": "Только просмотр",
|
||||
"Reconnect": "Переподключение",
|
||||
"Refresh": "Обновить",
|
||||
"Refresh done": "Обновление завершено",
|
||||
"Refresh done": "Обновлено",
|
||||
"Remove": "Удалить",
|
||||
"RemoveShareUser": "Вас удалили из общей сессии",
|
||||
"RemoveUser": "Удалить пользователя",
|
||||
|
|
@ -144,18 +144,18 @@
|
|||
"RightArrow": "Стрелка вправо",
|
||||
"Search": "Поиск",
|
||||
"Search: %s": "Поиск: %s",
|
||||
"Select account exceed max retry times.": "Вы выбрали аккаунт, превышающий максимальное количество попыток",
|
||||
"Select account exceed max retry times.": "Превышено максимальное число попыток выбора УЗ",
|
||||
"Select protocol exceed max retry times.": "Превышено максимальное количество попыток выбора протокола",
|
||||
"SelectAction": "Выберите действие",
|
||||
"SelectTheme": "Выберите тему",
|
||||
"Self": "Я",
|
||||
"Session max time reached, disconnect": "Сессия превысила максимальное время соединения, отключение",
|
||||
"SessionDetail": "Детали разговора",
|
||||
"Session max time reached, disconnect": "Превышено максимальное время сессии. Соединение разорвано",
|
||||
"SessionDetail": "Детали сессии",
|
||||
"SessionShare": "Поделиться сессией",
|
||||
"Settings": "Настройки",
|
||||
"Share": "Поделиться",
|
||||
"ShareLink": "Поделиться ссылкой",
|
||||
"ShareUser": "Поделиться пользователем",
|
||||
"ShareUser": "Поделиться с",
|
||||
"ShareUserHelpText": "Пустое поле означает, что присоединиться может каждый желающий.",
|
||||
"Size": "Размер",
|
||||
"Start domain gateway failed %s": "Не удалось запустить шлюз базы данных %s",
|
||||
|
|
@ -164,30 +164,30 @@
|
|||
"Sync": "Синхронизация",
|
||||
"SyncUserPreferenceFailed": "Ошибка синхронизации настроек",
|
||||
"SyncUserPreferenceSuccess": "Настройки успешно синхронизированы",
|
||||
"Terminal does not support protocol %s, please use web terminal to access": "Данный терминал не поддерживает протокол %s, пожалуйста, войдите через веб-терминал",
|
||||
"TerminalInstanceNotFound": "Не найден экземпляр терминала для текущей вкладки",
|
||||
"TerminalInstanceNotFoundForCurrentTab": "Текущая вкладка не найдена экземпляр терминала",
|
||||
"The command '%s' requires review. Continue or not [Y/n]?": "Команда %s требует проверки, продолжить? [Y/N]",
|
||||
"The command you executed is risky and an alert notification will be sent to the administrator. Do you want to continue?[Y/N]": "Ваша команда содержит риски, уведомление будет отправлено администратору. Продолжить? [Y/N]",
|
||||
"TheCurrentTerminalInstanceWasNotFound": "Текущий экземпляр терминала не найден.",
|
||||
"Terminal does not support protocol %s, please use web terminal to access": "Этот терминал не поддерживает протокол %s, пожалуйста, войдите через веб-терминал",
|
||||
"TerminalInstanceNotFound": "Экземпляр терминала не найден",
|
||||
"TerminalInstanceNotFoundForCurrentTab": "Экземпляр терминала не найден в текущей вкладке",
|
||||
"The command '%s' requires review. Continue or not [Y/n]?": "Команда %s требует проверки. Продолжить? [Y/N]",
|
||||
"The command you executed is risky and an alert notification will be sent to the administrator. Do you want to continue?[Y/N]": "Выполняемая вами команда несёт риск, уведомление будет отправлено администратору. Продолжить? [Y/N]",
|
||||
"TheCurrentTerminalInstanceWasNotFound": "Текущий экземпляр терминала не найден",
|
||||
"Theme": "Тема",
|
||||
"ThemeColors": "Цвета темы",
|
||||
"ThemeConfig": "Настройки темы",
|
||||
"Ticket Reviewers: %s": "Проверяющий рабочей заявки: %s",
|
||||
"Tips: Enter asset[%s] account ID": "Подсказка: Введите ID аккаунта актива [%s]",
|
||||
"Tips: Enter g+NodeID to display the host under the node, such as g1": "Подсказка: введите g+ID узла для отображения хостов в узле, например: g1",
|
||||
"Ticket Reviewers: %s": "Утверждающий заявки: %s",
|
||||
"Tips: Enter asset[%s] account ID": "Подсказка: Введите ID учетной записи актива [%s]",
|
||||
"Tips: Enter g+NodeID to display the host under the node, such as g1": "Подсказка: введите g+ID папки, чтобы показать хосты внутри, например: g1",
|
||||
"Tips: Enter protocol ID": "Подсказка: введите ID протокола",
|
||||
"Tips: To set a default language, go to Personal Settings → Preferences on Web": "Подсказка: если хотите установить язык по умолчанию, перейдите на веб-версию в «Личные настройки → Предпочтения»",
|
||||
"Tips: switch language by ID (Current session only)": "Подсказка: введите ID для смены языка",
|
||||
"Tips: To set a default language, go to Personal Settings → Preferences on Web": "Подсказка: если хотите установить язык по умолчанию, перейдите в веб-версию в «Личные настройки → Предпочтения»",
|
||||
"Tips: switch language by ID (Current session only)": "Подсказка: введите ID, чтобы переключить язык (только для этой сессии)",
|
||||
"Transfer": "Передача",
|
||||
"Type": "Тип",
|
||||
"UnableToGenerateWebSocketURL": "Не удалось сгенерировать WebSocket URL, отсутствуют параметры",
|
||||
"UnableToGenerateWebSocketURL": "Не удалось создать URL WebSocket — отсутствуют параметры",
|
||||
"Unknown error code: %s, detail: %s": "Неизвестный код ошибки: %s, подробности: %s",
|
||||
"Unknown status": "Неизвестное состояние",
|
||||
"UpArrow": "Кнопка вверх",
|
||||
"Upload": "Загрузить",
|
||||
"UploadEnd": "Загрузка завершена, пожалуйста, подождите дальнейшей обработки",
|
||||
"UploadProgress": "Прогресс передачи",
|
||||
"UploadProgress": "Прогресс загрузки",
|
||||
"UploadStart": "Загрузка началась",
|
||||
"UploadSuccess": "Загрузка успешно завершена",
|
||||
"UploadTips": "Перетащите файл сюда или нажмите для загрузки",
|
||||
|
|
@ -200,28 +200,28 @@
|
|||
"Warning": "Предупреждение",
|
||||
"WebSocketClosed": "WebSocket закрыт",
|
||||
"WebSocketConnectionIsClosedHelpText": "WebSocket соединение закрыто, пожалуйста, обновите страницу или переподключитесь.",
|
||||
"Welcome to use JumpServer open source fortress system": "Добро пожаловать в открытую систему JumpServer Bastion Host",
|
||||
"Writable": "Создать ссылку для分享",
|
||||
"You don't have permission login %s": "У вас нет полномочий для входа в %s",
|
||||
"You get auth token failed": "Вы не смогли получить токен аутентификации",
|
||||
"display the assets you have permission": "Показать активы, к которым у вас есть доступ",
|
||||
"display the databases that you have permission": "Показать базы данных, к которым у вас есть доступ",
|
||||
"display the hosts that you have permission": "Показать хосты, к которым у вас есть доступ",
|
||||
"display the kubernetes that you have permission": "Показать доступные вам Kubernetes",
|
||||
"display the node that you have permission": "Показать узлы, к которым у вас есть доступ",
|
||||
"exit": "Выход",
|
||||
"Welcome to use JumpServer open source fortress system": "Добро пожаловать в JumpServer",
|
||||
"Writable": "Просмотр и управление",
|
||||
"You don't have permission login %s": "У вас нет прав на вход в %s",
|
||||
"You get auth token failed": "Не удалось получить токен аутентификации",
|
||||
"display the assets you have permission": "посмотреть активы, к которым у вас есть доступ",
|
||||
"display the databases that you have permission": "посмотреть базы данных, к которым у вас есть доступ",
|
||||
"display the hosts that you have permission": "посмотреть хосты, к которым у вас есть доступ",
|
||||
"display the kubernetes that you have permission": "посмотреть доступные вам Kubernetes",
|
||||
"display the node that you have permission": "посмотреть папки, к которым у вас есть доступ",
|
||||
"exit": "выйти",
|
||||
"get connect token err": "Ошибка получения токена подключения",
|
||||
"have no permission to download file": "Нет прав для загрузки файла",
|
||||
"have no permission to upload file": "Нет прав для загрузки файла",
|
||||
"i/o timeout": "Проблемы с сетью (время соединения истекло)",
|
||||
"language switch": "Переключение языка",
|
||||
"network is unreachable": "Сеть недоступна (невозможно достичь сети)",
|
||||
"not found matched username %s": "Не найдено соответствующее имя пользователя %s",
|
||||
"part IP, Hostname, Comment": "Частичные IP-адреса, имена хостов, заметки",
|
||||
"part IP,, Hostname, Comment": "/ + IP, имя хоста, примечание",
|
||||
"print help": "Показать помощь",
|
||||
"refresh your assets and nodes": "Обновить актуальную информацию о машинах и узлах",
|
||||
"select one asset to login": "Выберите один из активов для входа в систему",
|
||||
"to search login if unique": "Поиск входа (если единственный)",
|
||||
"to search, such as: /192.168": "Поиск, например: /192.168"
|
||||
"have no permission to download file": "Нет прав на скачивание файлов",
|
||||
"have no permission to upload file": "Нет прав на загрузку файлов",
|
||||
"i/o timeout": "Нет соединения (тайм-аут соединения)",
|
||||
"language switch": "сменить язык",
|
||||
"network is unreachable": "Нет соединения (сеть недоступна)",
|
||||
"not found matched username %s": "совпадений для УЗ %s не найдено",
|
||||
"part IP, Hostname, Comment": "часть IP, имя хоста или примечание",
|
||||
"part IP,, Hostname, Comment": "/ + IP, имя хоста или примечание",
|
||||
"print help": "посмотреть помощь",
|
||||
"refresh your assets and nodes": "обновить информацию об активах и папках",
|
||||
"select one asset to login": "выберите один из активов для входа",
|
||||
"to search login if unique": "найти подключение (если результат уникальный)",
|
||||
"to search, such as: /192.168": "выполнить поиск, например: /192.168"
|
||||
}
|
||||
|
|
@ -1,20 +1,45 @@
|
|||
{
|
||||
"\t%2d) Enter {{.GreenBoldColor}}%s{{.ColorEnd}} to %s.%s": "\t%d) 输入 {{.GreenBoldColor}}%s{{.ColorEnd}} 进行%s.%s",
|
||||
"%s approved": "%s 审核通过",
|
||||
"%s node has no assets": "%s节点没有资产",
|
||||
"%s protocol client not installed.": "%s 协议的客户端未安装",
|
||||
"%s rejected": "%s 审核拒绝",
|
||||
"ACL reject": "本次登录已拒绝,原因是访问控制策略的限制",
|
||||
"Account <%s> and asset <%s> protocol are inconsistent.": "系统用户<%s>和资产<%s>协议不一致",
|
||||
"ActionPerm": "操作权限",
|
||||
"Address": "地址",
|
||||
"AlreadyExistsPleaseRename": "文件已存在,请重命名",
|
||||
"Announcement: ": "公告:",
|
||||
"Authentication failed": "认证失败(用户名或密码错误)",
|
||||
"AvailableShortcutKey": "可用快捷键",
|
||||
"Back": "返回",
|
||||
"Back: B/b": "返回:B/b",
|
||||
"Cancel": "取消",
|
||||
"Cancel confirm": "取消登录复核",
|
||||
"Cancel to login asset or max 3 retry": "取消登录资产或达到3次重试",
|
||||
"CancelFileUpload": "取消文件上传",
|
||||
"CaseSensitive": "区分大小写",
|
||||
"Clone Connect": "复制窗口",
|
||||
"Close All Tabs": "关闭所有",
|
||||
"Close Current Tab": "关闭当前",
|
||||
"Command `%s` is forbidden": "命令 `%s` 是被禁止的 ...",
|
||||
"Comment": "备注",
|
||||
"Confirm": "确认",
|
||||
"ConfirmBtn": "确定",
|
||||
"ConfirmDelete": "您确定要删除该文件吗?",
|
||||
"Connect": "连接",
|
||||
"Connect idle more than %d minutes, disconnect": "空闲时间超过%d分钟,断开连接",
|
||||
"Connect with api server failed": "连接API服务失败",
|
||||
"Connecting to %s@%s": "开始连接到 %s@%s",
|
||||
"Connecting to Database %s": "开始连接数据库 %s",
|
||||
"Connecting to Kubernetes %s": "开始连接Kubernetes %s",
|
||||
"Connecting to Kubernetes %s container %s": "开始连接Kubernetes %s 容器 %s",
|
||||
"Connection refused": "网络不通(连接拒绝)",
|
||||
"CopyLink": "复制链接及验证码",
|
||||
"CopyShareURLSuccess": "复制分享地址成功",
|
||||
"Core API failed": "Core API 发生错误",
|
||||
"Could copy website URL to notify reviewers: %s": "可复制审核地址,通知审核人:%s",
|
||||
"Create k8s client err: %s": "创建 k8s 客户端错误:%s",
|
||||
"CreateFolder": "创建文件夹",
|
||||
"CreateLink": "创建链接",
|
||||
"CreateSuccess": "创建成功",
|
||||
|
|
@ -27,10 +52,14 @@
|
|||
"DownloadProgress": "下载进度",
|
||||
"DownloadSuccess": "下载成功",
|
||||
"Downloading": "正在下载",
|
||||
"Dynamic": "动态账号",
|
||||
"EndFileTransfer": "文件传输结束",
|
||||
"Enter ID number directly login, multiple search use // + field, such as: //16": "提示:输入资产ID直接登录,二级搜索使用 // + 字段,如://192",
|
||||
"ExceedTransferSize": "超过最大传输大小",
|
||||
"Expand": "展开",
|
||||
"ExpiredTime": "有效期限",
|
||||
"Face ACL is not supported yet. Please use the WebTerminal to connect the asset.": "该终端不支持人脸访问规则,请使用web终端登录",
|
||||
"Face verification is not supported yet. Please use the WebTerminal to connect the asset.": "该终端不支持人脸识别认证,请使用web终端登录",
|
||||
"FailedCreateConnection": "创建连接失败",
|
||||
"FileAlreadyExists": "文件已存在",
|
||||
"FileListError": "获取文件列表信息失败",
|
||||
|
|
@ -41,10 +70,15 @@
|
|||
"FileUploadInterrupted": "文件上传中断",
|
||||
"Format": "格式",
|
||||
"General": "通用",
|
||||
"Get auth password failed": "你获取认证令牌失败",
|
||||
"GetFileManagerTokenTimeOut": "获取文件管理 Token 超时",
|
||||
"GetShareUser": "输入用户名",
|
||||
"HandleTask does not support protocol %s, please use web terminal to access": "该终端不支持 %s 协议,请使用web终端登录",
|
||||
"Hostname": "主机名",
|
||||
"Hotkeys": "快捷键",
|
||||
"ID": "ID",
|
||||
"InputVerifyCode": "请输入验证码",
|
||||
"Invalid ID": "无效 ID",
|
||||
"JoinShare": "加入共享",
|
||||
"JoinedWithSuccess": "已成功加入",
|
||||
"KubernetesManagement": "Kubernetes 管理",
|
||||
|
|
@ -53,41 +87,69 @@
|
|||
"LeftArrow": "后退箭头",
|
||||
"LinkAddr": "链接地址",
|
||||
"List": "列表",
|
||||
"Manual": "手动账号",
|
||||
"MatchWholeWords": "全字匹配",
|
||||
"Minute": "分钟",
|
||||
"Minutes": "分",
|
||||
"Must be auto login account for %s": "必须是自动登录账号 %s",
|
||||
"Must be unique account for %s": "必须是唯一的账号 %s",
|
||||
"Must be unique asset for %s": "必须是唯一的资产 %s",
|
||||
"MustOneFile": "只能选择一个文件",
|
||||
"MustSelectOneFile": "必须选择一个文件",
|
||||
"Name": "名称",
|
||||
"Need ACL review, continue? (y/n): ": "需要审核,继续?(y/n): ",
|
||||
"Need ticket confirm to execute command, already send email to the reviewers": "需要工单命令执行复核,已发邮件通知审核人",
|
||||
"Need ticket confirm to login, already send email to the reviewers": "需要工单登录复核,已发邮件通知审核人",
|
||||
"NewFolder": "新建文件夹",
|
||||
"No Account found.": "未发现账号",
|
||||
"No Assets": "没有资产",
|
||||
"No Databases": "无数据库",
|
||||
"No found asset": "未发现匹配的资产 %s",
|
||||
"No kubernetes": "没有kubernetes",
|
||||
"No protocol found.": "无协议",
|
||||
"No route to host": "网络不通(路由不通)",
|
||||
"NoActiveTerminalTabFound": "未找到活动终端标签页",
|
||||
"NoData": "无数据",
|
||||
"NoLink": "无地址",
|
||||
"NoRunningTerminalFound": "未找到正在运行的终端",
|
||||
"Node: [ ID.Name(Asset amount) ]": "节点:[ ID.名称(资产数量) ]",
|
||||
"OnlineUser": "在线用户",
|
||||
"OperationSuccessful": "操作成功",
|
||||
"Organization": "组织",
|
||||
"Owner": "管理者",
|
||||
"Page up: b\tPage down: n": "上一页:b 下一页:n",
|
||||
"Page: %d, Count: %d, Total Page: %d, Total Count: %d": "页码:%d,每页行数:%d,总页数:%d,总数量:%d",
|
||||
"Paste": "粘贴",
|
||||
"PauseSession": "暂停此会话",
|
||||
"PermissionDenied": "没有权限",
|
||||
"PermissionExpired": "权限已过期",
|
||||
"PermissionValid": "权限有效",
|
||||
"Platform": "平台",
|
||||
"Please waiting for the reviewers to confirm command `%s`, cancel by CTRL+C or CTRL+D.": "请等待审核人复核命令 `%s`,取消按 CTRL+C 或 CTRL+D。",
|
||||
"Please waiting for the reviewers to confirm, enter q to exit. ": "等待审核人复核确认,按 q 回车取消登录。",
|
||||
"PleaseInput": "请输入",
|
||||
"PleaseInputVerifyCode": "请输入验证码",
|
||||
"PrimaryUser": "主用户",
|
||||
"Protocol": "协议",
|
||||
"ReadOnly": "只读",
|
||||
"Reconnect": "重新连接",
|
||||
"Refresh": "刷新",
|
||||
"Refresh done": "刷新完成",
|
||||
"Remove": "移除",
|
||||
"RemoveShareUser": "你已经被移除共享会话",
|
||||
"RemoveUser": "移除用户",
|
||||
"Rename": "重命名",
|
||||
"ResumeSession": "恢复此会话",
|
||||
"Reuse SSH connections (%s@%s) [Number of connections: %d]": "复用SSH连接(%s@%s)[连接数量: %d]",
|
||||
"RightArrow": "前进箭头",
|
||||
"Search": "搜索",
|
||||
"Search: %s": "搜索:%s",
|
||||
"Select account exceed max retry times.": "选择账号超过最大重试次数",
|
||||
"Select protocol exceed max retry times.": "选择协议超过最大重试次数",
|
||||
"SelectAction": "请选择",
|
||||
"SelectTheme": "请选择主题",
|
||||
"Self": "我",
|
||||
"Session max time reached, disconnect": "会话超过最大连接时间,断开连接",
|
||||
"SessionDetail": "会话详情",
|
||||
"SessionShare": "会话分享",
|
||||
"Settings": "设置",
|
||||
|
|
@ -96,18 +158,32 @@
|
|||
"ShareUser": "分享用户",
|
||||
"ShareUserHelpText": "未选择用户,即允许所有人加入",
|
||||
"Size": "大小",
|
||||
"Start domain gateway failed %s": "启动数据库网关失败%s",
|
||||
"Switch language successfully": "切换语言成功",
|
||||
"Switched to %s": "已切换至%s",
|
||||
"Sync": "同步",
|
||||
"SyncUserPreferenceFailed": "同步设置失败",
|
||||
"SyncUserPreferenceSuccess": "同步设置成功",
|
||||
"Terminal does not support protocol %s, please use web terminal to access": "该终端不支持 %s 协议,请使用web终端登录",
|
||||
"TerminalInstanceNotFound": "未找到当前选项卡的终端实例",
|
||||
"TerminalInstanceNotFoundForCurrentTab": "当前标签页未找到终端实例",
|
||||
"The command '%s' requires review. Continue or not [Y/n]?": "命令 %s 需要复核,是否继续?[Y/N]",
|
||||
"The command you executed is risky and an alert notification will be sent to the administrator. Do you want to continue?[Y/N]": "您执行的命令存在风险,告警通知将发送给管理员。是否继续?[Y/N]",
|
||||
"TheCurrentTerminalInstanceWasNotFound": "当前终端实例未找到",
|
||||
"Theme": "主题",
|
||||
"ThemeColors": "主题颜色",
|
||||
"ThemeConfig": "主题",
|
||||
"Ticket Reviewers: %s": "工单审核人:%s ",
|
||||
"Tips: Enter asset[%s] account ID": "提示:输入资产[%s]的账号ID",
|
||||
"Tips: Enter g+NodeID to display the host under the node, such as g1": "提示:输入 g+节点ID 显示节点下主机,如: g1",
|
||||
"Tips: Enter protocol ID": "提示:输入协议ID",
|
||||
"Tips: To set a default language, go to Personal Settings → Preferences on Web": "提示:如需设置默认语言,请前往 Web 端「个人设置 → 偏好设置」",
|
||||
"Tips: switch language by ID (Current session only)": "提示:输入ID切换语言",
|
||||
"Transfer": "传输",
|
||||
"Type": "类型",
|
||||
"UnableToGenerateWebSocketURL": "无法生成 WebSocket URL, 缺少参数",
|
||||
"Unknown error code: %s, detail: %s": "未知错误代码:%s,详情:%s",
|
||||
"Unknown status": "未知状态",
|
||||
"UpArrow": "向上箭头",
|
||||
"Upload": "上传",
|
||||
"UploadEnd": "上传已完成,请等待后续处理",
|
||||
|
|
@ -117,111 +193,35 @@
|
|||
"UploadTips": "将文件拖到此处,或点击上传",
|
||||
"UploadTitle": "上传文件",
|
||||
"User": "用户",
|
||||
"Username": "用户名",
|
||||
"UsingRegularExpressions": "使用正则表达式",
|
||||
"VerifyCode": "验证码",
|
||||
"WaitFileTransfer": "等待文件传输结束",
|
||||
"Warning": "警告",
|
||||
"WebSocketClosed": "WebSocket 已关闭",
|
||||
"WebSocketConnectionIsClosedHelpText": "WebSocket 连接已关闭,请刷新页面或重新连接。",
|
||||
"Writable": "可写",
|
||||
"No Databases": "无数据库",
|
||||
"No kubernetes": "没有kubernetes",
|
||||
"Page: %d, Count: %d, Total Page: %d, Total Count: %d": "页码:%d,每页行数:%d,总页数:%d,总数量:%d",
|
||||
"Enter ID number directly login, multiple search use // + field, such as: //16": "提示:输入资产ID直接登录,二级搜索使用 // + 字段,如://192",
|
||||
"Page up: b\tPage down: n": "上一页:b 下一页:n",
|
||||
"No Assets": "没有资产",
|
||||
"ID": "ID",
|
||||
"Address": "地址",
|
||||
"Platform": "平台",
|
||||
"Organization": "组织",
|
||||
"Comment": "备注",
|
||||
"%s protocol client not installed.": "%s 协议的客户端未安装",
|
||||
"Terminal does not support protocol %s, please use web terminal to access": "该终端不支持 %s 协议,请使用web终端登录",
|
||||
"Core API failed": "Core API 发生错误",
|
||||
"ACL reject": "本次登录已拒绝,原因是访问控制策略的限制",
|
||||
"Face ACL is not supported yet. Please use the WebTerminal to connect the asset.": "该终端不支持人脸访问规则,请使用web终端登录",
|
||||
"Unknown error code: %s, detail: %s": "未知错误代码:%s,详情:%s",
|
||||
"get connect token err": "获取 connect token 错误",
|
||||
"%s node has no assets": "%s节点没有资产",
|
||||
"Welcome to use JumpServer open source fortress system": "欢迎使用JumpServer开源堡垒机系统",
|
||||
"part IP, Hostname, Comment": "部分IP,主机名,备注",
|
||||
"to search login if unique": "搜索登录(如果唯一)",
|
||||
"part IP,, Hostname, Comment": "/ + IP,主机名,备注",
|
||||
"to search, such as: /192.168": "搜索,如:/192.168",
|
||||
"display the assets you have permission": "显示您有权限的资产",
|
||||
"display the node that you have permission": "显示您有权限的节点",
|
||||
"display the hosts that you have permission": "显示您有权限的主机",
|
||||
"display the databases that you have permission": "显示您有权限的数据库",
|
||||
"display the kubernetes that you have permission": "显示您有权限的Kubernetes",
|
||||
"refresh your assets and nodes": "刷新最新的机器和节点信息",
|
||||
"language switch": "语言切换",
|
||||
"print help": "显示帮助",
|
||||
"exit": "退出",
|
||||
"\t%2d) Enter {{.GreenBoldColor}}%s{{.ColorEnd}} to %s.%s": "\t%d) 输入 {{.GreenBoldColor}}%s{{.ColorEnd}} 进行%s.%s",
|
||||
"Announcement: ": "公告:",
|
||||
"No Account found.": "未发现账号",
|
||||
"Username": "用户名",
|
||||
"Tips: Enter asset[%s] account ID": "提示:输入资产[%s]的账号ID",
|
||||
"Back: B/b": "返回:B/b",
|
||||
"Hostname": "主机名",
|
||||
"select one asset to login": "选择其中一个资产登录",
|
||||
"not found matched username %s": "未发现匹配的用户名 %s",
|
||||
"Face verification is not supported yet. Please use the WebTerminal to connect the asset.": "该终端不支持人脸识别认证,请使用web终端登录",
|
||||
"Tips: switch language by ID (Current session only)": "提示:输入ID切换语言",
|
||||
"Tips: To set a default language, go to Personal Settings → Preferences on Web": "提示:如需设置默认语言,请前往 Web 端「个人设置 → 偏好设置」",
|
||||
"Invalid ID": "无效 ID",
|
||||
"Switch language successfully": "切换语言成功",
|
||||
"Node: [ ID.Name(Asset amount) ]": "节点:[ ID.名称(资产数量) ]",
|
||||
"Tips: Enter g+NodeID to display the host under the node, such as g1": "提示:输入 g+节点ID 显示节点下主机,如: g1",
|
||||
"Connect idle more than %d minutes, disconnect": "空闲时间超过%d分钟,断开连接",
|
||||
"Select account exceed max retry times.": "选择账号超过最大重试次数",
|
||||
"No protocol found.": "无协议",
|
||||
"Protocol": "协议",
|
||||
"Tips: Enter protocol ID": "提示:输入协议ID",
|
||||
"Select protocol exceed max retry times.": "选择协议超过最大重试次数",
|
||||
"Refresh done": "刷新完成",
|
||||
"Need ACL review, continue? (y/n): ": "需要审核,继续?(y/n): ",
|
||||
"Cancel to login asset or max 3 retry": "取消登录资产或达到3次重试",
|
||||
"Need ticket confirm to login, already send email to the reviewers": "需要工单登录复核,已发邮件通知审核人",
|
||||
"Ticket Reviewers: %s": "工单审核人:%s ",
|
||||
"Could copy website URL to notify reviewers: %s": "可复制审核地址,通知审核人:%s",
|
||||
"Please waiting for the reviewers to confirm, enter q to exit. ": "等待审核人复核确认,按 q 回车取消登录。",
|
||||
"Unknown status": "未知状态",
|
||||
"%s approved": "%s 审核通过",
|
||||
"%s rejected": "%s 审核拒绝",
|
||||
"Cancel confirm": "取消登录复核",
|
||||
"Search: %s": "搜索:%s",
|
||||
"Must be unique asset for %s": "必须是唯一的资产 %s",
|
||||
"Must be unique account for %s": "必须是唯一的账号 %s",
|
||||
"Must be auto login account for %s": "必须是自动登录账号 %s",
|
||||
"No found asset": "未发现匹配的资产 %s",
|
||||
"Create k8s client err: %s": "创建 k8s 客户端错误:%s",
|
||||
"have no permission to upload file": "无权限上传文件",
|
||||
"The command you executed is risky and an alert notification will be sent to the administrator. Do you want to continue?[Y/N]": "您执行的命令存在风险,告警通知将发送给管理员。是否继续?[Y/N]",
|
||||
"The command '%s' requires review. Continue or not [Y/n]?": "命令 %s 需要复核,是否继续?[Y/N]",
|
||||
"Command `%s` is forbidden": "命令 `%s` 是被禁止的 ...",
|
||||
"have no permission to download file": "无权限下载文件",
|
||||
"Please waiting for the reviewers to confirm command `%s`, cancel by CTRL+C or CTRL+D.": "请等待审核人复核命令 `%s`,取消按 CTRL+C 或 CTRL+D。",
|
||||
"Need ticket confirm to execute command, already send email to the reviewers": "需要工单命令执行复核,已发邮件通知审核人",
|
||||
"HandleTask does not support protocol %s, please use web terminal to access": "该终端不支持 %s 协议,请使用web终端登录",
|
||||
"Account <%s> and asset <%s> protocol are inconsistent.": "系统用户<%s>和资产<%s>协议不一致",
|
||||
"Writable": "可写",
|
||||
"You don't have permission login %s": "你无权限登陆%s",
|
||||
"You get auth token failed": "你获取认证令牌失败",
|
||||
"Get auth password failed": "你获取认证令牌失败",
|
||||
"Reuse SSH connections (%s@%s) [Number of connections: %d]": "复用SSH连接(%s@%s)[连接数量: %d]",
|
||||
"Switched to %s": "已切换至%s",
|
||||
"Connect with api server failed": "连接API服务失败",
|
||||
"Start domain gateway failed %s": "启动数据库网关失败%s",
|
||||
"Manual": "手动账号",
|
||||
"Dynamic": "动态账号",
|
||||
"Connecting to %s@%s": "开始连接到 %s@%s",
|
||||
"Connecting to Database %s": "开始连接数据库 %s",
|
||||
"Connecting to Kubernetes %s": "开始连接Kubernetes %s",
|
||||
"Connecting to Kubernetes %s container %s": "开始连接Kubernetes %s 容器 %s",
|
||||
"Session max time reached, disconnect": "会话超过最大连接时间,断开连接",
|
||||
"Authentication failed": "认证失败(用户名或密码错误)",
|
||||
"Connection refused": "网络不通(连接拒绝)",
|
||||
"display the assets you have permission": "显示您有权限的资产",
|
||||
"display the databases that you have permission": "显示您有权限的数据库",
|
||||
"display the hosts that you have permission": "显示您有权限的主机",
|
||||
"display the kubernetes that you have permission": "显示您有权限的Kubernetes",
|
||||
"display the node that you have permission": "显示您有权限的节点",
|
||||
"exit": "退出",
|
||||
"get connect token err": "获取 connect token 错误",
|
||||
"have no permission to download file": "无权限下载文件",
|
||||
"have no permission to upload file": "无权限上传文件",
|
||||
"i/o timeout": "网络不通(连接超时)",
|
||||
"No route to host": "网络不通(路由不通)",
|
||||
"network is unreachable": "网络不通(网络不可达)"
|
||||
"language switch": "语言切换",
|
||||
"network is unreachable": "网络不通(网络不可达)",
|
||||
"not found matched username %s": "未发现匹配的用户名 %s",
|
||||
"part IP, Hostname, Comment": "部分IP,主机名,备注",
|
||||
"part IP,, Hostname, Comment": "/ + IP,主机名,备注",
|
||||
"print help": "显示帮助",
|
||||
"refresh your assets and nodes": "刷新最新的机器和节点信息",
|
||||
"select one asset to login": "选择其中一个资产登录",
|
||||
"to search login if unique": "搜索登录(如果唯一)",
|
||||
"to search, such as: /192.168": "搜索,如:/192.168"
|
||||
}
|
||||
|
|
@ -448,6 +448,10 @@
|
|||
"DangerCommand": "Dangerous command",
|
||||
"DangerousCommandNum": "Total dangerous commands",
|
||||
"Dashboard": "Dashboard",
|
||||
"DataMasking": "DataMasking",
|
||||
"DataMaskingFieldsPatternHelpTip": "Supports multiple field names separated by commas, and supports wildcard *\n For example:\nSingle field name: password — only masks the\"password\" field\nMultiple field names: password,secret — masks both\"password\" and\"secret\" fields\nWildcard : password — masks fields whose names start with\"password\"\nWildcard *: .*password — masks fields whose names end with\"password\"\n",
|
||||
"DataMaskingRuleHelpHelpMsg": "When connecting to database assets, you can anonymize query results based on this rule.",
|
||||
"DataMaskingRuleHelpHelpText": "When connecting to database assets, you can anonymize query results based on this rule.",
|
||||
"Database": "Database",
|
||||
"DatabaseCreate": "Create asset - database",
|
||||
"DatabasePort": "Database protocol port",
|
||||
|
|
@ -573,9 +577,9 @@
|
|||
"EsUrl": "Cannot include special char `#`; eg: http://es_user:es_password@es_host:es_port",
|
||||
"Every": "Every",
|
||||
"Exclude": "Does not include",
|
||||
"ExcludeAccount": "Exclude accounts",
|
||||
"ExcludeAsset": "Skipped assets",
|
||||
"ExcludeSymbol": "Exclude char",
|
||||
"ExcludeAccount": "Exclude accounts",
|
||||
"ExecCloudSyncErrorMsg": "The cloud account configuration is incomplete, please update and try again.",
|
||||
"Execute": "Execute",
|
||||
"ExecuteAfterSaving": "Execute after saving",
|
||||
|
|
@ -865,6 +869,7 @@
|
|||
"MoveAssetToNode": "Move assets to node",
|
||||
"MoveToAsset": "Move to asset",
|
||||
"MsgSubscribe": "Subscription",
|
||||
"MsgTemplate": "Msg Template",
|
||||
"MyAssets": "My assets",
|
||||
"MyTickets": "Submitted",
|
||||
"NUMBER_REQUIRED": "Must contain numbers",
|
||||
|
|
@ -1035,6 +1040,7 @@
|
|||
"PrivilegedOnly": "Privileged only",
|
||||
"PrivilegedTemplate": "Privileged",
|
||||
"Processing": "Processing",
|
||||
"ProcessingMessage": "Processing, please wait...",
|
||||
"Product": "Product",
|
||||
"ProfileSetting": "Profile info",
|
||||
"Project": "Project name",
|
||||
|
|
@ -1148,6 +1154,7 @@
|
|||
"ResetSSHKeySuccessMsg": "Email task submitted, user will receive a url to reset shortly",
|
||||
"ResetSSHKeyWarningMsg": "Are you sure you want to send a reset ssh key email to the user?",
|
||||
"ResetSecret": "Secret can be changed",
|
||||
"ResetSuccessfully": "Reset successfully",
|
||||
"ResolveSelected": "Resolve selected",
|
||||
"Resource": "Resources",
|
||||
"ResourceType": "Resource type",
|
||||
|
|
@ -1406,6 +1413,7 @@
|
|||
"TemplateCreate": "Create template",
|
||||
"TemplateHelpText": "When selecting a template to add, accounts that do not exist under the asset will be automatically created and pushed",
|
||||
"TemplateManagement": "Templates",
|
||||
"TemplateVariablesHelpText": "You can select a template and use {{ key }} within the template content to read built-in variables.Note: only the {{ }} syntax is supported; other syntaxes such as {% if title %} are not supported.",
|
||||
"Templates": "Templates",
|
||||
"TencentCloud": "Tencent cloud",
|
||||
"Terminal": "Components",
|
||||
|
|
@ -1520,12 +1528,12 @@
|
|||
"UserCreate": "Create user",
|
||||
"UserData": "User data",
|
||||
"UserDetail": "User details",
|
||||
"UserGroup": "User group",
|
||||
"UserGroupCreate": "Create user group",
|
||||
"UserGroupDetail": "User group details",
|
||||
"UserGroupList": "Groups",
|
||||
"UserGroupUpdate": "Update the user group",
|
||||
"UserGroups": "Groups",
|
||||
"UserGroup": "User group",
|
||||
"UserList": "Users",
|
||||
"UserLogin": "User login",
|
||||
"UserLoginACL": "User login ACL",
|
||||
|
|
@ -1612,15 +1620,12 @@
|
|||
"assetId": "Asset ID",
|
||||
"assetName": "Asset name",
|
||||
"currentTime": "Current time",
|
||||
"description": "No data yet",
|
||||
"disallowSelfUpdateFields": "Not allowed to modify the current fields yourself",
|
||||
"forceEnableMFAHelpText": "If force enable, user can not disable by themselves",
|
||||
"isConsoleCanUse": "is Console page can use",
|
||||
"removeWarningMsg": "Are you sure you want to remove",
|
||||
"setVariable": "Set variable",
|
||||
"userId": "User ID",
|
||||
"userName": "User name",
|
||||
"description": "No data yet",
|
||||
"MsgTemplate": "Msg Template",
|
||||
"TemplateVariablesHelpText": "You can select a template and use {{ key }} within the template content to read built-in variables.Note: only the {{ }} syntax is supported; other syntaxes such as {% if title %} are not supported.",
|
||||
"ResetSuccessfully": "Reset successfully"
|
||||
}
|
||||
"userName": "User name"
|
||||
}
|
||||
|
|
@ -447,6 +447,10 @@
|
|||
"DangerCommand": "Orden de peligro",
|
||||
"DangerousCommandNum": "Número de comandos peligrosos",
|
||||
"Dashboard": "panel de control",
|
||||
"DataMasking": "Desensibilización de datos",
|
||||
"DataMaskingFieldsPatternHelpTip": "Soporte para múltiples nombres de campo, separados por comas, con soporte para comodines *\nPor ejemplo:\nNombre de campo único: password indica que solo se desensibiliza el campo password.\nMúltiples nombres de campo: password,secret indica que se desensibilizan los campos password y secret.\nComodín*: password* indica que se desensibilizan los campos que contienen el prefijo password.\nComodín*: .*password indica que se desensibilizan los campos que contienen el sufijo password.",
|
||||
"DataMaskingRuleHelpHelpMsg": "Al conectar con la base de datos de activos, se puede aplicar esta regla para desensibilizar los resultados de la consulta.",
|
||||
"DataMaskingRuleHelpHelpText": "Al conectar activos de la base de datos, se puede llevar a cabo la desensibilización de los resultados de la consulta según esta regla.",
|
||||
"Database": "Base de datos",
|
||||
"DatabaseCreate": "crear activo - base de datos",
|
||||
"DatabasePort": "Puerto del protocolo de la base de datos",
|
||||
|
|
@ -571,6 +575,7 @@
|
|||
"EsIndex": "es proporcionando el índice predeterminado: jumpserver. Si se habilita el índice por fecha, el valor ingresado se usará como prefijo del índice",
|
||||
"EsUrl": "No puede incluir caracteres especiales `#`; ej: http://es_user:es_password@es_host:es_port",
|
||||
"Every": "Cada",
|
||||
"Example": "Ejemplo de valor",
|
||||
"Exclude": "No incluir",
|
||||
"ExcludeAccount": "Excluir cuenta",
|
||||
"ExcludeAsset": "Activos omitidos",
|
||||
|
|
@ -866,6 +871,7 @@
|
|||
"MoveAssetToNode": "Mover activos al nodo",
|
||||
"MoveToAsset": "Mover a activos",
|
||||
"MsgSubscribe": "Suscripción de mensajes",
|
||||
"MsgTemplate": "Plantilla de mensajes",
|
||||
"MyAssets": "Mis activos",
|
||||
"MyTickets": "Iniciados por mí",
|
||||
"NUMBER_REQUIRED": "Debe incluir números",
|
||||
|
|
@ -1039,6 +1045,7 @@
|
|||
"PrivilegedOnly": "Solo cuentas privilegiadas",
|
||||
"PrivilegedTemplate": "Privilegiado",
|
||||
"Processing": "En proceso",
|
||||
"ProcessingMessage": "Tarea en progreso, por favor, espere ⏳",
|
||||
"Product": "Productos",
|
||||
"ProfileSetting": "Configuración de información personal",
|
||||
"Project": "Nombre del proyecto",
|
||||
|
|
@ -1153,6 +1160,7 @@
|
|||
"ResetSSHKeySuccessMsg": "Tarea de envío de correo electrónico ha sido enviada, el usuario recibirá más tarde un correo electrónico con la clave de reinicio",
|
||||
"ResetSSHKeyWarningMsg": "¿Está seguro de que desea enviar el correo para restablecer la clave SSH del usuario?",
|
||||
"ResetSecret": "Cambio de contraseña permitido",
|
||||
"ResetSuccessfully": "Restablecimiento exitoso.",
|
||||
"ResolveSelected": "Resolver lo establecido",
|
||||
"Resource": "Recursos",
|
||||
"ResourceType": "Tipo de recurso",
|
||||
|
|
@ -1414,6 +1422,7 @@
|
|||
"TemplateCreate": "Crear plantilla",
|
||||
"TemplateHelpText": "Al seleccionar una plantilla para añadir, se crearán automáticamente cuentas que no existen en el activo y se enviarán",
|
||||
"TemplateManagement": "Gestión de plantillas",
|
||||
"TemplateVariablesHelpText": "Puede elegir una plantilla y utilizar {{ key }} en el contenido de la plantilla para leer variables incorporadas. Tenga en cuenta que solo se admite la sintaxis {{ }}, no se admite ninguna otra. Por ejemplo, {% if title %}",
|
||||
"Templates": "Plantilla",
|
||||
"TencentCloud": "Tencent Cloud",
|
||||
"Terminal": "Configuración de componentes",
|
||||
|
|
|
|||
|
|
@ -452,6 +452,10 @@
|
|||
"DangerousCommandNum": "危険なコマンド数",
|
||||
"Dashboard": "ダッシュボード",
|
||||
"DataLastUsed": "さいごしようび",
|
||||
"DataMasking": "データマスキング",
|
||||
"DataMaskingFieldsPatternHelpTip": "複数のフィールド名をサポートし、カンマで区切ります。ワイルドカード*もサポートしています。\n例えば:\n単一フィールド名: password は password フィールドのみマスキングします。\n複数フィールド名: password, secret は password と secret フィールドの両方をマスキングします。\nワイルドカード*: password* は、password プレフィックスを含むフィールド名をマスキングします。\nワイルドカード*: .*password は、password サフィックスを含むフィールド名をマスキングします。",
|
||||
"DataMaskingRuleHelpHelpMsg": "データベース資産に接続する際、これに基づいてクエリ結果をマスキングすることができます。",
|
||||
"DataMaskingRuleHelpHelpText": "データベース資産に接続する際は、このルールに従ってクエリ結果をマスキングできます。",
|
||||
"Database": "データベース",
|
||||
"DatabaseCreate": "資産-データベースの作成",
|
||||
"DatabasePort": "データベースプロトコルポート",
|
||||
|
|
@ -576,6 +580,7 @@
|
|||
"EsIndex": "es はデフォルト index:jumpserverを提供します。日付でインデックスを作成する設定が有効な場合、入力値はインデックスのプレフィックスとして使用されます",
|
||||
"EsUrl": "特殊文字 `#` は含むことができません;例: http://es_user:es_password@es_host:es_port",
|
||||
"Every": "毎",
|
||||
"Example": "例の値",
|
||||
"Exclude": "除外",
|
||||
"ExcludeAccount": "アカウント除外",
|
||||
"ExcludeAsset": "スキップされた資産",
|
||||
|
|
@ -871,6 +876,7 @@
|
|||
"MoveAssetToNode": "アセットをノードに移動",
|
||||
"MoveToAsset": "資産へ移動",
|
||||
"MsgSubscribe": "メッセージの購読",
|
||||
"MsgTemplate": "メッセージテンプレート",
|
||||
"MyAssets": "私の資産",
|
||||
"MyTickets": "私が始めた",
|
||||
"NUMBER_REQUIRED": "数字を含める必要があります",
|
||||
|
|
@ -1044,6 +1050,7 @@
|
|||
"PrivilegedOnly": "特権アカウントのみ",
|
||||
"PrivilegedTemplate": "特別な権限の",
|
||||
"Processing": "処理中",
|
||||
"ProcessingMessage": "タスクを実行中です。しばらくお待ちください ⏳",
|
||||
"Product": "商品",
|
||||
"ProfileSetting": "個人情報設定",
|
||||
"Project": "プロジェクト名",
|
||||
|
|
@ -1158,6 +1165,7 @@
|
|||
"ResetSSHKeySuccessMsg": "メール送信タスクが提出されました。ユーザーは後でリセットキーのメールを受け取ります",
|
||||
"ResetSSHKeyWarningMsg": "ユーザーのSSH Keyをリセットするメールを送信してもよろしいですか?",
|
||||
"ResetSecret": " パスワード変更可能 ",
|
||||
"ResetSuccessfully": "リセット成功",
|
||||
"ResolveSelected": "解決選択",
|
||||
"Resource": "リソース",
|
||||
"ResourceType": "リソースタイプ",
|
||||
|
|
@ -1419,6 +1427,7 @@
|
|||
"TemplateCreate": "テンプレート作成",
|
||||
"TemplateHelpText": "テンプレートを選択して追加すると、資産の下に存在しないアカウントが自動的に作成され、プッシュされます",
|
||||
"TemplateManagement": "テンプレート一覧",
|
||||
"TemplateVariablesHelpText": "テンプレートの中で {{ key }} を使って組み込み変数を読み取るテンプレートを選択できます。注意:サポートされているのは {{ }} 構文のみで、他の構文はサポートされていません。例えば {% if title %}",
|
||||
"Templates": "テンプレート",
|
||||
"TencentCloud": "テンセントクラウド",
|
||||
"Terminal": "コンポーネント設定",
|
||||
|
|
|
|||
|
|
@ -447,6 +447,10 @@
|
|||
"DangerCommand": "위험 명령",
|
||||
"DangerousCommandNum": "위험 명령 수",
|
||||
"Dashboard": "대시보드",
|
||||
"DataMasking": "데이터 탈민",
|
||||
"DataMaskingFieldsPatternHelpTip": "여러 개의 필드명을 지원하며, 쉼표로 구분됩니다. 또한 와일드카드*도 지원합니다. \n예를 들어: \n단일 필드명: password는 password 필드만 비식별화합니다. \n다수의 필드명: password,secret은 password와 secret 필드를 비식별화합니다. \n와일드카드*: password*는 password 접두사가 포함된 필드명을 비식별화합니다. \n와일드카드*: .*password는 password 접미사가 포함된 필드명을 비식별화합니다.",
|
||||
"DataMaskingRuleHelpHelpMsg": "데이터베이스 자산에 연결할 때, 이 규칙에 따라 쿼리 결과를 비감시 처리할 수 있습니다.",
|
||||
"DataMaskingRuleHelpHelpText": "데이터베이스 자산에 연결할 때, 이 규칙에 따라 조회 결과의 민감 정보를 비공개 처리할 수 있습니다.",
|
||||
"Database": "데이터베이스",
|
||||
"DatabaseCreate": "로그인 검토",
|
||||
"DatabasePort": "라벨",
|
||||
|
|
@ -571,6 +575,7 @@
|
|||
"EsIndex": "es 기본 인덱스 제공: jumpserver. 날짜별 인덱스 생성을 활성화하면 입력된 값이 인덱스 접두사로 사용됩니다",
|
||||
"EsUrl": "특수 문자 `#`를 포함할 수 없습니다; 예: http://es_user:es_password@es_host:es_port",
|
||||
"Every": "매우",
|
||||
"Example": "예시 값",
|
||||
"Exclude": "포함되지 않음",
|
||||
"ExcludeAccount": "계정 제외",
|
||||
"ExcludeAsset": "건너뛴 자산",
|
||||
|
|
@ -866,6 +871,7 @@
|
|||
"MoveAssetToNode": "이동 자산을 노드로< -SEP-> 역사 기록< -SEP-> 생체 정보< -SEP-> 자산을 노드에 추가< -SEP-> 포함< -SEP-> 장시간 미로그인< -SEP-> 권한 있는 자산< -SEP-> 정기적으로< -SEP-> 변경 후< -SEP-> 연결 가능< -SEP-> 위험< -SEP-> 자산 업데이트 - 데이터베이스< -SEP-> 동기화< -SEP-> 녹화 다운로드< -SEP-> 실행 경로 입력",
|
||||
"MoveToAsset": "자산으로 이동",
|
||||
"MsgSubscribe": "메시지 구독",
|
||||
"MsgTemplate": "메시지 템플릿",
|
||||
"MyAssets": "템플릿",
|
||||
"MyTickets": "내가 시작한",
|
||||
"NUMBER_REQUIRED": "숫자를 포함해야 합니다",
|
||||
|
|
@ -1039,6 +1045,7 @@
|
|||
"PrivilegedOnly": "특권 계정만",
|
||||
"PrivilegedTemplate": "특권의",
|
||||
"Processing": "처리 중",
|
||||
"ProcessingMessage": "작업 진행 중입니다. 잠시만 기다려 주십시오 ⏳",
|
||||
"Product": "제품",
|
||||
"ProfileSetting": "개인 정보 설정",
|
||||
"Project": "프로젝트 이름",
|
||||
|
|
@ -1153,6 +1160,7 @@
|
|||
"ResetSSHKeySuccessMsg": "메일 전송 작업이 제출되었습니다. 사용자는 나중에 재설정 키 메일을 받게 될 것입니다.",
|
||||
"ResetSSHKeyWarningMsg": "사용자의 SSH 키를 재설정하는 이메일을 전송하시겠습니까?",
|
||||
"ResetSecret": "변경 가능 비밀번호",
|
||||
"ResetSuccessfully": "재설정 성공",
|
||||
"ResolveSelected": "선택한 사항 해결",
|
||||
"Resource": "리소스",
|
||||
"ResourceType": "자원 유형",
|
||||
|
|
@ -1414,6 +1422,7 @@
|
|||
"TemplateCreate": "템플릿 생성",
|
||||
"TemplateHelpText": "템플릿 선택 시, 자산에 존재하지 않는 계정을 자동으로 생성하고 전송",
|
||||
"TemplateManagement": "템플릿 관리",
|
||||
"TemplateVariablesHelpText": "템플릿에서 {{ key }}를 사용하여 내장 변수를 읽어올 수 있는 템플릿을 선택할 수 있습니다. 주의: {{ }} 문법만 지원하며, 다른 문법은 지원하지 않습니다. 예를 들어 {% if title %}",
|
||||
"Templates": "기업 버전",
|
||||
"TencentCloud": "텐센트 클라우드",
|
||||
"Terminal": "컴포넌트 설정",
|
||||
|
|
|
|||
|
|
@ -448,6 +448,10 @@
|
|||
"DangerCommand": "Comando perigoso",
|
||||
"DangerousCommandNum": "Número de Comandos Perigosos",
|
||||
"Dashboard": "Painel ",
|
||||
"DataMasking": "Desensibilização de dados",
|
||||
"DataMaskingFieldsPatternHelpTip": "Suporta múltiplos nomes de campo, separados por vírgula, e aceita caracteres coringa *\nPor exemplo:\nNome de campo único: password indica que apenas o campo password será desensibilizado.\nMúltiplos nomes de campo: password, secret indica que os campos password e secret serão desensibilizados.\nCaractere coringa *: password* indica que todos os campos que contêm o prefixo password serão desensibilizados.\nCaractere coringa *: .*password indica que todos os campos que contêm o sufixo password serão desensibilizados.",
|
||||
"DataMaskingRuleHelpHelpMsg": "Ao conectar ao banco de dados de ativos, é possível aplicar esta regra para desensibilizar os resultados da consulta.",
|
||||
"DataMaskingRuleHelpHelpText": "Ao conectar-se ao ativo do banco de dados, é possível aplicar esta regra para mascarar os resultados da consulta.",
|
||||
"Database": "Banco de dados",
|
||||
"DatabaseCreate": "Criar ativo - Banco de dados",
|
||||
"DatabasePort": "Porta do protocolo do banco de dados",
|
||||
|
|
@ -572,6 +576,7 @@
|
|||
"EsIndex": "'es' fornece o índice padrão: 'jumpserver'. Se você ativar a criação de índices por data, o valor inserido será usado como prefixo do índice.",
|
||||
"EsUrl": "Não pode conter o caractere especial `#`; ex: http://es_user:es_password@es_host:es_port",
|
||||
"Every": "Cada",
|
||||
"Example": "Exemplo de valor",
|
||||
"Exclude": "Não inclui",
|
||||
"ExcludeAccount": "Excluir conta",
|
||||
"ExcludeAsset": "Ativos ignorados",
|
||||
|
|
@ -867,6 +872,7 @@
|
|||
"MoveAssetToNode": "Mover ativos para o nó",
|
||||
"MoveToAsset": "Mover para ativos ",
|
||||
"MsgSubscribe": "Assinatura de mensagem",
|
||||
"MsgTemplate": "Modelo de mensagem",
|
||||
"MyAssets": "Meus ativos",
|
||||
"MyTickets": "Iniciados por Mim",
|
||||
"NUMBER_REQUIRED": "Deve conter números",
|
||||
|
|
@ -1040,6 +1046,7 @@
|
|||
"PrivilegedOnly": "Apenas contas privilegiadas",
|
||||
"PrivilegedTemplate": "Privilégios",
|
||||
"Processing": "Em processamento",
|
||||
"ProcessingMessage": "Tarefa em andamento, por favor, aguarde ⏳",
|
||||
"Product": "Produto",
|
||||
"ProfileSetting": "Configurações de Informações Pessoais",
|
||||
"Project": "Nome do Projeto",
|
||||
|
|
@ -1154,6 +1161,7 @@
|
|||
"ResetSSHKeySuccessMsg": "A tarefa de envio de e-mail foi enviada, o usuário receberá um e-mail de chave de redefinição mais tarde",
|
||||
"ResetSSHKeyWarningMsg": "Você tem certeza que deseja enviar o e-mail para resetar a chave SSH do usuário?",
|
||||
"ResetSecret": " Pode alterar a senha ",
|
||||
"ResetSuccessfully": "Redefinição bem-sucedida.",
|
||||
"ResolveSelected": "Resolver seleção",
|
||||
"Resource": "Recursos",
|
||||
"ResourceType": "Tipo de recurso",
|
||||
|
|
@ -1415,6 +1423,7 @@
|
|||
"TemplateCreate": "Criar modelo",
|
||||
"TemplateHelpText": "Ao selecionar para adicionar um modelo, uma conta que não existe no ativo será criativamente criada e impulsionada",
|
||||
"TemplateManagement": "Lista de Modelos",
|
||||
"TemplateVariablesHelpText": "Você pode escolher um modelo e usar {{ key }} no conteúdo do modelo para ler variáveis incorporadas. Observe que apenas a sintaxe {{ }} é suportada; outras sintaxes não são. Por exemplo {% if title %}",
|
||||
"Templates": "Modelo",
|
||||
"TencentCloud": "Nuvem Tencent",
|
||||
"Terminal": "Configuração do componente",
|
||||
|
|
|
|||
|
|
@ -5,14 +5,14 @@
|
|||
"AWS_Int": "AWS (Международный)",
|
||||
"About": "О программе",
|
||||
"Accept": "Принять",
|
||||
"AccessDistribution": "Распределение посещений",
|
||||
"AccessDistribution": "Распределение доступа",
|
||||
"AccessIP": "Белый список IP",
|
||||
"AccessKey": "Ключ доступа",
|
||||
"Account": "Информация об УЗ",
|
||||
"AccountActivities": "Активность учетной записи",
|
||||
"AccountAndPasswordChangeRank": "Изменение пароля аккаунта по рейтингу",
|
||||
"AccountAutomationOverview": "Обзор автоматизации",
|
||||
"AccountAutomationReport": "Автоматизированный отчет по аккаунтам",
|
||||
"AccountAndPasswordChangeRank": "Рейтинг изменений паролей и учётных записей",
|
||||
"AccountAutomationOverview": "Обзор автоматизации УЗ",
|
||||
"AccountAutomationReport": "Отчет об автоматизации учетных записей",
|
||||
"AccountBackup": "Резервное копирование УЗ",
|
||||
"AccountBackupCreate": "Создать резервную копию УЗ",
|
||||
"AccountBackupDetail": "Подробности резервного копирования УЗ",
|
||||
|
|
@ -21,8 +21,8 @@
|
|||
"AccountBackupUpdate": "Обновить резервную копию УЗ",
|
||||
"AccountChangeSecret": "Изменение пароля учетной записи",
|
||||
"AccountChangeSecretDetail": "Подробности изменения пароля учетной записи",
|
||||
"AccountConnectivityStatusDistribution": "Распределение состояния доступности аккаунтов",
|
||||
"AccountCreationSourceDistribution": "Распределение источников создания аккаунтов",
|
||||
"AccountConnectivityStatusDistribution": "Распределение статусов подключаемости УЗ",
|
||||
"AccountCreationSourceDistribution": "Распределение источников создания УЗ",
|
||||
"AccountData": "Данные учетной записи",
|
||||
"AccountDeleteConfirmMsg": "Удаление учетной записи. Продолжить?",
|
||||
"AccountDeleted": "Удаление учетной записи",
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
"AccountDiscoverTaskUpdate": "Обновить задачу обнаружения учетной записи",
|
||||
"AccountExportTips": "Экспортируемая информация содержит зашифрованные данные учетных записей, что относится к конфиденциальной информации. Формат экспорта — зашифрованный zip-файл (если не установлен пароль шифрования, пожалуйста, настройте его в Персональной информации).",
|
||||
"AccountList": "Учетные записи",
|
||||
"AccountOverview": "Обзор аккаунтов",
|
||||
"AccountOverview": "Обзор учетных записей",
|
||||
"AccountPasswordChangeTrends": "Тенденции изменения паролей аккаунтов",
|
||||
"AccountPolicy": "Политика учетной записи",
|
||||
"AccountPolicyHelpText": "При создании учетных записей, не соответствующих требованиям, например: несоответствующий тип ключа, ограничение уникальности, можно выбрать одну из вышеуказанных стратегий.",
|
||||
|
|
@ -42,11 +42,11 @@
|
|||
"AccountPushList": "Публикация УЗ",
|
||||
"AccountPushTask": "Задача публикации учетной записи",
|
||||
"AccountPushUpdate": "Обновление УЗ для публикации",
|
||||
"AccountReport": "Отчет по аккаунтам",
|
||||
"AccountReport": "Отчет по УЗ",
|
||||
"AccountResult": "Успешное или неудачное изменение секрета УЗ",
|
||||
"AccountSelectHelpText": "В список учетных записей добавляется имя пользователя",
|
||||
"AccountSelectHelpText": "В списке учетных записей отображается имя пользователя",
|
||||
"AccountSessions": "Сессии учетной записи",
|
||||
"AccountStatisticsReport": "Отчет по учетным записяч",
|
||||
"AccountStatisticsReport": "Отчет по учетным записям",
|
||||
"AccountStorage": "Хранилище учетных записей",
|
||||
"AccountSummary": "Сводная информация об УЗ",
|
||||
"AccountTemplate": "Шаблон учетной записи",
|
||||
|
|
@ -129,7 +129,6 @@
|
|||
"Applets": "RemoteApp",
|
||||
"Applicant": "Заявитель",
|
||||
"ApplicationDetail": "Информация о приложении",
|
||||
"Applicationes": "ApplicationHello",
|
||||
"Applications": "Приложения",
|
||||
"ApplyAsset": "Запрос актива",
|
||||
"ApplyFromCMDFilterRule": "Правила фильтрации команд",
|
||||
|
|
@ -153,10 +152,10 @@
|
|||
"AssetACLCreate": "Создать правило подключения активов",
|
||||
"AssetACLDetail": "Подробности правила подключения активов",
|
||||
"AssetACLUpdate": "Обновить правила подключения активов",
|
||||
"AssetACLs": "Связь активов",
|
||||
"AssetACLs": "Правила подключения активов",
|
||||
"AssetAccount": "Учетные записи",
|
||||
"AssetAccountDetail": "Подробности учетной записи",
|
||||
"AssetActivityReport": "Отчет о деятельности активов",
|
||||
"AssetActivityReport": "Отчет по использованию активов",
|
||||
"AssetAddress": "Активы (IP/Имя хоста)",
|
||||
"AssetAmount": "Количество активов",
|
||||
"AssetAndNode": "Активы/Папки",
|
||||
|
|
@ -170,7 +169,7 @@
|
|||
"AssetListHelpMessage": "Слева расположено дерево активов, правый клик позволяет создать, удалить или изменить папки дерева. Управление активами также организовано в виде папок, справа находятся активы, относящиеся к данной папке",
|
||||
"AssetLoginACLHelpMsg": "Подключение к активам можно контролировать, исходя из IP-адреса пользователя и временного интервала, чтобы определить возможность подключения к активу.",
|
||||
"AssetLoginACLHelpText": "Подключение к активам можно контролировать, исходя из IP-адреса пользователя и временного интервала, чтобы определить возможность подключения к активу.",
|
||||
"AssetLoginTrends": "Тенденция входа в активы",
|
||||
"AssetLoginTrends": "Тенденции входа в активы",
|
||||
"AssetName": "Название актива",
|
||||
"AssetOverview": "Обзор активов",
|
||||
"AssetPermission": "Доступ к активам",
|
||||
|
|
@ -181,8 +180,8 @@
|
|||
"AssetPermissionUpdate": "Обновить правила доступа к активам",
|
||||
"AssetPermsAmount": "Количество правил доступа",
|
||||
"AssetProtocolHelpText": "! Протоколы, поддерживаемые активами, ограничены платформой, нажмите кнопку настроек, чтобы просмотреть настройки протоколов. Если требуется обновление, пожалуйста, обновите платформу",
|
||||
"AssetReport": "Отчет об активах",
|
||||
"AssetStatisticsReport": "Отчет по статистике активов",
|
||||
"AssetReport": "Отчет по активам",
|
||||
"AssetStatisticsReport": "Статистика активов",
|
||||
"AssetTree": "Дерево активов",
|
||||
"AssetTypeDistribution": "Распределение типов активов",
|
||||
"Assets": "Активы",
|
||||
|
|
@ -191,7 +190,7 @@
|
|||
"AssetsSelected": " Активов Выбрано",
|
||||
"AssetsTotal": "Всего активов",
|
||||
"AssignedInfo": "Информация об одобрении",
|
||||
"Assignee": "Ответсвенный исполнитель",
|
||||
"Assignee": "Ответственный исполнитель",
|
||||
"Assignees": "Ожидающие исполнители",
|
||||
"AttrName": "Имя атрибута",
|
||||
"AttrValue": "Значение атрибута",
|
||||
|
|
@ -300,10 +299,10 @@
|
|||
"ChangePasswordOverview": "Обзор изменения паролей",
|
||||
"ChangeSecret": "Изменить секрет",
|
||||
"ChangeSecretAccountHelpText": "Для учетных записей в одном активе, если существует связь переключения su, смена пароля не должна выполняться в одной задаче, а должна быть разделена на две задачи для выполнения отдельно.",
|
||||
"ChangeSecretDashboard": "Панель смены пароля аккаунта",
|
||||
"ChangeSecretDashboard": "Панель смены секрета УЗ",
|
||||
"ChangeSecretFailAccounts": "Неудачная смена секрета УЗ",
|
||||
"ChangeSecretParams": "Параметры изменения секрета",
|
||||
"ChangeSecretStatus": "Состояние смены пароля",
|
||||
"ChangeSecretStatus": "Состояние смены секрета",
|
||||
"ChangeSecretTask": "Задача смены секрета УЗ",
|
||||
"ChangeViewHelpText": "Нажмите, чтобы переключиться на другой вид",
|
||||
"Chat": "Чат",
|
||||
|
|
@ -352,7 +351,6 @@
|
|||
"CommandFilterACLHelpMsg": "С помощью фильтрации команд вы можете контролировать возможность отправки команд активам. В зависимости от установленных вами правил некоторые команды могут быть разрешены, а другие запрещены.",
|
||||
"CommandFilterACLHelpText": "С помощью фильтрации команд вы можете контролировать возможность отправки команд активам. В зависимости от установленных вами правил некоторые команды могут быть разрешены, а другие запрещены.",
|
||||
"CommandFilterACLUpdate": "Обновление правила фильтрации команд",
|
||||
"CommandFilterACLs": "Правила фильтрации команд",
|
||||
"CommandFilterRuleContentHelpText": "По одной команде в строке",
|
||||
"CommandFilterRules": "Правила фильтрации команд",
|
||||
"CommandGroup": "Группа команд",
|
||||
|
|
@ -366,7 +364,7 @@
|
|||
"CommandsTotal": "Всего команд",
|
||||
"Comment": "Описание",
|
||||
"CommentHelpText": "Описание будет отображаться при наведении курсора на дереве активов пользователя на странице Luna. Обычные пользователи могут просматривать эти комментарии, поэтому не указывайте конфиденциальную информацию.",
|
||||
"Common": "Универсальный",
|
||||
"Common": "Общий",
|
||||
"CommunityEdition": "Редакция Community",
|
||||
"Component": "Компонент",
|
||||
"ComponentMonitor": "Мониторинг",
|
||||
|
|
@ -390,13 +388,13 @@
|
|||
"ConnectMethodAclDetail": "Детали правила метода подключения",
|
||||
"ConnectWebSocketError": "Соединение с веб-сокетом не удалось",
|
||||
"Connectable": "Возможно подключение",
|
||||
"ConnectedDirectoryServices": "Связанная служба каталога",
|
||||
"ConnectionCount": "Количество соединений",
|
||||
"ConnectedDirectoryServices": "Связанные службы каталога",
|
||||
"ConnectionCount": "Количество подключений",
|
||||
"ConnectionDropped": "Соединение разорвано",
|
||||
"ConnectionToken": "Токен подключения",
|
||||
"ConnectionTokenList": "Токен подключения - это информация для аутентификации, которая используется для совмещения аутентификации и подключения активов. Он поддерживает вход пользователя в активы одним щелчком мыши. В настоящее время поддерживаются следующие компоненты: koko, lion, magnus, razor и т.д.",
|
||||
"Console": "Консоль",
|
||||
"ConsoleDashboard": "Консольная панель управления",
|
||||
"ConsoleDashboard": "Панель управления",
|
||||
"Consult": "Консультация",
|
||||
"ContainAttachment": "Содержит вложение",
|
||||
"Containers": "Контейнер",
|
||||
|
|
@ -449,6 +447,10 @@
|
|||
"DangerCommand": "Опасная команда",
|
||||
"DangerousCommandNum": "Всего опасных команд",
|
||||
"Dashboard": "Панель инструментов",
|
||||
"DataMasking": "Демаскировка данных",
|
||||
"DataMaskingFieldsPatternHelpTip": "Поддержка нескольких имен полей, разделенных запятой, поддержка подстановочных знаков *\nНапример:\nОдно имя поля: password означает, что будет проведено действие по хранению в тайне поля password.\nНесколько имен полей: password, secret означает сохранение в тайне полей password и secret.\nПодстановочный знак *: password* означает, что действие будет применено к полям, содержащим префикс password.\nПодстановочный знак *: .*password означает, что действие будет применено к полям, содержащим суффикс password.",
|
||||
"DataMaskingRuleHelpHelpMsg": "При подключении к базе данных активов результаты запроса могут быть обработаны в соответствии с этим правилом для обеспечения безопасности данных.",
|
||||
"DataMaskingRuleHelpHelpText": "При подключении к базе данных активов можно обезопасить результаты запроса в соответствии с данным правилом.",
|
||||
"Database": "База данных",
|
||||
"DatabaseCreate": "Создать актив - база данных",
|
||||
"DatabasePort": "Порт протокола базы данных",
|
||||
|
|
@ -539,10 +541,10 @@
|
|||
"EditRecipient": "Изменить получателя",
|
||||
"EditSecret": "Изменить секрет",
|
||||
"Edition": "Версия",
|
||||
"Effective": "Вступить в силу",
|
||||
"Effective": "Активно",
|
||||
"Email": "Электронная почта",
|
||||
"EmailContent": "Настройка содержания",
|
||||
"EmailHelpText": "Пожалуйста, нажмите кнопку 'Отправить', чтобы сохранить текущую конфигурацию, а затем нажмите 'Проверить соединение', чтобы убедиться, что информация вступила в силу",
|
||||
"EmailHelpText": "Пожалуйста, нажмите кнопку 'Отправить', чтобы сохранить текущую конфигурацию, а затем нажмите 'Тестовое соединение', чтобы убедиться, чтобы настройки вступили в силу",
|
||||
"EmailTemplate": "Шаблон",
|
||||
"EmailTemplateHelpTip": "Шаблон электронной почты используется для отправки электронных писем и включает префикс темы электронного письма и содержимое электронного письма.",
|
||||
"EmailTest": "Тестовое соединение",
|
||||
|
|
@ -573,8 +575,9 @@
|
|||
"EsIndex": "es предоставляет индекс по умолчанию: jumpserver. Если включено создание индекса по дате, то введенное значение будет использоваться в качестве префикса индекса",
|
||||
"EsUrl": "Не может содержать специальные символы `#`; например: http://es_user:es_password@es_host:es_port",
|
||||
"Every": "Каждый",
|
||||
"Example": "Пример",
|
||||
"Exclude": "Не содержит",
|
||||
"ExcludeAccount": "Исключенные аккаунты",
|
||||
"ExcludeAccount": "Исключить учетную запись",
|
||||
"ExcludeAsset": "Пропущенные активы",
|
||||
"ExcludeSymbol": "Исключить символ",
|
||||
"ExecCloudSyncErrorMsg": "Выполнить",
|
||||
|
|
@ -673,7 +676,7 @@
|
|||
"HistoryDate": "Дата",
|
||||
"HistoryPassword": "История паролей",
|
||||
"HistoryRecord": "История записей",
|
||||
"Host": "Хост.",
|
||||
"Host": "Хост",
|
||||
"HostCreate": "Создать актив - хост",
|
||||
"HostDeployment": "Развертывание машины публикации",
|
||||
"HostUpdate": "Обновить актив - хост",
|
||||
|
|
@ -689,7 +692,7 @@
|
|||
"IPNetworkSegment": "Диапазон IP",
|
||||
"IPType": "Тип IP",
|
||||
"Id": "ID",
|
||||
"IdP": "Поставщик идентификации",
|
||||
"IdP": "Поставщик аутентификации",
|
||||
"IdeaContent": "Я хочу, чтобы ты выступил в роли терминала Linux. Я буду вводить команды, а ты будешь отвечать тем, что должен отображать терминал. Я прошу отвечать только в одном уникальном блоке кода, без дополнительных комментариев. Когда мне нужно будет что-то тебе сказать, я помещу текст в фигурные скобки{замечание текста}.",
|
||||
"IdeaTitle": "🌱 терминал Linux",
|
||||
"IdentityDomain": "Домен идентификации",
|
||||
|
|
@ -782,7 +785,7 @@
|
|||
"LicenseForTest": "Лицензия на тестирование, данная лицензия предназначена только для тестирования (poc) и демонстрации",
|
||||
"LicenseReachedAssetAmountLimit": "Количество активов превышает лимит, установленный лицензией",
|
||||
"LicenseWillBe": "Лицензия истекает через",
|
||||
"LinkedDomains": "Связанный домен",
|
||||
"LinkedDomains": "Связанные домены",
|
||||
"ListPreference": "Настройка списка",
|
||||
"LoadTemplate": "Загрузить из шаблона",
|
||||
"Loading": "Загрузка",
|
||||
|
|
@ -798,7 +801,7 @@
|
|||
"LoginConfirm": "Проверка входа",
|
||||
"LoginConfirmUser": "Подтверждает вход",
|
||||
"LoginCount": "Количество входов",
|
||||
"LoginCtyDistribution": "Распределение городов входа",
|
||||
"LoginCtyDistribution": "Вход по городам",
|
||||
"LoginDate": "Дата входа",
|
||||
"LoginFailed": "Вход не удался",
|
||||
"LoginFrom": "Источник входа",
|
||||
|
|
@ -858,7 +861,7 @@
|
|||
"Min": "Мин.",
|
||||
"MinNumber30": "Число должно быть больше или равно 30",
|
||||
"Modify": "Изменить",
|
||||
"ModifyTheTargetUserTopTank": "Изменение рейтинга целевых пользователей",
|
||||
"ModifyTheTargetUserTopTank": "Топ пользователей с измененными паролями",
|
||||
"Module": "Модуль",
|
||||
"Monday": "Понедельник",
|
||||
"Monitor": "Мониторинг",
|
||||
|
|
@ -868,6 +871,7 @@
|
|||
"MoveAssetToNode": "Переместить актив в папку",
|
||||
"MoveToAsset": "Переместить в активы",
|
||||
"MsgSubscribe": "Подписка",
|
||||
"MsgTemplate": "Шаблон сообщения",
|
||||
"MyAssets": "Мои активы",
|
||||
"MyTickets": "Мои запросы",
|
||||
"NUMBER_REQUIRED": "Должен содержать цифры",
|
||||
|
|
@ -875,7 +879,7 @@
|
|||
"NavHelp": "Ссылки на навигационную панель",
|
||||
"Navigation": "Навигация",
|
||||
"NeedReLogin": "Необходимо войти повторно",
|
||||
"NeedUpdatePassword": "Необходимость изменения пароля",
|
||||
"NeedUpdatePassword": "Требуется смена пароля",
|
||||
"NeverLogin": "Никогда не входил",
|
||||
"New": "Создать",
|
||||
"NewAccountsFound": "Найдены новые УЗ",
|
||||
|
|
@ -912,7 +916,7 @@
|
|||
"NonRunnableAssets": "Неработающие активы",
|
||||
"None": "Нет",
|
||||
"NormalLoad": "Нормальная",
|
||||
"NotEnableMfa": "MFA не активирована",
|
||||
"NotEnableMfa": "МФА не активирована",
|
||||
"NotEqual": "Не равно",
|
||||
"NotSet": "Не установлено",
|
||||
"NotSpecialEmoji": "Ввод специальных эмодзи не допускается",
|
||||
|
|
@ -950,10 +954,10 @@
|
|||
"OpenStatus": "На одобрении",
|
||||
"OpenTicket": "Создать заявку",
|
||||
"OperateLog": "Журналы операций",
|
||||
"OperatingSystemDistributionOfLoginAssets": "Распределение операционных систем для входа в активы",
|
||||
"OperatingSystemDistributionOfLoginAssets": "Распределение ОС для входа в активы",
|
||||
"OperationLogNum": "Журналы операций",
|
||||
"Operator": "Операционный пользователь",
|
||||
"OperatorGeographicDistribution": "Географическое распределение активных пользователей",
|
||||
"Operator": "Пользователь‑исполнитель",
|
||||
"OperatorGeographicDistribution": "Распределение по регионам пользователей‑исполнителей",
|
||||
"Options": "Параметры",
|
||||
"OracleDBNameHelpText": "Введите SID или имя службы (Service Name) базы данных Oracle",
|
||||
"OrgAdmin": "Администратор организации",
|
||||
|
|
@ -976,13 +980,13 @@
|
|||
"Overview": "Обзор",
|
||||
"PageNext": "Дальше",
|
||||
"PagePrev": "Назад",
|
||||
"PamDashboard": "Панель привилегированных аккаунтов",
|
||||
"PamDashboard": "Панель PAM",
|
||||
"Params": "Параметры",
|
||||
"ParamsHelpText": "Настройки параметров пароля в настоящее время действуют только для активов типа хост.",
|
||||
"PassKey": "Ключ доступа",
|
||||
"Passkey": "Passkey",
|
||||
"PasskeyAddDisableInfo": "Ваш источник аутентификации - {source}, добавление Passkey не поддерживается",
|
||||
"PasskeySummary": "Безпарольная биометрическая аутентификация",
|
||||
"PasskeySummary": "Аутентификация с биометрией без пароля",
|
||||
"Passphrase": "Пароль ключа",
|
||||
"Password": "Пароль",
|
||||
"PasswordAndSSHKey": "Пароль и SSH-ключ",
|
||||
|
|
@ -1024,7 +1028,7 @@
|
|||
"PleaseAgreeToTheTerms": "Пожалуйста, согласитесь с условиями",
|
||||
"PleaseEnterReason": "Введите причину",
|
||||
"PleaseSelect": "Пожалуйста, выберите ",
|
||||
"PleaseSelectTheDataYouWantToCheck": "Пожалуйста, выберите данные для отметки",
|
||||
"PleaseSelectTheDataYouWantToCheck": "Пожалуйста, выберите данные, которые нужно отметить",
|
||||
"PolicyName": "Название политики",
|
||||
"Port": "Порт",
|
||||
"Ports": "Портов",
|
||||
|
|
@ -1041,6 +1045,7 @@
|
|||
"PrivilegedOnly": "Только привилегированные",
|
||||
"PrivilegedTemplate": "Привилегированные",
|
||||
"Processing": "В процессе",
|
||||
"ProcessingMessage": "Задача в процессе, пожалуйста, подождите ⏳",
|
||||
"Product": "Продукт",
|
||||
"ProfileSetting": "Данные профиля",
|
||||
"Project": "Название проекта",
|
||||
|
|
@ -1073,7 +1078,7 @@
|
|||
"QuickJob": "Быстрые задания",
|
||||
"QuickUpdate": "Быстрое обновление",
|
||||
"Radius": "Radius",
|
||||
"RankByNumberOfAssetAccounts": "Рейтинг количества аккаунтов активов",
|
||||
"RankByNumberOfAssetAccounts": "Рейтинг активов по количеству УЗ",
|
||||
"Ranking": "Рейтинг",
|
||||
"RazorNotSupport": "Сессия RDP-клиента, мониторинг пока не поддерживается",
|
||||
"ReLogin": "Войти снова",
|
||||
|
|
@ -1113,7 +1118,7 @@
|
|||
"RelevantSystemUser": "Системный пользователь",
|
||||
"RemoteAddr": "Удалённый адрес",
|
||||
"RemoteAssetFoundAccountDeleteMsg": "Удалить аккаунты, обнаруженные с удалённых активов",
|
||||
"RemoteLoginProtocolUsageDistribution": "Распределение использования протоколов удаленного входа",
|
||||
"RemoteLoginProtocolUsageDistribution": "Распределение протоколов входа в активы",
|
||||
"Remove": "Удалить",
|
||||
"RemoveAssetFromNode": "Удалить активы из папки",
|
||||
"RemoveSelected": "Удалить выбранное",
|
||||
|
|
@ -1132,7 +1137,7 @@
|
|||
"Reply": "Ответ",
|
||||
"Report": "Отчет",
|
||||
"ReportType": "Тип отчета",
|
||||
"RequestAssetPerm": "Запросить доступ к автивам",
|
||||
"RequestAssetPerm": "Запросить доступ к активам",
|
||||
"RequestPerm": "Запрос доступа",
|
||||
"RequestTickets": "Новая заявка",
|
||||
"RequiredAssetOrNode": "Пожалуйста, выберите хотя бы один актив или папку",
|
||||
|
|
@ -1155,6 +1160,7 @@
|
|||
"ResetSSHKeySuccessMsg": "Задача отправки электронных писем принята, пользователи вскоре получат письма со ссылкой для сброса",
|
||||
"ResetSSHKeyWarningMsg": "Вы уверены, что хотите отправить письмо для сброса SSH-ключа пользователю?",
|
||||
"ResetSecret": "Секрет можно изменить",
|
||||
"ResetSuccessfully": "Сброс выполнен успешно",
|
||||
"ResolveSelected": "Решение установлено",
|
||||
"Resource": "Ресурсы",
|
||||
"ResourceType": "Тип ресурса",
|
||||
|
|
@ -1213,7 +1219,7 @@
|
|||
"SSHKeyOfProfileSSHUpdatePage": "Вы можете нажать кнопку ниже для сброса и загрузки ключа, или скопировать свой SSH-ключ и отправить его.",
|
||||
"SSHPort": "SSH-порт",
|
||||
"SSHSecretKey": "SSH ключ",
|
||||
"SSO": "Единственный вход",
|
||||
"SSO": "Единый вход (SSO)",
|
||||
"SafeCommand": "Безопасная команда",
|
||||
"SameAccount": "Своя учетная запись",
|
||||
"SameAccountTip": "Учетная запись с тем же именем пользователя, что и у авторизованных пользователей",
|
||||
|
|
@ -1235,7 +1241,7 @@
|
|||
"SecretKey": "Ключ",
|
||||
"SecretKeyStrategy": "Парольная политика",
|
||||
"SecretReset": "Сброс секрета",
|
||||
"SecretType": "Тип пароля",
|
||||
"SecretType": "Тип секрета",
|
||||
"Secure": "Безопасность",
|
||||
"Security": "Настройки безопасности",
|
||||
"Select": "Выберите",
|
||||
|
|
@ -1402,7 +1408,7 @@
|
|||
"Task": "Задача",
|
||||
"TaskDetail": "Сведения о задаче",
|
||||
"TaskDone": "Задача завершена",
|
||||
"TaskExecutionTrends": "Тренд выполнения задач",
|
||||
"TaskExecutionTrends": "Тенденции выполнения задач",
|
||||
"TaskID": "ID задачи",
|
||||
"TaskList": "Задачи",
|
||||
"TaskMonitor": "Мониторинг",
|
||||
|
|
@ -1416,6 +1422,7 @@
|
|||
"TemplateCreate": "Создать шаблон",
|
||||
"TemplateHelpText": "При выборе шаблона для добавления учетные записи, которые не существуют в активе, будут автоматически созданы и опубликованы",
|
||||
"TemplateManagement": "Шаблоны",
|
||||
"TemplateVariablesHelpText": "Вы можете выбрать шаблон и использовать {{ key }} в его содержимом для обращения ко встроенным переменным. Поддерживается только синтаксис {{ }}, другие виды синтаксиса не поддерживаются. Например, {% if title %} — не поддерживается",
|
||||
"Templates": "Шаблоны",
|
||||
"TencentCloud": "Tencent Cloud",
|
||||
"Terminal": "Компоненты",
|
||||
|
|
@ -1436,7 +1443,7 @@
|
|||
"TestPortErrorMsg": "Ошибка порта, пожалуйста, введите заново",
|
||||
"TestSelected": "Проверить выбранное",
|
||||
"TestSuccessMsg": "Тест пройден успешно",
|
||||
"ThirdPartyMfaHelpText": "Способы входа через третьих лиц включают: OpenID, CAS, SAML2, OAuth2, Корпоративный WeChat, Feishu, Lark, Slack, DingTalk.",
|
||||
"ThirdPartyMfaHelpText": "Поддерживаются сторонние сервисы: OpenID, CAS, SAML2, OAuth2, WeCom, Feishu, Lark, Slack, DingTalk",
|
||||
"Thursday": "Четверг",
|
||||
"Ticket": "Система заявок",
|
||||
"TicketDetail": "Сведения о заяве",
|
||||
|
|
@ -1450,7 +1457,7 @@
|
|||
"TimeDelta": "Продолжительность",
|
||||
"TimeExpression": "Выражение времени",
|
||||
"Timeout": "Таймаут",
|
||||
"Timeout(s)": "Превышение времени (сек)",
|
||||
"Timeout(s)": "Время ожидания (сек)",
|
||||
"TimeoutHelpText": "Если это значение равно -1, таймаут не указан.",
|
||||
"Timer": "Таймер",
|
||||
"TimerExecution": "Таймер выполнения",
|
||||
|
|
@ -1459,7 +1466,7 @@
|
|||
"Today": "Сегодня",
|
||||
"TodayFailedConnections": "Сбой подключений сегодня",
|
||||
"Token": "Токен",
|
||||
"TopRankOfOperateUsers": "Рейтинг операционных пользователей",
|
||||
"TopRankOfOperateUsers": "Топ пользователей выполнявших смену пароля",
|
||||
"Total": "Всего",
|
||||
"TotalAccounts": "Всего учетных записей",
|
||||
"TotalJobFailed": "Неудачное выполнение",
|
||||
|
|
@ -1505,7 +1512,7 @@
|
|||
"UpdateNodeAssetHardwareInfo": "Обновление информации об оборудовании активов в папке",
|
||||
"UpdatePlatformHelpText": "Актив будет обновлен только в том случае, если исходный тип платформы совпадает с выбранным типом платформы. Если типы платформы до и после обновления различаются, он не будет обновлен.",
|
||||
"UpdateSSHKey": "Изменить открытый ключ ssh",
|
||||
"UpdateSelected": "Редактировать выбранное",
|
||||
"UpdateSelected": "Обновить выбранные",
|
||||
"UpdateSuccessMsg": "Успешно обновлено!",
|
||||
"Updated": "Обновлено",
|
||||
"UpgradeEnterpriseEdition": "Обновить до корпоративной версии",
|
||||
|
|
@ -1525,7 +1532,7 @@
|
|||
"User": "Пользователь",
|
||||
"UserACLss": "Правила входа пользователей",
|
||||
"UserAssetActivity": "Активность пользователя/актива",
|
||||
"UserChangePasswordReport": "Отчет о смене пароля пользователя",
|
||||
"UserChangePasswordReport": "Отчет о смене пароля пользователями",
|
||||
"UserCreate": "Создать пользователя",
|
||||
"UserData": "Данные пользователя",
|
||||
"UserDetail": "Информация о пользователе",
|
||||
|
|
@ -1546,12 +1553,12 @@
|
|||
"UserLoginACLs": "Управление входом пользователей",
|
||||
"UserLoginLimit": "Ограничение для пользователей",
|
||||
"UserLoginReport": "Отчет о входах пользователей",
|
||||
"UserLoginTrend": "Тренд входа пользователей",
|
||||
"UserLoginTrends": "Тренды входа пользователей",
|
||||
"UserModificationTrends": "Тенденции изменений пользователями",
|
||||
"UserLoginTrend": "Тенденции входа по учётным записям",
|
||||
"UserLoginTrends": "Тенденции входа пользователей",
|
||||
"UserModificationTrends": "Тенденции смены пароля пользователями",
|
||||
"UserOverview": "Обзор пользователей",
|
||||
"UserPasswordChangeLog": "Журнал смены пароля пользователя",
|
||||
"UserReport": "Отчет о пользователях",
|
||||
"UserReport": "Отчет по пользователям",
|
||||
"UserSession": "Сессии к активам",
|
||||
"UserSwitchFrom": "Переключение su с",
|
||||
"UserUpdate": "Обновить пользователя",
|
||||
|
|
@ -1583,7 +1590,7 @@
|
|||
"VirtualApp": "Виртуальное приложение",
|
||||
"VirtualAppDetail": "Сведения о виртуальном приложении",
|
||||
"VirtualApps": "Виртуальные приложения",
|
||||
"VisitTimeDistribution": "Посещение во временные интервалы",
|
||||
"VisitTimeDistribution": "Распределение доступа по периодам",
|
||||
"Visits": "Посещения",
|
||||
"Volcengine": "Volcengine",
|
||||
"Warning": "Предупреждение",
|
||||
|
|
@ -1603,7 +1610,7 @@
|
|||
"Week": "Неделя",
|
||||
"WeekAdd": "Новое за неделю",
|
||||
"WeekOrTime": "День/Время",
|
||||
"WeeklyGrowthTrend": "Тренды нового на этой неделе",
|
||||
"WeeklyGrowthTrend": "Тенденция новых объектов за эту неделю",
|
||||
"WildcardsAllowed": "Допустимые подстановочные знаки",
|
||||
"WindowsPushHelpText": "Отправка ключа для активов Windows пока не поддерживается",
|
||||
"WordSep": " ",
|
||||
|
|
@ -1630,5 +1637,5 @@
|
|||
"removeWarningMsg": "Вы уверены, что хотите удалить",
|
||||
"setVariable": "Задать переменную",
|
||||
"userId": "ID пользователя",
|
||||
"userName": "Имя пользовател"
|
||||
"userName": "Имя пользователя"
|
||||
}
|
||||
|
|
@ -447,6 +447,10 @@
|
|||
"DangerCommand": "Lệnh nguy hiểm",
|
||||
"DangerousCommandNum": "Số lệnh nguy hiểm",
|
||||
"Dashboard": "Bảng điều khiển",
|
||||
"DataMasking": "Dữ liệu ẩn danh",
|
||||
"DataMaskingFieldsPatternHelpTip": "Hỗ trợ nhiều tên trường, phân tách bằng dấu phẩy, hỗ trợ ký tự đại diện *\nVí dụ:\nTên trường đơn: password biểu thị chỉ làm mờ trường password\nNhiều tên trường: password,secret biểu thị làm mờ cả trường password và secret\nKý tự đại diện *: password* biểu thị làm mờ các trường có tiền tố là password\nKý tự đại diện *: .*password biểu thị làm mờ các trường có hậu tố là password",
|
||||
"DataMaskingRuleHelpHelpMsg": "Khi kết nối với cơ sở dữ liệu tài sản, có thể áp dụng quy tắc này để làm mờ kết quả truy vấn.",
|
||||
"DataMaskingRuleHelpHelpText": "Khi kết nối tài sản cơ sở dữ liệu, có thể tiến hành làm mờ kết quả truy vấn theo quy tắc này.",
|
||||
"Database": "Cơ sở dữ liệu",
|
||||
"DatabaseCreate": "Tạo tài sản-Cơ sở dữ liệu",
|
||||
"DatabasePort": "cổng giao thức cơ sở dữ liệu",
|
||||
|
|
@ -571,6 +575,7 @@
|
|||
"EsIndex": "Cung cấp chỉ mục mặc định: jumpserver. Nếu kích hoạt tạo chỉ mục theo ngày, thì giá trị nhập vào sẽ được sử dụng như tiền tố chỉ mục",
|
||||
"EsUrl": "Không được chứa ký tự đặc biệt `#`; ví dụ: http://es_user:es_password@es_host:es_port",
|
||||
"Every": "Mỗi",
|
||||
"Example": "Giá trị mẫu",
|
||||
"Exclude": "Không chứa",
|
||||
"ExcludeAccount": "Loại trừ tài khoản",
|
||||
"ExcludeAsset": "Tài sản đã bỏ qua",
|
||||
|
|
@ -866,6 +871,7 @@
|
|||
"MoveAssetToNode": "Di chuyển tài sản đến nút",
|
||||
"MoveToAsset": "Di chuyển đến tài sản",
|
||||
"MsgSubscribe": "Đăng ký tin nhắn",
|
||||
"MsgTemplate": "Mẫu tin nhắn",
|
||||
"MyAssets": "Tài sản của tôi",
|
||||
"MyTickets": "Những gì tôi đã khởi xướng",
|
||||
"NUMBER_REQUIRED": "Phải chứa chữ số",
|
||||
|
|
@ -1039,6 +1045,7 @@
|
|||
"PrivilegedOnly": "Chỉ tài khoản đặc quyền",
|
||||
"PrivilegedTemplate": "Đặc quyền",
|
||||
"Processing": "Đang xử lý",
|
||||
"ProcessingMessage": "Nhiệm vụ đang tiến hành, xin vui lòng chờ 🍃.",
|
||||
"Product": "Sản phẩm",
|
||||
"ProfileSetting": "Cài đặt thông tin cá nhân",
|
||||
"Project": "Tên dự án",
|
||||
|
|
@ -1153,6 +1160,7 @@
|
|||
"ResetSSHKeySuccessMsg": "Gửi email nhiệm vụ đã được gửi, người dùng sẽ nhận được email reset khóa sau.",
|
||||
"ResetSSHKeyWarningMsg": "Bạn có chắc chắn muốn gửi email đặt lại SSH Key cho người dùng không?",
|
||||
"ResetSecret": "Có thể chỉnh sửa mật khẩu",
|
||||
"ResetSuccessfully": "Đặt lại thành công",
|
||||
"ResolveSelected": "Giải quyết đã chọn",
|
||||
"Resource": "Tài nguyên",
|
||||
"ResourceType": "Loại tài nguyên",
|
||||
|
|
@ -1414,6 +1422,7 @@
|
|||
"TemplateCreate": "Tạo mẫu",
|
||||
"TemplateHelpText": "Khi chọn mẫu thêm, tài khoản không tồn tại dưới tài sản sẽ tự động được tạo và gửi thông báo",
|
||||
"TemplateManagement": "Quản lý mẫu",
|
||||
"TemplateVariablesHelpText": "Bạn có thể chọn một mẫu để sử dụng {{ key }} đọc các biến tích hợp sẵn, lưu ý: chỉ hỗ trợ cú pháp {{ }}, các cú pháp khác không được hỗ trợ. Ví dụ {% if title %}",
|
||||
"Templates": "Mẫu",
|
||||
"TencentCloud": "Tencent Cloud",
|
||||
"Terminal": "Cài đặt thành phần",
|
||||
|
|
|
|||
|
|
@ -447,6 +447,10 @@
|
|||
"DangerCommand": "危险命令",
|
||||
"DangerousCommandNum": "危险命令数",
|
||||
"Dashboard": "仪表盘",
|
||||
"DataMasking": "数据脱敏",
|
||||
"DataMaskingFieldsPatternHelpTip": "支持多个字段名,逗号分隔,支持通配符*\n 例如: \n单字段名: password 表示只脱敏 password 字段\n多个字段名: password,secret 表示脱敏 password 和 secret 字段\n通配符*: password* 表示脱敏字段名中包含 password 前缀的字段\n通配符*: .*password 表示脱敏字段名中包含 password 后缀的字段\n",
|
||||
"DataMaskingRuleHelpHelpMsg": "连接数据库资产时,可以根据此规则对查询结果进行脱敏",
|
||||
"DataMaskingRuleHelpHelpText": "连接数据库资产时,可以根据此规则对查询结果进行脱敏",
|
||||
"Database": "数据库",
|
||||
"DatabaseCreate": "创建资产-数据库",
|
||||
"DatabasePort": "数据库协议端口",
|
||||
|
|
@ -571,10 +575,11 @@
|
|||
"EsIndex": "es 提供默认 index:jumpserver。如果开启按日期建立索引,那么输入的值会作为索引前缀",
|
||||
"EsUrl": "不能包含特殊字符 `#`;eg: http://es_user:es_password@es_host:es_port",
|
||||
"Every": "每",
|
||||
"Example": "示例值",
|
||||
"Exclude": "不包含",
|
||||
"ExcludeAccount": "排除账号",
|
||||
"ExcludeAsset": "跳过的资产",
|
||||
"ExcludeSymbol": "排除字符",
|
||||
"ExcludeAccount": "排除账号",
|
||||
"ExecCloudSyncErrorMsg": "云账号配置不完整,请更新后重试",
|
||||
"Execute": "执行",
|
||||
"ExecuteAfterSaving": "保存后执行",
|
||||
|
|
@ -866,6 +871,7 @@
|
|||
"MoveAssetToNode": "移动资产到节点",
|
||||
"MoveToAsset": "移动到资产",
|
||||
"MsgSubscribe": "消息订阅",
|
||||
"MsgTemplate": "消息模板",
|
||||
"MyAssets": "我的资产",
|
||||
"MyTickets": "我发起的",
|
||||
"NUMBER_REQUIRED": "必须包含数字",
|
||||
|
|
@ -1039,6 +1045,7 @@
|
|||
"PrivilegedOnly": "仅特权账号",
|
||||
"PrivilegedTemplate": "特权的",
|
||||
"Processing": "处理中",
|
||||
"ProcessingMessage": "任务进行中,请稍候 ⏳",
|
||||
"Product": "产品",
|
||||
"ProfileSetting": "个人信息设置",
|
||||
"Project": "项目名",
|
||||
|
|
@ -1153,6 +1160,7 @@
|
|||
"ResetSSHKeySuccessMsg": "发送邮件任务已提交, 用户稍后会收到重置密钥邮件",
|
||||
"ResetSSHKeyWarningMsg": "你确定要发送重置用户的SSH Key的邮件吗?",
|
||||
"ResetSecret": "可改密",
|
||||
"ResetSuccessfully": "重置成功",
|
||||
"ResolveSelected": "解决所选",
|
||||
"Resource": "资源",
|
||||
"ResourceType": "资源类型",
|
||||
|
|
@ -1351,9 +1359,9 @@
|
|||
"SuperAdmin": "超级管理员",
|
||||
"SuperOrgAdmin": "超级管理员+组织管理员",
|
||||
"Support": "支持",
|
||||
"SupportedTypes": "支持的类型",
|
||||
"SupportedProtocol": "支持的协议",
|
||||
"SupportedProtocolHelpText": "设置资产支持的协议,点击设置按钮可以为协议修改自定义配置,如 SFTP 目录,RDP AD 域等",
|
||||
"SupportedTypes": "支持的类型",
|
||||
"Sync": "同步",
|
||||
"SyncAction": "同步动作",
|
||||
"SyncDelete": "同步删除",
|
||||
|
|
@ -1414,6 +1422,7 @@
|
|||
"TemplateCreate": "创建模版",
|
||||
"TemplateHelpText": "选择模版添加时,会自动创建资产下不存在的账号并推送",
|
||||
"TemplateManagement": "模版管理",
|
||||
"TemplateVariablesHelpText": "您可以选择一个模板在模板内容中使用 {{ key }} 读取内置变量,注意:只支持 {{ }} 语法,其他语法不支持。例如 {% if title %}",
|
||||
"Templates": "模板",
|
||||
"TencentCloud": "腾讯云",
|
||||
"Terminal": "组件设置",
|
||||
|
|
@ -1527,12 +1536,12 @@
|
|||
"UserCreate": "创建用户",
|
||||
"UserData": "用户数据",
|
||||
"UserDetail": "用户详情",
|
||||
"UserGroup": "用户组",
|
||||
"UserGroupCreate": "创建用户组",
|
||||
"UserGroupDetail": "用户组详情",
|
||||
"UserGroupList": "用户组",
|
||||
"UserGroupUpdate": "更新用户组",
|
||||
"UserGroups": "用户组",
|
||||
"UserGroup": "用户组",
|
||||
"UserList": "用户列表",
|
||||
"UserLogin": "用户登录",
|
||||
"UserLoginACL": "用户登录控制",
|
||||
|
|
@ -1620,6 +1629,7 @@
|
|||
"assetId": "资产 ID",
|
||||
"assetName": "资产名称",
|
||||
"currentTime": "当前时间",
|
||||
"description": "暂无数据",
|
||||
"disallowSelfUpdateFields": "不允许自己修改当前字段",
|
||||
"forceEnableMFAHelpText": "如果强制启用,用户无法自行禁用",
|
||||
"isConsoleCanUse": "管理页面是否可用",
|
||||
|
|
@ -1627,10 +1637,5 @@
|
|||
"removeWarningMsg": "你确定要移除",
|
||||
"setVariable": "设置参数",
|
||||
"userId": "用户ID",
|
||||
"userName": "用户名",
|
||||
"description": "暂无数据",
|
||||
"MsgTemplate": "消息模板",
|
||||
"Example": "示例值",
|
||||
"TemplateVariablesHelpText": "您可以选择一个模板在模板内容中使用 {{ key }} 读取内置变量,注意:只支持 {{ }} 语法,其他语法不支持。例如 {% if title %}",
|
||||
"ResetSuccessfully": "重置成功"
|
||||
}
|
||||
"userName": "用户名"
|
||||
}
|
||||
|
|
@ -452,6 +452,10 @@
|
|||
"DangerousCommandNum": "危險命令數",
|
||||
"Dashboard": "儀錶盤",
|
||||
"DataLastUsed": "最後使用日期",
|
||||
"DataMasking": "數據脫敏",
|
||||
"DataMaskingFieldsPatternHelpTip": "支持多個欄位名稱,以逗號分隔,並支持通配符*\n例如:\n單欄位名稱:password 表示僅脫敏 password 欄位\n多個欄位名稱:password,secret 表示脫敏 password 和 secret 欄位\n通配符*:password* 表示脫敏欄位名稱中包含 password 前綴的欄位\n通配符*:.*password 表示脫敏欄位名稱中包含 password 後綴的欄位",
|
||||
"DataMaskingRuleHelpHelpMsg": "連接資料庫資產時,可以根據此規則對查詢結果進行脫敏<–SEP–>任務進行中,請稍候 ⏳",
|
||||
"DataMaskingRuleHelpHelpText": "連接資料庫資產時,可以根據此規則對查詢結果進行脫敏。",
|
||||
"Database": "資料庫",
|
||||
"DatabaseCreate": "創建資產-資料庫",
|
||||
"DatabasePort": "資料庫協議埠",
|
||||
|
|
@ -576,6 +580,7 @@
|
|||
"EsIndex": "es 提供預設 index:jumpserver。如果開啟按日期建立索引,那麼輸入的值會作為索引前綴",
|
||||
"EsUrl": "不能包含特殊字符 `#`;eg: http://es_user:es_password@es_host:es_port",
|
||||
"Every": "每",
|
||||
"Example": "示例值",
|
||||
"Exclude": "不包含",
|
||||
"ExcludeAccount": "排除帳號",
|
||||
"ExcludeAsset": "跳過的資產",
|
||||
|
|
@ -871,6 +876,7 @@
|
|||
"MoveAssetToNode": "移動資產到節點",
|
||||
"MoveToAsset": "移動到資產",
|
||||
"MsgSubscribe": "消息訂閱",
|
||||
"MsgTemplate": "消息模板",
|
||||
"MyAssets": "我的資產",
|
||||
"MyTickets": "我發起的",
|
||||
"NUMBER_REQUIRED": "須包含數字",
|
||||
|
|
@ -1044,6 +1050,7 @@
|
|||
"PrivilegedOnly": "僅特權帳號",
|
||||
"PrivilegedTemplate": "特權的",
|
||||
"Processing": "處理中",
|
||||
"ProcessingMessage": "任務進行中,請稍候 ⏳\n\n支持多個字段名,逗號分隔,支持通配符*\n例如: \n單字段名: password 表示僅脫敏 password 字段 \n多個字段名: password,secret 表示脫敏 password 與 secret 字段 \n通配符*: password* 表示脫敏字段名中包含 password 前綴的字段 \n通配符*: .*password 表示脫敏字段名中包含 password 後綴的字段",
|
||||
"Product": "產品",
|
||||
"ProfileSetting": "個人資訊設置",
|
||||
"Project": "項目名",
|
||||
|
|
@ -1158,6 +1165,7 @@
|
|||
"ResetSSHKeySuccessMsg": "發送郵件任務已提交,用戶稍後會收到重置密鑰郵件",
|
||||
"ResetSSHKeyWarningMsg": "你確定要傳送重置用戶的SSH Key的郵件嗎?",
|
||||
"ResetSecret": "可更改密碼",
|
||||
"ResetSuccessfully": "重置成功",
|
||||
"ResolveSelected": "解決選定",
|
||||
"Resource": "資源",
|
||||
"ResourceType": "資源類型",
|
||||
|
|
@ -1419,6 +1427,7 @@
|
|||
"TemplateCreate": "創建模板",
|
||||
"TemplateHelpText": "選擇模板添加時,會自動創建資產下不存在的帳號並推送",
|
||||
"TemplateManagement": "模版列表",
|
||||
"TemplateVariablesHelpText": "您可以選擇一個模板,在模板內容中使用 {{ key }} 來讀取內置變數,注意:只支持 {{ }} 語法,其他語法不支持。例如 {% if title %}",
|
||||
"Templates": "模板列表",
|
||||
"TencentCloud": "騰訊雲",
|
||||
"Terminal": "組件設置",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"ActionPerm": "Разрешения на действия",
|
||||
"Admin": "Администратор",
|
||||
"AutoFit": "Автоподбор",
|
||||
"AutoPasteOnClick": "Нажмите на поле ввода, чтобы автоматически вставить содержимое буфера обмена (необходимо включить HTTPS и разрешения браузера).",
|
||||
"AutoPasteOnClick": "Щёлкните по полю ввода для вставки из буфера обмена (требуется HTTPS и разрешение браузера)",
|
||||
"AvailableShortcutKey": "Доступные горячие клавиши",
|
||||
"Back": "Назад",
|
||||
"Cancel": "Отмена",
|
||||
|
|
@ -11,21 +11,21 @@
|
|||
"Close": "Закрыть",
|
||||
"ConfirmBtn": "Подтвердить",
|
||||
"Connecting": "Подключение",
|
||||
"CopyLink": "Скопировать ссылку и код подтверждения",
|
||||
"CopyLink": "Копировать ссылку и код",
|
||||
"CopyShareURLSuccess": "URL общего доступа успешно скопирован",
|
||||
"CreateLink": "Создать ссылку",
|
||||
"CreateLink": "Создать ссылку для общего доступа",
|
||||
"CreateSuccess": "Успешно создано",
|
||||
"Display": "Показать",
|
||||
"Enable": "Активировать",
|
||||
"Enable": "Включить",
|
||||
"ErrTitle": "Ошибка подключения",
|
||||
"ExpiredTime": "Срок действия",
|
||||
"FileAddUploadingList": "Добавить файл в список загрузки",
|
||||
"FileAddUploadingList": "Файл добавлен в список загрузки",
|
||||
"FileDownloadDenied": "Нет прав для загрузки файлов",
|
||||
"FileManagement": "Управление файлами",
|
||||
"FileUploadStart": "Начало загрузки файла",
|
||||
"FileUploadingWarning": "Файлы загружаются, операции запрещены",
|
||||
"FileUploadStart": "Загрузка файла началась",
|
||||
"FileUploadingWarning": "Идет загрузка файла, операции недоступны",
|
||||
"Files": "Управление файлами",
|
||||
"General": "Универсальный",
|
||||
"General": "Основной",
|
||||
"GetShareUser": "Введите имя пользователя",
|
||||
"GuaErrClientUnauthorized": "Ошибка авторизации: неверное имя пользователя или пароль, вход не выполнен",
|
||||
"GuaErrSessionConflict": "Конфликт сессий: подключение закрыто удаленным сервером из-за конфликта с другим подключением. Попробуйте позже.",
|
||||
|
|
@ -53,7 +53,7 @@
|
|||
"GuacamoleErrUnableToConnectToVNCServer": "Не удается подключиться к VNC серверу",
|
||||
"GuacamoleErrUnsupportedCredentialTypeRequested": "Запрашиваемый тип учетных данных не поддерживается",
|
||||
"GuacamoleErrUpstreamError": "Ошибка на стороне удаленного сервера",
|
||||
"InputVerifyCode": "Пожалуйста, введите код проверки.",
|
||||
"InputVerifyCode": "Введите код подтверждения",
|
||||
"JMSErrAPIFailed": "Ошибка API Core",
|
||||
"JMSErrAuthUser": "Пользователь не аутентифицирован",
|
||||
"JMSErrBadParams": "Ошибка параметров запроса",
|
||||
|
|
@ -68,7 +68,7 @@
|
|||
"JMSErrRemoveShareUser": "Вы были удалены из общей сессии",
|
||||
"JMSErrTerminatedByAdmin": "Сессия прервана администратором",
|
||||
"JoinShare": "Присоединиться к общей сессии",
|
||||
"KeyboardLayout": "Макет",
|
||||
"KeyboardLayout": "Раскладка клавиатуры",
|
||||
"LeaveShare": "Покинуть общую сессию",
|
||||
"LinkAddr": "Адрес ссылки",
|
||||
"Minute": "Минуты",
|
||||
|
|
@ -76,12 +76,12 @@
|
|||
"Name": "Имя",
|
||||
"NoData": "Нет данных",
|
||||
"OK": "ОК",
|
||||
"OnlineUser": "Онлайн пользователи",
|
||||
"Other": "Другие",
|
||||
"OnlineUser": "Пользователи онлайн",
|
||||
"Other": "Прочее",
|
||||
"Password": "Пароль",
|
||||
"PauseSession": "Приостановить сессию",
|
||||
"PleaseInput": "Пожалуйста, введите",
|
||||
"PrimaryUser": "Главный пользователь",
|
||||
"PrimaryUser": "Основной пользователь",
|
||||
"ReadOnly": "Только для чтения",
|
||||
"Refresh": "Обновить",
|
||||
"RemoveShareUserConfirm": "Вы действительно хотите удалить этого пользователя из сессии?",
|
||||
|
|
@ -89,7 +89,7 @@
|
|||
"RequireParams": "Обязательные параметры",
|
||||
"ResumeSession": "Возобновить сессию",
|
||||
"SelectAction": "Выберите действие",
|
||||
"SessionShare": "Поделиться сеансом",
|
||||
"SessionShare": "Поделиться сессией",
|
||||
"Settings": "Настройки",
|
||||
"Share": "Поделиться",
|
||||
"ShareLink": "Поделиться ссылкой",
|
||||
|
|
@ -97,7 +97,7 @@
|
|||
"ShareUserHelpText": "Пустое поле означает, что присоединиться может каждый желающий",
|
||||
"Shared Drive": "Общий диск",
|
||||
"Shortcuts": "Горячие клавиши",
|
||||
"ShowRemoteClip": "Показать удалённый буфер обмена",
|
||||
"ShowRemoteClip": "Показать удаленный буфер обмена",
|
||||
"Skip": "Пропустить",
|
||||
"Submit": "Отправить",
|
||||
"UploadFile": "Загрузить файл",
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@
|
|||
"AvailableHotkeys": "Available hotkeys",
|
||||
"Backspace as Ctrl+H": "Backspace as Ctrl+H",
|
||||
"Batch actions": "Batch actions",
|
||||
"Batch actions(select and right click)": "Batch actions(select and right click)",
|
||||
"Batch connect": "Batch connect",
|
||||
"BatchCommands": "Batch commands",
|
||||
"Belgian French keyboard layout": "Belgian French (Azerty)",
|
||||
|
|
@ -87,6 +88,7 @@
|
|||
"Expand all asset": "Expand all assets under the current node",
|
||||
"Expire time": "Expire time",
|
||||
"ExpiredTime": "Expire time",
|
||||
"Face Verify": "Face verify",
|
||||
"Face online required": "This login requires face verification and monitoring. Do you want to continue?",
|
||||
"Face verify": "Face verify",
|
||||
"Face verify required": "This login requires face verification. Do you want to continue?",
|
||||
|
|
@ -106,6 +108,7 @@
|
|||
"GUI": "GUI",
|
||||
"General": "General",
|
||||
"Go to Settings": "Go to Settings",
|
||||
"Go to profile": "Go to profile",
|
||||
"Help": "Help",
|
||||
"Help or download": "Help → Download",
|
||||
"Help text": "Help text",
|
||||
|
|
@ -285,6 +288,5 @@
|
|||
"start time": "Start time",
|
||||
"success": "Success",
|
||||
"system user": "System user",
|
||||
"user": "User",
|
||||
"Batch actions(select and right click)": "Batch actions(select and right click)"
|
||||
"user": "User"
|
||||
}
|
||||
|
|
@ -86,6 +86,7 @@
|
|||
"Expand all asset": "Expandir todos los activos bajo el nodo",
|
||||
"Expire time": "Tiempo de caducidad",
|
||||
"ExpiredTime": "Fecha de validez",
|
||||
"Face Verify": "Verificación facial",
|
||||
"Face online required": "Este inicio de sesión requiere verificación facial y monitoreo, ¿desea continuar?",
|
||||
"Face verify": "Verificación facial",
|
||||
"Face verify required": "Este inicio de sesión requiere verificación facial, ¿desea continuar?",
|
||||
|
|
@ -106,6 +107,7 @@
|
|||
"GUI": "Gráfico",
|
||||
"General": "Configuración básica",
|
||||
"Go to Settings": "Ir a configuración",
|
||||
"Go to profile": "Ir a Información personal",
|
||||
"Help": "Ayuda",
|
||||
"Help or download": "Menú de ayuda → Descargar",
|
||||
"Help text": "Descripción",
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@
|
|||
"Expand all asset": "現在のノードの下にあるすべてのアセットを展開",
|
||||
"Expire time": "期限切れ",
|
||||
"ExpiredTime": "有効期限",
|
||||
"Face Verify": "顔認証",
|
||||
"Face online required": "今回のログインには顔認証と監視が必要です。続けますか?",
|
||||
"Face verify": "顔認証",
|
||||
"Face verify required": "今回のログインには顔認証が必要です。続けますか?",
|
||||
|
|
@ -106,6 +107,7 @@
|
|||
"GUI": "グラフィカル",
|
||||
"General": "基本構成",
|
||||
"Go to Settings": "設定に行く",
|
||||
"Go to profile": "個人情報へ行く",
|
||||
"Help": "ヘルプ",
|
||||
"Help or download": "ヘルプ → ダウンロード",
|
||||
"Help text": "します",
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@
|
|||
"Expand all asset": "노드 아래의 모든 자산 확장",
|
||||
"Expire time": "만료 시간",
|
||||
"ExpiredTime": "유효 기간",
|
||||
"Face Verify": "얼굴 인증",
|
||||
"Face online required": "이번 로그인에서는 얼굴 인증 및 모니터링이 필요합니다. 계속하시겠습니까?",
|
||||
"Face verify": "얼굴 인증",
|
||||
"Face verify required": "이번 로그인에는 얼굴 인식이 필요합니다. 계속하시겠습니까?",
|
||||
|
|
@ -106,6 +107,7 @@
|
|||
"GUI": "그래픽화",
|
||||
"General": "기본 설정",
|
||||
"Go to Settings": "설정으로 가기",
|
||||
"Go to profile": "개인 정보로 가기",
|
||||
"Help": "도움",
|
||||
"Help or download": "메뉴 도움 → 다운로드",
|
||||
"Help text": "설명",
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@
|
|||
"Expand all asset": "Expanda todos os ativos abaixo do nó",
|
||||
"Expire time": "Tempo de Expiração",
|
||||
"ExpiredTime": "Prazo de validade",
|
||||
"Face Verify": "Verificação facial",
|
||||
"Face online required": "Este login precisa de verificação facial e monitoramento, deseja continuar?",
|
||||
"Face verify": "Verificação facial",
|
||||
"Face verify required": "Este login requer verificação facial, deseja continuar? ",
|
||||
|
|
@ -106,6 +107,7 @@
|
|||
"GUI": "Gráfico",
|
||||
"General": "Configurações Básicas",
|
||||
"Go to Settings": "Vá para as configurações. Esta login requer verificação facial, deseja continuar? Não há características faciais disponíveis, por favor, acesse a página de informações pessoais para vincular. Esta login requer verificação facial e monitoramento, deseja continuar? Verificação facial bem-sucedida.",
|
||||
"Go to profile": "Ir para informações pessoais",
|
||||
"Help": "Ajuda",
|
||||
"Help or download": "Menu de Ajuda → Download",
|
||||
"Help text": " Descrição ",
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"Account not found": "Учетная запись не найдена",
|
||||
"Account: ": "Учетная запись: {{value}}",
|
||||
"Action: ": "Действие:",
|
||||
"ActionPerm": "Права доступа",
|
||||
"ActionPerm": "Разрешения на действия",
|
||||
"Advanced option": "Расширенные настройки",
|
||||
"All sessions": "Все сессии",
|
||||
"Applet": "Remote App",
|
||||
|
|
@ -17,10 +17,10 @@
|
|||
"Assignees": "Ответственное лицо",
|
||||
"Auto": "Автоматически",
|
||||
"Automatic login next": "Автологин при следующем входе (ПКМ на активе для выбора способа заново)",
|
||||
"AvailableHotkeys": "Доступные сочетания клавиш",
|
||||
"AvailableHotkeys": "Доступные горячие клавиши",
|
||||
"Backspace as Ctrl+H": "Backspace как Ctrl+H",
|
||||
"Batch actions": "Пакетные операции",
|
||||
"Batch actions(select and right click)": "Пакетное действие (выбор и щелчок правой кнопкой мыши)",
|
||||
"Batch actions(select and right click)": "Пакетные действия (выберите и щёлкните ПКМ)",
|
||||
"Batch connect": "Пакетное подключение",
|
||||
"BatchCommands": "Пакетные команды",
|
||||
"Belgian French keyboard layout": "Бельгийская французская раскладка (Azerty)",
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
"Checkbox": "Чекбокс",
|
||||
"Choose a User": "Выберите пользователя",
|
||||
"Click to copy": "Нажмите, чтобы скопировать",
|
||||
"Click to download rdp file": "Нажмите, чтобы скачать RDP файл",
|
||||
"Click to download rdp file": "Нажмите, чтобы скачать файл RDP",
|
||||
"Client": "Клиент",
|
||||
"Clone Connect": "Клонировать окно",
|
||||
"Close": "Закрыть",
|
||||
|
|
@ -43,20 +43,19 @@
|
|||
"Close split connect": "Закрыть разделенный экран",
|
||||
"Command": "Команда",
|
||||
"Command Line": "Командная строка",
|
||||
"Command line": "Подключить командную строку",
|
||||
"CommandBar": "Панель команд",
|
||||
"Confirm": "Подтвердить",
|
||||
"ConfirmCreation": "Подтверждение создания",
|
||||
"ConfirmCreation": "Подтвердить создание",
|
||||
"Connect": "Подключение",
|
||||
"Connect checked": "Подключить выбранное",
|
||||
"Connect command line": "Подключение из командной строки",
|
||||
"Connect method": "Способ подключения",
|
||||
"ConnectSessionCount": "Подключено {{ count }} сессий",
|
||||
"ConnectSessionCount": "Подключено сессий: {{ count }}",
|
||||
"ConnectionTime": "Время подключения",
|
||||
"Copied": "Скопировано",
|
||||
"Copy": "Копировать",
|
||||
"Copy link": "Копировать ссылку",
|
||||
"CreateLink": "Создать ссылку",
|
||||
"CreateLink": "Создать ссылку для общего доступа",
|
||||
"Current online": "Сейчас онлайн",
|
||||
"Current session": "Текущая сессия",
|
||||
"DarkBlue": "Темно-синий",
|
||||
|
|
@ -70,7 +69,7 @@
|
|||
"Default": "По умолчанию",
|
||||
"Directly": "Имя пользователя указывает на связанные активы и УЗ",
|
||||
"Disable auto completion": "Отключить автодополнение",
|
||||
"DisabledAsset": "Активы были отключены.",
|
||||
"DisabledAsset": "Актив был отключен",
|
||||
"Disconnect": "Отключить",
|
||||
"Disfavor": "Удалить из избранного",
|
||||
"Do not close this page": "Не закрывайте эту страницу",
|
||||
|
|
@ -78,26 +77,26 @@
|
|||
"Don't prompt again": "Больше не показывать",
|
||||
"DownArrow": "Стрелка вниз",
|
||||
"Download": "Скачать",
|
||||
"Download the client": "Пожалуйста, скачайте",
|
||||
"Download the latest client": "Скачать последнюю версию клиента",
|
||||
"DownloadClient": "Скачать клиент.",
|
||||
"DownloadClientMsg": "Клиент JumpServer не установлен, сейчас нужно скачать и установить.",
|
||||
"DownloadClient": "Скачать клиент",
|
||||
"DownloadClientMsg": "Клиент JumpServer не найден, необходимо скачать и установить его. Перейти на страницу загрузки?",
|
||||
"Driver redirect": "Перенаправление диска",
|
||||
"Expand": "Развернуть",
|
||||
"Expand all": "Развернуть все",
|
||||
"Expand all asset": "Развернуть все активы в папке",
|
||||
"Expire time": "Срок действия",
|
||||
"ExpiredTime": "Срок действия",
|
||||
"Face Verify": "Проверка лица",
|
||||
"Face online required": "Для входа требуется верификация по лицу и мониторинг. Продолжить?",
|
||||
"Face verify": "Лицевое подтверждение",
|
||||
"Face verify": "Распознавание лица",
|
||||
"Face verify required": "Для входа требуется верификация по лицу. Продолжить?",
|
||||
"Face verify success": "Успешная верификация по лицу",
|
||||
"FaceOnlineNotSupported": "Не поддерживается онлайн-верификация по лицу",
|
||||
"FaceOnlineNotSupported": "Распознавание лица онлайн не поддерживается",
|
||||
"Failed to open address": "Не удалось открыть адрес",
|
||||
"Favorite": "Избранное",
|
||||
"File Manager": "Файловый менеджер",
|
||||
"FileManagement": "Файловый менедж :=",
|
||||
"FileManagerConnectionFailed": "Ошибка соединения с файловым управлением.",
|
||||
"FileManagement": "Управление файлами",
|
||||
"FileManagerConnectionFailed": "Ошибка подключения к файловому менеджеру",
|
||||
"Fold": "Свернуть",
|
||||
"Fold all": "Свернуть все",
|
||||
"Force refresh": "Принудительное обновление",
|
||||
|
|
@ -108,14 +107,15 @@
|
|||
"GUI": "Графический интерфейс",
|
||||
"General": "Основные настройки",
|
||||
"Go to Settings": "Перейти в настройки",
|
||||
"Go to profile": "Перейти к личной информации",
|
||||
"Help": "Помощь",
|
||||
"Help or download": "Помощь → Скачать",
|
||||
"Help text": "Описание",
|
||||
"Hide left manager": "Скрыть левую панель",
|
||||
"High-speed broadband (2 Mbps – 10 Mbps )": "Высокоскоростной интернет (2 Мбит/с – 10 Мбит/с)",
|
||||
"HistoryCommands": "Исторические команды",
|
||||
"HistoryCommands": "История команд",
|
||||
"Host": "Хост",
|
||||
"Hotkeys": "Сочетание клавиш",
|
||||
"Hotkeys": "Горячие клавиши",
|
||||
"Info": "Подсказка",
|
||||
"InstallClientMsg": "Клиент JumpServer не установлен, хотите скачать и установить?",
|
||||
"Japanese keyboard layout": "Японский (Qwerty)",
|
||||
|
|
@ -128,18 +128,18 @@
|
|||
"Launch Program": "Запуск программы",
|
||||
"LeftArrow": "Стрелка влево",
|
||||
"LeftInfo": "Нажмите на запись команды, чтобы быстро найти видео",
|
||||
"LinkAddr": "Ссылка на адрес",
|
||||
"LinkAddr": "Адрес ссылки",
|
||||
"Load tree async": "Асинхронная загрузка дерева активов",
|
||||
"Loading": "Загрузка",
|
||||
"LoadingFileManager": "Загрузка файлового менеджера...",
|
||||
"LoadingFileManager": "Загрузка файлового менеджера…",
|
||||
"Log out": "Выйти",
|
||||
"Login reminder": "Уведомление о входе",
|
||||
"Login review approved": "Вход одобрен, подключение к активам...",
|
||||
"LoginExpireMsg": "Время сессии истекло, не закрывайте окно. После входа в новом окне страница будет восстановлена, если не восстановилась, обновите страницу.",
|
||||
"Low Speed Broadband (256 Kbps - 2 Mbps)": "Медленный интернет (256 Кбит/с - 2 Мбит/с)",
|
||||
"Manual accounts": "Ввод УЗ вручную",
|
||||
"Minute": "Минуты",
|
||||
"Minutes": "Минуты",
|
||||
"Minute": "Минута",
|
||||
"Minutes": "Минут",
|
||||
"Module": "Модуль",
|
||||
"Multi Screen": "Многоэкранный режим",
|
||||
"My applications": "Мои приложения",
|
||||
|
|
@ -155,11 +155,11 @@
|
|||
"No matching found": "Совпадений не найдено",
|
||||
"No permission": "Нет разрешений",
|
||||
"No protocol available": "Нет доступных протоколов",
|
||||
"NoOnlineUser": "В данный момент нет онлайн пользователей.",
|
||||
"NoOnlineUsers": "В данный момент нет онлайн-пользователей",
|
||||
"NoOnlineUser": "Сейчас нет пользователей онлайн",
|
||||
"NoOnlineUsers": "Сейчас нет пользователей онлайн",
|
||||
"NoTabs": "Нет вкладок",
|
||||
"Not quick command": "Нет быстрых команд",
|
||||
"OnlineUser": "Онлайн пользователи",
|
||||
"OnlineUser": "Пользователи онлайн",
|
||||
"Open in new window": "Открыть в новом окне",
|
||||
"Operator": "Оператор",
|
||||
"Password": "Пароль",
|
||||
|
|
@ -181,18 +181,18 @@
|
|||
"RDP client options": "Опции клиента RDP",
|
||||
"RDP color quality": "Качество цвета RDP",
|
||||
"RDP connection speed": "Скорость подключения RDP",
|
||||
"RDP file reusable": "RDP файл повторно используемый",
|
||||
"RDP file reusable": "Возможно повторное использование файла RDP",
|
||||
"RDP resolution": "Разрешение RDP",
|
||||
"RDP smart size": "Умный размер RDP",
|
||||
"Re-use for a long time after opening": "После включения эта информация о подключении может использоваться длительное время и многократно",
|
||||
"ReadOnly": "Только для чтения",
|
||||
"ReadOnly": "Только просмотр",
|
||||
"Reconnect": "Переподключение",
|
||||
"Redirecting": "Перенаправление...",
|
||||
"Refresh": "Обновить",
|
||||
"Remember password": "Запомнить пароль",
|
||||
"Remember select": "Запомнить выбор",
|
||||
"RemoteApp": "Удаленное приложение",
|
||||
"RemoveShareUserConfirm": "Вы уверены, что хотите удалить этого пользователя?",
|
||||
"RemoveShareUserConfirm": "Вы действительно хотите удалить этого пользователя?",
|
||||
"Reselect connection method": "Можно повторно выбрать способ подключения",
|
||||
"Resume": "Восстановить",
|
||||
"Resume task has been send": "Задача на восстановление отправлена",
|
||||
|
|
@ -206,21 +206,21 @@
|
|||
"Save success": "Сохранено успешно",
|
||||
"Search": "Поиск",
|
||||
"Select account": "Выбрать УЗ",
|
||||
"SelectCommand": "Пожалуйста, выберите команду для выполнения",
|
||||
"SelectCommand": "Выберите команду для выполнения",
|
||||
"Send": "Отправить",
|
||||
"Send command": "Отправить команду",
|
||||
"Send text to all ssh terminals": "Отправить текст на все ssh терминалы",
|
||||
"SendCommandPlaceholder": "Введите команду, нажмите Enter для переноса строки, Ctrl+Enter для выполнения команды",
|
||||
"SendCommandPlaceholder": "Введите команду. Enter — новая строка, Ctrl+Enter — выполнение команды",
|
||||
"Session": "Сессия",
|
||||
"SessionIsBeingMonitored": "Сессия находится под наблюдением",
|
||||
"SessionShare": "Обмен сеансами",
|
||||
"SessionShare": "Поделиться сессией",
|
||||
"Set reusable": "Включить повторное использование",
|
||||
"Setting": "Настройки",
|
||||
"Settings or basic settings": "Настройки → Основные настройки",
|
||||
"ShareCode": "Код для обмена",
|
||||
"ShareCode": "Код доступа",
|
||||
"ShareLink": "Поделиться ссылкой",
|
||||
"ShareSession": "Поделиться сессией",
|
||||
"ShareUser": "Поделиться пользователем",
|
||||
"ShareUser": "Поделиться с",
|
||||
"Show left manager": "Показать левую панель",
|
||||
"Skip": "Пропустить",
|
||||
"Skip manual password": "Пропустить окно ручного ввода пароля",
|
||||
|
|
@ -240,15 +240,15 @@
|
|||
"Tabs": "Вкладки",
|
||||
"The connection method is invalid, please refresh the page": "Этот способ подключения больше недействителен, пожалуйста, обновите страницу",
|
||||
"Theme": "Тема",
|
||||
"ThemeSyncFailed": "Тема синхронизации не удалась",
|
||||
"ThemeSyncSuccessful": "Тема синхронизации успешна",
|
||||
"ThemeSyncFailed": "Тема не синхронизирована",
|
||||
"ThemeSyncSuccessful": "Тема синхронизирована",
|
||||
"Ticket review approved for login asset": "Проверка входа пройдена, хотите подключиться к активу?",
|
||||
"Ticket review closed for login asset": "Проверка входа закрыта, подключение к активу невозможно",
|
||||
"Ticket review pending for login asset": "Заявка на вход подана, ожидайте проверки исполнителем, вы также можете скопировать ссылку и отправить ему",
|
||||
"Ticket review rejected for login asset": "Проверка входа отклонена, подключение к активу невозможно",
|
||||
"Tips": "Подсказки",
|
||||
"Token expired": "Токен истек, пожалуйста, подключитесь снова",
|
||||
"TokenVerificationFailedLeaseReconnect": "Ошибка проверки токена, пожалуйста, переподключитесь.",
|
||||
"TokenVerificationFailedLeaseReconnect": "Ошибка проверки токена, пожалуйста, переподключитесь",
|
||||
"Tool download": "Скачать инструменты",
|
||||
"Turkey keyboard layout": "Турецкий-Q (Qwerty)",
|
||||
"TurnOffReminders": "Вы уверены, что хотите закрыть текущее подключение?",
|
||||
|
|
@ -271,7 +271,7 @@
|
|||
"Website": "Официальный сайт",
|
||||
"With secret accounts": "УЗ с сохраненным секретом",
|
||||
"WordSep": " ",
|
||||
"Writable": "Запись разрешена",
|
||||
"Writable": "Просмотр и управление",
|
||||
"Yes": "Да",
|
||||
"account": "Учетная запись",
|
||||
"asset": "актив",
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@
|
|||
"Expand all asset": "Mở rộng tất cả tài sản dưới nút",
|
||||
"Expire time": "Quản lý tệp",
|
||||
"ExpiredTime": "Thời hạn hiệu lực",
|
||||
"Face Verify": "Xác thực khuôn mặt",
|
||||
"Face online required": "Đăng nhập lần này cần thực hiện xác minh khuôn mặt và giám sát, có tiếp tục không?",
|
||||
"Face verify": "Xác thực khuôn mặt",
|
||||
"Face verify required": "Không hiển thị lại lần sau",
|
||||
|
|
@ -106,6 +107,7 @@
|
|||
"GUI": "Đồ họa",
|
||||
"General": "Cấu hình cơ bản",
|
||||
"Go to Settings": "Đi đến cài đặt",
|
||||
"Go to profile": "Đi đến thông tin cá nhân",
|
||||
"Help": "Trợ giúp",
|
||||
"Help or download": "Trợ giúp menu → Tải xuống",
|
||||
"Help text": "Giới thiệu",
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@
|
|||
"AvailableHotkeys": "可用快捷键",
|
||||
"Backspace as Ctrl+H": "字符终端Backspace As Ctrl+H",
|
||||
"Batch actions": "批量操作",
|
||||
"Batch actions(select and right click)": "批量操作(选择并右键单击)",
|
||||
"Batch connect": "批量连接",
|
||||
"BatchCommands": "批量命令",
|
||||
"Belgian French keyboard layout": "Belgian French (Azerty)",
|
||||
|
|
@ -85,6 +86,7 @@
|
|||
"Expand all asset": "展开节点下的所有资产",
|
||||
"Expire time": "过期时间",
|
||||
"ExpiredTime": "有效期限",
|
||||
"Face Verify": "人脸验证",
|
||||
"Face online required": "本次登录需要进行人脸验证和监控,是否继续?",
|
||||
"Face verify": "人脸验证",
|
||||
"Face verify required": "本次登录需要进行人脸验证,是否继续?",
|
||||
|
|
@ -105,6 +107,7 @@
|
|||
"GUI": "图形化",
|
||||
"General": "基本配置",
|
||||
"Go to Settings": "去设置",
|
||||
"Go to profile": "前往个人信息",
|
||||
"Help": "帮助",
|
||||
"Help or download": "菜单帮助 → 下载",
|
||||
"Help text": "说明",
|
||||
|
|
@ -285,6 +288,5 @@
|
|||
"start time": "开始时间",
|
||||
"success": "成功",
|
||||
"system user": "系统用户",
|
||||
"user": "用户",
|
||||
"Batch actions(select and right click)": "批量操作(选择并右键单击)"
|
||||
"user": "用户"
|
||||
}
|
||||
|
|
@ -87,6 +87,7 @@
|
|||
"Expand all asset": "展開節點下的所有資產",
|
||||
"Expire time": "過期時間",
|
||||
"ExpiredTime": "有效期限",
|
||||
"Face Verify": "人臉驗證",
|
||||
"Face online required": "這次登入需要進行臉部驗證及監控,是否繼續?",
|
||||
"Face verify": "人臉驗證",
|
||||
"Face verify required": "這次登入需要進行臉部驗證,是否繼續?",
|
||||
|
|
@ -107,6 +108,7 @@
|
|||
"GUI": "圖形化",
|
||||
"General": "基本配置",
|
||||
"Go to Settings": "前往設定",
|
||||
"Go to profile": "前往個人資訊",
|
||||
"Help": "幫助",
|
||||
"Help or download": "菜單幫助 → 下載",
|
||||
"Help text": "說明",
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ from ops.const import JobStatus
|
|||
from orgs.caches import OrgResourceStatisticsCache
|
||||
from orgs.utils import current_org
|
||||
from terminal.const import RiskLevelChoices
|
||||
from terminal.models import Session, Command
|
||||
from terminal.models import Session, CommandStorage
|
||||
|
||||
__all__ = ['IndexApi']
|
||||
|
||||
|
|
@ -50,7 +50,7 @@ class DateTimeMixin:
|
|||
|
||||
@lazyproperty
|
||||
def date_start_end(self):
|
||||
return self.days_to_datetime.date(), local_now().date() + timezone.timedelta(days=1)
|
||||
return self.days_to_datetime, local_now()
|
||||
|
||||
@lazyproperty
|
||||
def dates_list(self):
|
||||
|
|
@ -123,14 +123,16 @@ class DateTimeMixin:
|
|||
return self.get_logs_queryset_filter(qs, 'date_start')
|
||||
|
||||
@lazyproperty
|
||||
def command_type_queryset_tuple(self):
|
||||
type_queryset_tuple = Command.get_all_type_queryset_tuple()
|
||||
return (
|
||||
(tp, self.get_logs_queryset_filter(
|
||||
def command_queryset_list(self):
|
||||
qs_list = []
|
||||
for storage in CommandStorage.objects.all():
|
||||
if not storage.is_valid():
|
||||
continue
|
||||
qs = storage.get_command_queryset()
|
||||
qs_list.append(self.get_logs_queryset_filter(
|
||||
qs, 'timestamp', is_timestamp=True
|
||||
))
|
||||
for tp, qs in type_queryset_tuple
|
||||
)
|
||||
return qs_list
|
||||
|
||||
@lazyproperty
|
||||
def job_logs_queryset(self):
|
||||
|
|
@ -141,7 +143,7 @@ class DateTimeMixin:
|
|||
class DatesLoginMetricMixin:
|
||||
dates_list: list
|
||||
date_start_end: tuple
|
||||
command_type_queryset_tuple: tuple
|
||||
command_queryset_list: list
|
||||
sessions_queryset: Session.objects
|
||||
ftp_logs_queryset: FTPLog.objects
|
||||
job_logs_queryset: JobLog.objects
|
||||
|
|
@ -259,16 +261,11 @@ class DatesLoginMetricMixin:
|
|||
|
||||
@lazyproperty
|
||||
def command_statistics(self):
|
||||
from terminal.const import CommandStorageType
|
||||
total_amount = 0
|
||||
danger_amount = 0
|
||||
for tp, qs in self.command_type_queryset_tuple:
|
||||
if tp == CommandStorageType.es:
|
||||
total_amount += qs.count(limit_to_max_result_window=False)
|
||||
danger_amount += qs.filter(risk_level=RiskLevelChoices.reject).count(limit_to_max_result_window=False)
|
||||
else:
|
||||
total_amount += qs.count()
|
||||
danger_amount += qs.filter(risk_level=RiskLevelChoices.reject).count()
|
||||
for qs in self.command_queryset_list:
|
||||
total_amount += qs.count()
|
||||
danger_amount += qs.filter(risk_level=RiskLevelChoices.reject).count()
|
||||
return total_amount, danger_amount
|
||||
|
||||
@lazyproperty
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ def validate_identifier(name):
|
|||
return False, "Identifier cannot be empty"
|
||||
if len(name) > 30:
|
||||
return False, "Identifier must be at most 30 characters"
|
||||
if not re.match(r'^[A-Za-z][A-Za-z0-9_]*$', name):
|
||||
if not re.match(r'^(C##|c##)?[A-Za-z][A-Za-z0-9_]*$', name):
|
||||
msg = ("Identifier can only contain letters, numbers, "
|
||||
"and underscores (must start with a letter)")
|
||||
return False, msg
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@ class SystemMsgSubscriptionViewSet(
|
|||
ListModelMixin, UpdateModelMixin, JMSGenericViewSet
|
||||
):
|
||||
lookup_field = 'message_type'
|
||||
slug_field = lookup_field
|
||||
queryset = SystemMsgSubscription.objects.all()
|
||||
serializer_classes = {
|
||||
'list': SystemMsgSubscriptionByCategorySerializer,
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ class JMSPermedInventory(JMSInventory):
|
|||
host['login_db'] = asset.spec_info.get('db_name', '')
|
||||
host['ansible_python_interpreter'] = sys.executable
|
||||
if gateway:
|
||||
host['gateway'] = {
|
||||
host['jms_gateway'] = {
|
||||
'address': gateway.address, 'port': gateway.port,
|
||||
'username': gateway.username, 'secret': gateway.password,
|
||||
'private_key_path': gateway.private_key_path
|
||||
|
|
|
|||
|
|
@ -222,13 +222,15 @@ class AssetPermissionFilter(PermissionBaseFilter):
|
|||
have_asset_q = Q(assets__isnull=False) | Q(nodes__isnull=False)
|
||||
have_action_q = Q(actions__gt=0)
|
||||
|
||||
valid_ids = AssetPermission.objects.valid().values_list('pk', flat=True)
|
||||
queryset = queryset.filter(have_user_q & have_asset_q & have_action_q)
|
||||
queryset &= AssetPermission.objects.valid()
|
||||
queryset = queryset.filter(pk__in=valid_ids)
|
||||
else:
|
||||
not_have_user_q = Q(users__isnull=True) & Q(user_groups__isnull=True)
|
||||
not_have_asset_q = Q(assets__isnull=True) & Q(nodes__isnull=True)
|
||||
not_have_action_q = Q(actions=0)
|
||||
|
||||
queryset = queryset.filter(not_have_user_q | not_have_asset_q | not_have_action_q)
|
||||
queryset |= AssetPermission.objects.invalid()
|
||||
invalid_ids = AssetPermission.objects.invalid().values_list('pk', flat=True)
|
||||
condition_q = not_have_user_q | not_have_asset_q | not_have_action_q | Q(pk__in=invalid_ids)
|
||||
queryset = queryset.filter(condition_q)
|
||||
return queryset
|
||||
|
|
|
|||
|
|
@ -79,6 +79,7 @@ special_pid_mapper = {
|
|||
'acls.loginacl': 'perms',
|
||||
'acls.loginassetacl': 'perms',
|
||||
'acls.connectmethodacl': 'perms',
|
||||
'acls.datamaskingrule': 'perms',
|
||||
'xpack.account': 'cloud_import',
|
||||
'xpack.syncinstancedetail': 'cloud_import',
|
||||
'xpack.syncinstancetask': 'cloud_import',
|
||||
|
|
|
|||
|
|
@ -175,6 +175,8 @@ class SendMailView(View):
|
|||
msg.attach_alternative(html_content, "text/html")
|
||||
filename = f"{title}-{timezone.now().strftime('%Y%m%d%H%M%S')}.pdf"
|
||||
msg.attach(filename, pdf_bytes, "application/pdf")
|
||||
msg.send()
|
||||
|
||||
return JsonResponse({"message": "邮件发送成功"})
|
||||
try:
|
||||
msg.send()
|
||||
except Exception as e:
|
||||
return JsonResponse({"error": _('Failed to send email: ') + str(e)})
|
||||
return JsonResponse({"message": _('Email sent successfully to ') + email})
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@ class LdapWebsocket(AsyncJsonWebsocketConsumer):
|
|||
await self.send_msg(msg='Exception: %s' % error)
|
||||
|
||||
def run_func(self, func_name, data):
|
||||
with translation.override(getattr(self.scope['user'], 'lang', settings.LANGUAGE_CODE)):
|
||||
with translation.override(getattr(self.scope['user'], 'lang') or settings.LANGUAGE_CODE):
|
||||
return getattr(self, func_name)(data)
|
||||
|
||||
async def send_msg(self, ok=True, msg=''):
|
||||
|
|
|
|||
|
|
@ -189,11 +189,6 @@ class Applet(JMSBaseModel):
|
|||
if settings.DEBUG_DEV:
|
||||
return hosts
|
||||
|
||||
hosts = [host for host in hosts if host.load != 'offline']
|
||||
if not hosts:
|
||||
logger.info("No online host for applet: {}".format(self.name))
|
||||
return None
|
||||
|
||||
hosts = self._filter_published_hosts(hosts)
|
||||
if not hosts:
|
||||
logger.info("No published host for applet: {}".format(self.name))
|
||||
|
|
@ -202,7 +197,20 @@ class Applet(JMSBaseModel):
|
|||
|
||||
def select_host(self, user, asset):
|
||||
hosts = self.filter_available_hosts()
|
||||
only_label_values = asset.get_labels().filter(
|
||||
name__in=['AppletHostOnly', '仅发布机']
|
||||
).values_list('value', flat=True)
|
||||
if only_label_values:
|
||||
host_matched = [host for host in hosts if host.name in only_label_values]
|
||||
if host_matched:
|
||||
return host_matched[0]
|
||||
else:
|
||||
logger.info("No host for only applet: {}".format(self.name))
|
||||
return None
|
||||
|
||||
hosts = hosts if settings.DEBUG_DEV else [host for host in hosts if host.load != 'offline']
|
||||
if not hosts:
|
||||
logger.info("No online host for applet: {}".format(self.name))
|
||||
return None
|
||||
|
||||
spec_label_values = asset.get_labels().filter(
|
||||
|
|
|
|||
|
|
@ -4,10 +4,11 @@ from django.db import models
|
|||
from django.db.models.signals import post_save
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
from orgs.mixins.models import OrgManager
|
||||
from terminal.backends.command.models import AbstractSessionCommand
|
||||
|
||||
|
||||
class CommandManager(models.Manager):
|
||||
class CommandManager(OrgManager):
|
||||
def bulk_create(self, objs, **kwargs):
|
||||
resp = super().bulk_create(objs, **kwargs)
|
||||
for i in objs:
|
||||
|
|
|
|||
|
|
@ -45,8 +45,8 @@ class TicketViewSet(CommonApiMixin, viewsets.ModelViewSet):
|
|||
}
|
||||
|
||||
def retrieve(self, request, *args, **kwargs):
|
||||
instance = self.get_object()
|
||||
with tmp_to_root_org():
|
||||
instance = self.get_object()
|
||||
serializer = self.get_serializer(instance)
|
||||
data = serializer.data
|
||||
return Response(data)
|
||||
|
|
|
|||
|
|
@ -38,6 +38,12 @@ class ConnectDefaultOpenMethod(TextChoices):
|
|||
NEW = 'new', _('New window')
|
||||
|
||||
|
||||
class Themes(TextChoices):
|
||||
DEFAULT = 'default', _('Default')
|
||||
DARKGARY = 'darkGary', _('Dark gray')
|
||||
DEEKBLUE = 'deepBlue', _('Deep blue')
|
||||
|
||||
|
||||
class RDPSmartSize(TextChoices):
|
||||
DISABLE = '0', _('Disable')
|
||||
ENABLE = '1', _('Enable')
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ from django.utils.translation import gettext_lazy as _
|
|||
from common.utils import reverse, get_request_ip_or_data, get_request_user_agent
|
||||
from common.views.template import custom_render_to_string
|
||||
from notifications.notifications import UserMessage
|
||||
from users.utils import activate_user_language
|
||||
|
||||
|
||||
class UserCreatedMsg(UserMessage):
|
||||
|
|
@ -28,30 +29,30 @@ class UserCreatedMsg(UserMessage):
|
|||
|
||||
def get_html_msg(self) -> dict:
|
||||
user = self.user
|
||||
|
||||
mail_context = {
|
||||
'subject': str(settings.EMAIL_CUSTOM_USER_CREATED_SUBJECT),
|
||||
'honorific': str(settings.EMAIL_CUSTOM_USER_CREATED_HONORIFIC),
|
||||
'content': str(settings.EMAIL_CUSTOM_USER_CREATED_BODY)
|
||||
'subject': settings.EMAIL_CUSTOM_USER_CREATED_SUBJECT,
|
||||
'honorific': settings.EMAIL_CUSTOM_USER_CREATED_HONORIFIC,
|
||||
'content': settings.EMAIL_CUSTOM_USER_CREATED_BODY
|
||||
}
|
||||
|
||||
user_info = {'username': user.username, 'name': user.name, 'email': user.email}
|
||||
# 转换成 defaultdict,否则 format 时会报 KeyError
|
||||
user_info = defaultdict(str, **user_info)
|
||||
mail_context = {k: v.format_map(user_info) for k, v in mail_context.items()}
|
||||
with activate_user_language(self.user):
|
||||
# 转换成 defaultdict,否则 format 时会报 KeyError
|
||||
user_info = defaultdict(str, **user_info)
|
||||
mail_context = {k: v.format_map(user_info) for k, v in mail_context.items()}
|
||||
|
||||
context = {
|
||||
**mail_context,
|
||||
**user_info,
|
||||
'rest_password_url': reverse('authentication:reset-password', external=True),
|
||||
'rest_password_token': user.generate_reset_token(),
|
||||
'forget_password_url': reverse('authentication:forgot-password', external=True)
|
||||
}
|
||||
message = custom_render_to_string(self.template_name, context)
|
||||
return {
|
||||
'subject': mail_context['subject'],
|
||||
'message': message
|
||||
}
|
||||
context = {
|
||||
**mail_context,
|
||||
**user_info,
|
||||
'rest_password_url': reverse('authentication:reset-password', external=True),
|
||||
'rest_password_token': user.generate_reset_token(),
|
||||
'forget_password_url': reverse('authentication:forgot-password', external=True)
|
||||
}
|
||||
message = custom_render_to_string(self.template_name, context)
|
||||
return {
|
||||
'subject': mail_context['subject'],
|
||||
'message': message
|
||||
}
|
||||
|
||||
@classmethod
|
||||
def gen_test_msg(cls):
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ from django.utils.translation import gettext_lazy as _
|
|||
from rest_framework import serializers
|
||||
|
||||
from users.const import (
|
||||
RDPResolution, RDPSmartSize, KeyboardLayout, ConnectDefaultOpenMethod,
|
||||
RDPResolution, RDPSmartSize, KeyboardLayout, ConnectDefaultOpenMethod, Themes,
|
||||
RDPClientOption, AppletConnectionMethod, RDPColorQuality, FileNameConflictResolution
|
||||
)
|
||||
|
||||
|
|
@ -29,6 +29,10 @@ class BasicSerializer(serializers.Serializer):
|
|||
choices=ConnectDefaultOpenMethod.choices, default=ConnectDefaultOpenMethod.CURRENT,
|
||||
label=_('Connect default open method'), required=False
|
||||
)
|
||||
themes = serializers.ChoiceField(
|
||||
choices=Themes.choices, default=Themes.DEFAULT,
|
||||
label=_('Theme'), required=False
|
||||
)
|
||||
|
||||
|
||||
class GraphicsSerializer(serializers.Serializer):
|
||||
|
|
|
|||
|
|
@ -146,7 +146,7 @@ class UserProfileSerializer(UserSerializer):
|
|||
return password
|
||||
|
||||
def get_lang(self, obj) -> str:
|
||||
return getattr(obj, 'lang', settings.LANGUAGE_CODE)
|
||||
return getattr(obj, 'lang') or settings.LANGUAGE_CODE
|
||||
|
||||
|
||||
class UserPKUpdateSerializer(serializers.ModelSerializer):
|
||||
|
|
|
|||
|
|
@ -320,6 +320,6 @@ def is_auth_confirm_time_valid(session):
|
|||
|
||||
@contextmanager
|
||||
def activate_user_language(user):
|
||||
language = getattr(user, 'lang', settings.LANGUAGE_CODE)
|
||||
language = getattr(user, 'lang') or settings.LANGUAGE_CODE
|
||||
with translation.override(language):
|
||||
yield
|
||||
|
|
|
|||
|
|
@ -83,12 +83,12 @@ dependencies = [
|
|||
'drf-writable-nested==0.7.0',
|
||||
'rest-condition==1.0.3',
|
||||
'drf-spectacular==0.28.0',
|
||||
'pillow==10.0.1',
|
||||
'pillow==10.2.0',
|
||||
'pytz==2023.3',
|
||||
'django-proxy==1.2.2',
|
||||
'python-daemon==3.0.1',
|
||||
'eventlet==0.33.3',
|
||||
'greenlet==3.1.1',
|
||||
'eventlet==0.40.3',
|
||||
'greenlet==3.2.4',
|
||||
'gunicorn==23.0.0',
|
||||
'celery==5.3.1',
|
||||
'flower==2.0.1',
|
||||
|
|
|
|||
Loading…
Reference in New Issue