mirror of https://github.com/jumpserver/jumpserver
Merge branch 'v4' of github.com:jumpserver/jumpserver into v4
commit
263bcbb566
|
@ -11,8 +11,12 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
component: [core]
|
||||||
|
version: [v4]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: docker/setup-buildx-action@v3
|
- uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to GitHub Container Registry
|
||||||
|
@ -22,20 +26,9 @@ jobs:
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Build Base Image
|
- name: Prepare Build
|
||||||
uses: docker/build-push-action@v5
|
run: |
|
||||||
with:
|
sed -i 's@^FROM registry.fit2cloud.com/jumpserver@FROM ghcr.io/jumpserver@g' Dockerfile-ee
|
||||||
context: .
|
|
||||||
push: true
|
|
||||||
file: Dockerfile.base
|
|
||||||
tags: ghcr.io/jumpserver/core:v4-base
|
|
||||||
platforms: linux/amd64
|
|
||||||
build-args: |
|
|
||||||
APT_MIRROR=http://deb.debian.org
|
|
||||||
PIP_MIRROR=https://pypi.org/simple
|
|
||||||
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true
|
|
||||||
cache-from: type=gha
|
|
||||||
cache-to: type=gha,mode=max
|
|
||||||
|
|
||||||
- name: Build CE Image
|
- name: Build CE Image
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
|
@ -43,34 +36,28 @@ jobs:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
file: Dockerfile
|
file: Dockerfile
|
||||||
tags: ghcr.io/jumpserver/core:v4-lite
|
tags: ghcr.io/jumpserver/${{ matrix.component }}:${{ matrix.version }}-ce
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64
|
||||||
build-args: |
|
build-args: |
|
||||||
VERSION=v4
|
VERSION=${{ matrix.version }}
|
||||||
APT_MIRROR=http://deb.debian.org
|
APT_MIRROR=http://deb.debian.org
|
||||||
BASE_IMAGE=ghcr.io/jumpserver/core
|
PIP_MIRROR=https://pypi.org/simple
|
||||||
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true
|
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true
|
||||||
cache-from: type=gha
|
cache-from: type=gha
|
||||||
cache-to: type=gha,mode=max
|
cache-to: type=gha,mode=max
|
||||||
|
|
||||||
- name: Prepare EE Image
|
|
||||||
run: |
|
|
||||||
sed -i 's@^FROM registry.fit2cloud.com/jumpserver/xpack@# FROM registry.fit2cloud.com/jumpserver/xpack@' Dockerfile-ee
|
|
||||||
sed -i 's@^FROM registry.fit2cloud.com/jumpserver@FROM ghcr.io/jumpserver@g' Dockerfile-ee
|
|
||||||
sed -i 's@^COPY --from=build-xpack@# COPY --from=build-xpack@g' Dockerfile-ee
|
|
||||||
|
|
||||||
- name: Build EE Image
|
- name: Build EE Image
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: false
|
push: false
|
||||||
file: Dockerfile-ee
|
file: Dockerfile-ee
|
||||||
tags: jumpserver/core:v4
|
tags: ghcr.io/jumpserver/${{ matrix.component }}:${{ matrix.version }}
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64
|
||||||
build-args: |
|
build-args: |
|
||||||
VERSION=v4
|
VERSION=${{ matrix.version }}
|
||||||
APT_MIRROR=http://deb.debian.org
|
APT_MIRROR=http://deb.debian.org
|
||||||
BASE_IMAGE=ghcr.io/jumpserver/core
|
PIP_MIRROR=https://pypi.org/simple
|
||||||
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true
|
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true
|
||||||
cache-from: type=gha
|
cache-from: type=gha
|
||||||
cache-to: type=gha,mode=max
|
cache-to: type=gha,mode=max
|
54
Dockerfile
54
Dockerfile
|
@ -1,7 +1,4 @@
|
||||||
ARG VERSION
|
FROM debian:bullseye-slim as stage-1
|
||||||
ARG BASE_IMAGE=jumpserver/core
|
|
||||||
|
|
||||||
FROM python:3.11-slim-bullseye as stage-1
|
|
||||||
ARG TARGETARCH
|
ARG TARGETARCH
|
||||||
|
|
||||||
ARG DEPENDENCIES=" \
|
ARG DEPENDENCIES=" \
|
||||||
|
@ -9,8 +6,8 @@ ARG DEPENDENCIES=" \
|
||||||
wget"
|
wget"
|
||||||
|
|
||||||
ARG APT_MIRROR=http://mirrors.ustc.edu.cn
|
ARG APT_MIRROR=http://mirrors.ustc.edu.cn
|
||||||
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=core \
|
||||||
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
--mount=type=cache,target=/var/lib/apt,sharing=locked,id=core \
|
||||||
set -ex \
|
set -ex \
|
||||||
&& rm -f /etc/apt/apt.conf.d/docker-clean \
|
&& rm -f /etc/apt/apt.conf.d/docker-clean \
|
||||||
&& echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' >/etc/apt/apt.conf.d/keep-cache \
|
&& echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' >/etc/apt/apt.conf.d/keep-cache \
|
||||||
|
@ -48,15 +45,44 @@ RUN echo > /opt/jumpserver/config.yml \
|
||||||
sed -i "s@VERSION = .*@VERSION = '${VERSION}'@g" apps/jumpserver/const.py; \
|
sed -i "s@VERSION = .*@VERSION = '${VERSION}'@g" apps/jumpserver/const.py; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
FROM ${BASE_IMAGE}:${VERSION}-base as stage-2
|
FROM python:3.11-slim-bullseye as stage-2
|
||||||
ARG TARGETARCH
|
ARG TARGETARCH
|
||||||
|
|
||||||
|
ARG BUILD_DEPENDENCIES=" \
|
||||||
|
g++ \
|
||||||
|
make \
|
||||||
|
pkg-config"
|
||||||
|
|
||||||
|
ARG DEPENDENCIES=" \
|
||||||
|
default-libmysqlclient-dev \
|
||||||
|
freetds-dev \
|
||||||
|
gettext \
|
||||||
|
libkrb5-dev \
|
||||||
|
libldap2-dev \
|
||||||
|
libsasl2-dev"
|
||||||
|
|
||||||
|
ARG APT_MIRROR=http://mirrors.ustc.edu.cn
|
||||||
|
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=core \
|
||||||
|
--mount=type=cache,target=/var/lib/apt,sharing=locked,id=core \
|
||||||
|
set -ex \
|
||||||
|
&& rm -f /etc/apt/apt.conf.d/docker-clean \
|
||||||
|
&& echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' >/etc/apt/apt.conf.d/keep-cache \
|
||||||
|
&& sed -i "s@http://.*.debian.org@${APT_MIRROR}@g" /etc/apt/sources.list \
|
||||||
|
&& apt-get update \
|
||||||
|
&& apt-get -y install --no-install-recommends ${BUILD_DEPENDENCIES} \
|
||||||
|
&& apt-get -y install --no-install-recommends ${DEPENDENCIES} \
|
||||||
|
&& echo "no" | dpkg-reconfigure dash
|
||||||
|
|
||||||
WORKDIR /opt/jumpserver
|
WORKDIR /opt/jumpserver
|
||||||
|
|
||||||
RUN --mount=type=cache,target=/root/.cache,sharing=locked \
|
ARG PIP_MIRROR=https://pypi.tuna.tsinghua.edu.cn/simple
|
||||||
--mount=type=bind,source=poetry.lock,target=/opt/jumpserver/poetry.lock \
|
RUN --mount=type=cache,target=/root/.cache,sharing=locked,id=core \
|
||||||
--mount=type=bind,source=pyproject.toml,target=/opt/jumpserver/pyproject.toml \
|
--mount=type=bind,source=poetry.lock,target=poetry.lock \
|
||||||
|
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
|
||||||
set -ex \
|
set -ex \
|
||||||
|
&& python3 -m venv /opt/py3 \
|
||||||
|
&& pip install poetry -i ${PIP_MIRROR} \
|
||||||
|
&& poetry config virtualenvs.create false \
|
||||||
&& . /opt/py3/bin/activate \
|
&& . /opt/py3/bin/activate \
|
||||||
&& poetry install --only main
|
&& poetry install --only main
|
||||||
|
|
||||||
|
@ -75,9 +101,7 @@ ENV LANG=en_US.UTF-8 \
|
||||||
|
|
||||||
ARG DEPENDENCIES=" \
|
ARG DEPENDENCIES=" \
|
||||||
libldap2-dev \
|
libldap2-dev \
|
||||||
libpq-dev \
|
libx11-dev"
|
||||||
libx11-dev \
|
|
||||||
libxmlsec1-openssl"
|
|
||||||
|
|
||||||
ARG TOOLS=" \
|
ARG TOOLS=" \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
|
@ -86,8 +110,8 @@ ARG TOOLS=" \
|
||||||
sshpass"
|
sshpass"
|
||||||
|
|
||||||
ARG APT_MIRROR=http://mirrors.ustc.edu.cn
|
ARG APT_MIRROR=http://mirrors.ustc.edu.cn
|
||||||
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=core \
|
||||||
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
--mount=type=cache,target=/var/lib/apt,sharing=locked,id=core \
|
||||||
set -ex \
|
set -ex \
|
||||||
&& rm -f /etc/apt/apt.conf.d/docker-clean \
|
&& rm -f /etc/apt/apt.conf.d/docker-clean \
|
||||||
&& echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' >/etc/apt/apt.conf.d/keep-cache \
|
&& echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' >/etc/apt/apt.conf.d/keep-cache \
|
||||||
|
|
|
@ -1,20 +1,35 @@
|
||||||
ARG VERSION
|
ARG VERSION
|
||||||
ARG BASE_IMAGE=registry.fit2cloud.com/jumpserver/core
|
|
||||||
|
|
||||||
FROM registry.fit2cloud.com/jumpserver/xpack:${VERSION} as build-xpack
|
FROM registry.fit2cloud.com/jumpserver/xpack:${VERSION} as build-xpack
|
||||||
FROM registry.fit2cloud.com/jumpserver/core:${VERSION}-base as build-core
|
FROM python:3.11-slim-bullseye as build-core
|
||||||
ARG TARGETARCH
|
ARG BUILD_DEPENDENCIES=" \
|
||||||
|
g++"
|
||||||
|
|
||||||
|
ARG APT_MIRROR=http://mirrors.ustc.edu.cn
|
||||||
|
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=core \
|
||||||
|
--mount=type=cache,target=/var/lib/apt,sharing=locked,id=core \
|
||||||
|
set -ex \
|
||||||
|
&& rm -f /etc/apt/apt.conf.d/docker-clean \
|
||||||
|
&& echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' >/etc/apt/apt.conf.d/keep-cache \
|
||||||
|
&& sed -i "s@http://.*.debian.org@${APT_MIRROR}@g" /etc/apt/sources.list \
|
||||||
|
&& apt-get update \
|
||||||
|
&& apt-get -y install --no-install-recommends ${BUILD_DEPENDENCIES} \
|
||||||
|
&& echo "no" | dpkg-reconfigure dash
|
||||||
|
|
||||||
WORKDIR /opt/jumpserver
|
WORKDIR /opt/jumpserver
|
||||||
|
|
||||||
RUN --mount=type=cache,target=/root/.cache,sharing=locked \
|
ARG PIP_MIRROR=https://pypi.tuna.tsinghua.edu.cn/simple
|
||||||
|
RUN --mount=type=cache,target=/root/.cache,sharing=locked,id=core \
|
||||||
--mount=type=bind,source=poetry.lock,target=/opt/jumpserver/poetry.lock \
|
--mount=type=bind,source=poetry.lock,target=/opt/jumpserver/poetry.lock \
|
||||||
--mount=type=bind,source=pyproject.toml,target=/opt/jumpserver/pyproject.toml \
|
--mount=type=bind,source=pyproject.toml,target=/opt/jumpserver/pyproject.toml \
|
||||||
set -ex \
|
set -ex \
|
||||||
|
&& python3 -m venv /opt/py3 \
|
||||||
|
&& pip install poetry -i ${PIP_MIRROR} \
|
||||||
|
&& poetry config virtualenvs.create false \
|
||||||
&& . /opt/py3/bin/activate \
|
&& . /opt/py3/bin/activate \
|
||||||
&& poetry install --only xpack
|
&& poetry install --only xpack
|
||||||
|
|
||||||
FROM ${BASE_IMAGE}:${VERSION}-lite
|
FROM registry.fit2cloud.com/jumpserver/core:${VERSION}-ce
|
||||||
ARG TARGETARCH
|
ARG TARGETARCH
|
||||||
|
|
||||||
ARG TOOLS=" \
|
ARG TOOLS=" \
|
||||||
|
@ -27,8 +42,8 @@ ARG TOOLS=" \
|
||||||
wget"
|
wget"
|
||||||
|
|
||||||
ARG APT_MIRROR=http://mirrors.ustc.edu.cn
|
ARG APT_MIRROR=http://mirrors.ustc.edu.cn
|
||||||
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=core \
|
||||||
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
--mount=type=cache,target=/var/lib/apt,sharing=locked,id=core \
|
||||||
set -ex \
|
set -ex \
|
||||||
&& apt-get update \
|
&& apt-get update \
|
||||||
&& apt-get -y install --no-install-recommends ${TOOLS}
|
&& apt-get -y install --no-install-recommends ${TOOLS}
|
||||||
|
|
|
@ -1,55 +0,0 @@
|
||||||
FROM python:3.11-slim-bullseye
|
|
||||||
ARG TARGETARCH
|
|
||||||
|
|
||||||
ARG BUILD_DEPENDENCIES=" \
|
|
||||||
g++ \
|
|
||||||
make \
|
|
||||||
pkg-config"
|
|
||||||
|
|
||||||
ARG DEPENDENCIES=" \
|
|
||||||
freetds-dev \
|
|
||||||
gettext \
|
|
||||||
libffi-dev \
|
|
||||||
libjpeg-dev \
|
|
||||||
libkrb5-dev \
|
|
||||||
libldap2-dev \
|
|
||||||
libpq-dev \
|
|
||||||
libsasl2-dev \
|
|
||||||
libssl-dev \
|
|
||||||
libxml2-dev \
|
|
||||||
libxmlsec1-dev \
|
|
||||||
libxmlsec1-openssl \
|
|
||||||
freerdp2-dev \
|
|
||||||
libaio-dev"
|
|
||||||
|
|
||||||
ARG TOOLS=" \
|
|
||||||
ca-certificates \
|
|
||||||
curl \
|
|
||||||
default-libmysqlclient-dev \
|
|
||||||
default-mysql-client \
|
|
||||||
git \
|
|
||||||
git-lfs \
|
|
||||||
unzip \
|
|
||||||
xz-utils \
|
|
||||||
wget"
|
|
||||||
|
|
||||||
ARG APT_MIRROR=http://mirrors.ustc.edu.cn
|
|
||||||
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
|
||||||
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
|
||||||
set -ex \
|
|
||||||
&& rm -f /etc/apt/apt.conf.d/docker-clean \
|
|
||||||
&& echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' >/etc/apt/apt.conf.d/keep-cache \
|
|
||||||
&& sed -i "s@http://.*.debian.org@${APT_MIRROR}@g" /etc/apt/sources.list \
|
|
||||||
&& ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
|
|
||||||
&& apt-get update \
|
|
||||||
&& apt-get -y install --no-install-recommends ${BUILD_DEPENDENCIES} \
|
|
||||||
&& apt-get -y install --no-install-recommends ${DEPENDENCIES} \
|
|
||||||
&& apt-get -y install --no-install-recommends ${TOOLS} \
|
|
||||||
&& echo "no" | dpkg-reconfigure dash
|
|
||||||
|
|
||||||
ARG PIP_MIRROR=https://pypi.org/simple
|
|
||||||
RUN --mount=type=cache,target=/root/.cache,sharing=locked \
|
|
||||||
set -ex \
|
|
||||||
&& python3 -m venv /opt/py3 \
|
|
||||||
&& pip install poetry -i ${PIP_MIRROR} \
|
|
||||||
&& poetry config virtualenvs.create false
|
|
|
@ -54,10 +54,13 @@ class ChangeSecretAutomationSerializer(AuthValidateMixin, BaseAutomationSerializ
|
||||||
'ssh_key_change_strategy', 'passphrase', 'recipients', 'params'
|
'ssh_key_change_strategy', 'passphrase', 'recipients', 'params'
|
||||||
]
|
]
|
||||||
extra_kwargs = {**BaseAutomationSerializer.Meta.extra_kwargs, **{
|
extra_kwargs = {**BaseAutomationSerializer.Meta.extra_kwargs, **{
|
||||||
'accounts': {'required': True},
|
'accounts': {'required': True, 'help_text': _('Please enter your account username')},
|
||||||
'recipients': {'label': _('Recipient'), 'help_text': _(
|
'recipients': {'label': _('Recipient'), 'help_text': _(
|
||||||
"Currently only mail sending is supported"
|
"Currently only mail sending is supported"
|
||||||
)},
|
)},
|
||||||
|
'params': {'help_text': _(
|
||||||
|
"Secret parameter settings, currently only effective for assets of the host type."
|
||||||
|
)},
|
||||||
}}
|
}}
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
|
@ -264,7 +264,7 @@ class UserSession(models.Model):
|
||||||
user_agent = models.CharField(max_length=254, blank=True, null=True, verbose_name=_("User agent"))
|
user_agent = models.CharField(max_length=254, blank=True, null=True, verbose_name=_("User agent"))
|
||||||
type = models.CharField(choices=LoginTypeChoices.choices, max_length=2, verbose_name=_("Login type"))
|
type = models.CharField(choices=LoginTypeChoices.choices, max_length=2, verbose_name=_("Login type"))
|
||||||
backend = models.CharField(max_length=32, default="", verbose_name=_("Auth backend"))
|
backend = models.CharField(max_length=32, default="", verbose_name=_("Auth backend"))
|
||||||
date_created = models.DateTimeField(null=True, blank=True, verbose_name=_('Date created'))
|
date_created = models.DateTimeField(null=True, blank=True, verbose_name=_('Login date'))
|
||||||
user = models.ForeignKey(
|
user = models.ForeignKey(
|
||||||
'users.User', verbose_name=_('User'), related_name='sessions', on_delete=models.CASCADE
|
'users.User', verbose_name=_('User'), related_name='sessions', on_delete=models.CASCADE
|
||||||
)
|
)
|
||||||
|
|
|
@ -0,0 +1,77 @@
|
||||||
|
{
|
||||||
|
"action": {
|
||||||
|
"refresh": "Refresh",
|
||||||
|
"new": "New",
|
||||||
|
"new_query": "New Query",
|
||||||
|
"view_data": "View Data",
|
||||||
|
"show_properties": "Show Properties",
|
||||||
|
"label": {
|
||||||
|
"name": "Name",
|
||||||
|
"type": "Type",
|
||||||
|
"version": "Version",
|
||||||
|
"user": "User",
|
||||||
|
"jdbc_url": "JDBC URL",
|
||||||
|
"driver_class": "Driver Class",
|
||||||
|
"driver_version": "Driver Version"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"query": "Query",
|
||||||
|
"properties": "Properties",
|
||||||
|
"datasource_properties": "Datasource Properties"
|
||||||
|
},
|
||||||
|
"state": {
|
||||||
|
"connected": "Connected"
|
||||||
|
},
|
||||||
|
"msg": {
|
||||||
|
"error": {
|
||||||
|
"fetch_error": "Error while fetching data",
|
||||||
|
"connect_error": "Error while connecting",
|
||||||
|
"change_context_error": "Error while changing context",
|
||||||
|
"parse_error": "Error while parsing",
|
||||||
|
"execute_error": "Error while executing",
|
||||||
|
"already_first_page": "It's already the first page",
|
||||||
|
"already_last_page": "It's already the last page",
|
||||||
|
"perms_expired": "Permissions associated with this session expired on %s",
|
||||||
|
"over_max_idle_time": "Since this sessioon has been idle for more than %d minutes, it has been closed",
|
||||||
|
"over_max_session_time": "Since this session has been active for more than %d hours, it has been closed",
|
||||||
|
"command_review_timeout": "Command review request has timed out",
|
||||||
|
"command_review_reject": "Command review request has been rejected by %s",
|
||||||
|
"session_closed_by": "This session has been closed by %s.",
|
||||||
|
"user_cancel_command_review": "The user has cancelled the command review.",
|
||||||
|
"session_locked": "This session has been paused and cannot continue executing commands",
|
||||||
|
"no_permission": " You do not have permission to perform this action",
|
||||||
|
"acl_reject": " Command rejected by ACL"
|
||||||
|
},
|
||||||
|
"success": {
|
||||||
|
"execute_success": "Executed successfully",
|
||||||
|
"connect_success": "Connected successfully"
|
||||||
|
},
|
||||||
|
"info": {
|
||||||
|
"affected_rows": "Affected rows"
|
||||||
|
},
|
||||||
|
"dialog": {
|
||||||
|
"session_locked": "This session is locked by %s, please wait for the session to be unlocked.",
|
||||||
|
"session_unlocked": "This session has been unlocked by %s.",
|
||||||
|
"title": {
|
||||||
|
"init_datasource": "Initialize Datasource",
|
||||||
|
"init_datasource_failed": "Initialize Datasource Failed",
|
||||||
|
"error_message": "Error Message",
|
||||||
|
"session_finished": "Session Finished",
|
||||||
|
"command_review": "Command Review"
|
||||||
|
},
|
||||||
|
"message": {
|
||||||
|
"init_datasource": "Initializing data source, please wait...",
|
||||||
|
"init_datasource_failed": "Connection failed, please check if the database connection configuration is correct",
|
||||||
|
"command_review": "The command you entered requires verification before it can be executed. Would you like to initiate a review request?",
|
||||||
|
"wait_command_review": "The review request has been initiated, please wait for the review results"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"btn": {
|
||||||
|
"label": {
|
||||||
|
"submit": "Submit",
|
||||||
|
"cancel": "Cancel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,77 @@
|
||||||
|
{
|
||||||
|
"action": {
|
||||||
|
"refresh": "更新",
|
||||||
|
"new": "新規",
|
||||||
|
"new_query": "新規クエリ",
|
||||||
|
"view_data": "データ表示",
|
||||||
|
"show_properties": "プロパティ表示",
|
||||||
|
"label": {
|
||||||
|
"name": "名前",
|
||||||
|
"type": "タイプ",
|
||||||
|
"version": "バージョン",
|
||||||
|
"user": "ユーザー",
|
||||||
|
"jdbc_url": "JDBC URL",
|
||||||
|
"driver_class": "ドライバクラス",
|
||||||
|
"driver_version": "ドライババージョン"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"query": "クエリ",
|
||||||
|
"properties": "プロパティ",
|
||||||
|
"datasource_properties": "データソースのプロパティ"
|
||||||
|
},
|
||||||
|
"state": {
|
||||||
|
"connected": "接続済み"
|
||||||
|
},
|
||||||
|
"msg": {
|
||||||
|
"error": {
|
||||||
|
"fetch_error": "データ取得エラー",
|
||||||
|
"connect_error": "接続エラー",
|
||||||
|
"change_context_error": "コンテキスト変更エラー",
|
||||||
|
"parse_error": "解析エラー",
|
||||||
|
"execute_error": "実行エラー",
|
||||||
|
"already_first_page": "すでに最初のページです",
|
||||||
|
"already_last_page": "すでに最後のページです",
|
||||||
|
"perms_expired": "このセッションの権限が%sに失効しました",
|
||||||
|
"over_max_idle_time": "このセッションは%d分以上アイドル状態が続いたため、閉じられました",
|
||||||
|
"over_max_session_time": "このセッションは%d时以上継続したため、閉じられました",
|
||||||
|
"command_review_timeout": "コマンドレビューリクエストがタイムアウトしました",
|
||||||
|
"command_review_reject": "コマンドレビューリクエストは%sによって拒否されました",
|
||||||
|
"session_closed_by": "このセッションは%sによって閉じられました。",
|
||||||
|
"user_cancel_command_review": "ユーザーがコマンドレビューをキャンセルしました。",
|
||||||
|
"session_locked": "このセッションは一時停止されており、コマンドを続行できません",
|
||||||
|
"no_permission": " この操作を行う権限がありません",
|
||||||
|
"acl_reject": " この操作はACLによって拒否されました"
|
||||||
|
},
|
||||||
|
"success": {
|
||||||
|
"execute_success": "正常に実行されました",
|
||||||
|
"connect_success": "正常に接続されました"
|
||||||
|
},
|
||||||
|
"info": {
|
||||||
|
"affected_rows": "影響を受けた行数"
|
||||||
|
},
|
||||||
|
"dialog": {
|
||||||
|
"session_locked": "このセッションは%sロックされており、コマンドを実行できません",
|
||||||
|
"session_unlocked": "このセッションは%sロック解除されており、コマンドを実行できます",
|
||||||
|
"title": {
|
||||||
|
"init_datasource": "データソースの初期化",
|
||||||
|
"init_datasource_failed": "データソースの初期化失敗",
|
||||||
|
"error_message": "エラーメッセージ",
|
||||||
|
"session_finished": "セッション終了",
|
||||||
|
"command_review": "コマンドレビュー"
|
||||||
|
},
|
||||||
|
"message": {
|
||||||
|
"init_datasource": "データソースを初期化しています、お待ちください...",
|
||||||
|
"init_datasource_failed": "接続に失敗しました、データベース接続設定が正しいことを確認してください",
|
||||||
|
"command_review": "入力したコマンドは、実行前に検証が必要です。レビューリクエストを開始しますか?",
|
||||||
|
"wait_command_review": "レビューリクエストが開始されました、レビュー結果をお待ちください"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"btn": {
|
||||||
|
"label": {
|
||||||
|
"submit": "送信",
|
||||||
|
"cancel": "キャンセル"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,77 @@
|
||||||
|
{
|
||||||
|
"action": {
|
||||||
|
"refresh": "刷新",
|
||||||
|
"new": "新建",
|
||||||
|
"new_query": "新建查询",
|
||||||
|
"view_data": "查看数据",
|
||||||
|
"show_properties": "属性",
|
||||||
|
"label": {
|
||||||
|
"name": "名称",
|
||||||
|
"type": "类型",
|
||||||
|
"version": "版本",
|
||||||
|
"user": "用户",
|
||||||
|
"jdbc_url": "JDBC 链接",
|
||||||
|
"driver_class": "驱动类",
|
||||||
|
"driver_version": "驱动版本"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"query": "查询",
|
||||||
|
"properties": "属性",
|
||||||
|
"datasource_properties": "数据源属性"
|
||||||
|
},
|
||||||
|
"state": {
|
||||||
|
"connected": "已连接"
|
||||||
|
},
|
||||||
|
"msg": {
|
||||||
|
"error": {
|
||||||
|
"fetch_data": "获取数据失败",
|
||||||
|
"connect_error": "连接失败",
|
||||||
|
"change_context_error": "切换上下文错误",
|
||||||
|
"parse_error": "解析错误",
|
||||||
|
"execute_error": "执行错误",
|
||||||
|
"already_first_page": "已经是第一页",
|
||||||
|
"already_last_page": "已经是最后一页",
|
||||||
|
"user_cancel_command_review": "用户取消命令复核",
|
||||||
|
"command_review_timeout": "命令复核超时",
|
||||||
|
"command_review_reject": "命令复核被 %s 拒绝",
|
||||||
|
"perms_expired": "此会话关联的权限已于 %s 过期",
|
||||||
|
"over_max_idle_time": "由于此会话空闲时间大于 %d 分钟,已经被关闭",
|
||||||
|
"over_max_session_time": "由于此会话时间大于 %d 小时,已经被关闭",
|
||||||
|
"session_closed_by": "当前会话被管理员 %s 关闭",
|
||||||
|
"session_locked": "当前会话已被锁定,无法继续执行命令",
|
||||||
|
"no_permission": " 没有执行此操作的权限",
|
||||||
|
"acl_reject": " 此命令禁止被执行"
|
||||||
|
},
|
||||||
|
"success": {
|
||||||
|
"execute_success": "执行成功",
|
||||||
|
"connect_success": "连接成功"
|
||||||
|
},
|
||||||
|
"info": {
|
||||||
|
"affected_rows": "受影响行数"
|
||||||
|
},
|
||||||
|
"dialog": {
|
||||||
|
"session_locked": "此会话已被 %s 锁定,无法继续执行命令",
|
||||||
|
"session_unlocked": "此会话已被 %s 解锁,可以继续执行命令",
|
||||||
|
"title": {
|
||||||
|
"init_datasource": "初始化数据源",
|
||||||
|
"init_datasource_failed": "初始化数据源失败",
|
||||||
|
"error_message": "错误消息",
|
||||||
|
"session_finished": "会话已结束",
|
||||||
|
"command_review": "命令复核"
|
||||||
|
},
|
||||||
|
"message": {
|
||||||
|
"init_datasource": "正在初始化数据源,请稍候...",
|
||||||
|
"init_datasource_failed": "连接失败,请检查数据库连接配置是否正确",
|
||||||
|
"command_review": "您输入的命令需要复核后才可以执行, 是否发起复核请求?",
|
||||||
|
"wait_command_review": "复核请求已发起, 请等待复核结果"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"btn": {
|
||||||
|
"label": {
|
||||||
|
"submit": "提交",
|
||||||
|
"cancel": "取消"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,77 @@
|
||||||
|
{
|
||||||
|
"action": {
|
||||||
|
"refresh": "刷新",
|
||||||
|
"new": "新建",
|
||||||
|
"new_query": "新建查詢",
|
||||||
|
"view_data": "查看數據",
|
||||||
|
"show_properties": "屬性",
|
||||||
|
"label": {
|
||||||
|
"name": "名稱",
|
||||||
|
"type": "類型",
|
||||||
|
"version": "版本",
|
||||||
|
"user": "用戶",
|
||||||
|
"jdbc_url": "JDBC 連結",
|
||||||
|
"driver_class": "驅動類",
|
||||||
|
"driver_version": "驅動版本"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"query": "查詢",
|
||||||
|
"properties": "屬性",
|
||||||
|
"datasource_properties": "數據源屬性"
|
||||||
|
},
|
||||||
|
"state": {
|
||||||
|
"connected": "已連接"
|
||||||
|
},
|
||||||
|
"msg": {
|
||||||
|
"error": {
|
||||||
|
"fetch_data": "獲取數據失敗",
|
||||||
|
"connect_error": "連接失敗",
|
||||||
|
"change_context_error": "切換上下文錯誤",
|
||||||
|
"parse_error": "解析錯誤",
|
||||||
|
"execute_error": "執行錯誤",
|
||||||
|
"already_first_page": "已經是第一頁",
|
||||||
|
"already_last_page": "已經是最後一頁",
|
||||||
|
"user_cancel_command_review": "用戶取消命令覆核",
|
||||||
|
"command_review_timeout": "命令覆核超時",
|
||||||
|
"command_review_reject": "命令覆核被 %s 拒絕",
|
||||||
|
"perms_expired": "此會話關聯的權限已於 %s 過期",
|
||||||
|
"over_max_idle_time": "由於此會話空閒時間大於 %d 分鐘,已經被關閉",
|
||||||
|
"over_max_session_time": "由於此會話時間大於 %d 小時,已經被關閉",
|
||||||
|
"session_closed_by": "當前會話被管理員 %s 關閉",
|
||||||
|
"session_locked": "當前會話已被鎖定,無法繼續執行命令",
|
||||||
|
"no_permission": " 沒有執行此操作的權限",
|
||||||
|
"acl_reject": " 此命令禁止被執行"
|
||||||
|
},
|
||||||
|
"success": {
|
||||||
|
"execute_success": "執行成功",
|
||||||
|
"connect_success": "連接成功"
|
||||||
|
},
|
||||||
|
"info": {
|
||||||
|
"affected_rows": "受影響行數"
|
||||||
|
},
|
||||||
|
"dialog": {
|
||||||
|
"session_locked": "此會話已被 %s 鎖定,無法繼續執行命令",
|
||||||
|
"session_unlocked": "此會話已被 %s 解鎖,可以繼續執行命令",
|
||||||
|
"title": {
|
||||||
|
"init_datasource": "初始化數據源",
|
||||||
|
"init_datasource_failed": "初始化數據源失敗",
|
||||||
|
"error_message": "錯誤消息",
|
||||||
|
"session_finished": "會話已結束",
|
||||||
|
"command_review": "命令覆核"
|
||||||
|
},
|
||||||
|
"message": {
|
||||||
|
"init_datasource": "正在初始化數據源,請稍候...",
|
||||||
|
"init_datasource_failed": "連接失敗,請檢查資料庫連接配置是否正確",
|
||||||
|
"command_review": "您輸入的命令需要覆核後才可以執行, 是否發起覆核請求?",
|
||||||
|
"wait_command_review": "覆核請求已發起, 請等待覆核結果"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"btn": {
|
||||||
|
"label": {
|
||||||
|
"submit": "提交",
|
||||||
|
"cancel": "取消"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,52 @@
|
||||||
|
{
|
||||||
|
"ShareUser": "ForUser",
|
||||||
|
"ShareUserHelpText": "If left blank, everyone could join the session.",
|
||||||
|
"GetShareUser": "Enter username",
|
||||||
|
"UploadSuccess": "Upload success",
|
||||||
|
"MustSelectOneFile": "Must select one file",
|
||||||
|
"MustOneFile": "Only support to select one file",
|
||||||
|
"DownloadSuccess": "Download success",
|
||||||
|
"Download": "Download",
|
||||||
|
"Upload": "Upload",
|
||||||
|
"Cancel": "Cancel",
|
||||||
|
"UploadTitle": "file upload",
|
||||||
|
"UploadTips": "Drag file here or click to upload",
|
||||||
|
"Share": "Share",
|
||||||
|
"CopyShareURLSuccess": "Copy Share URL Success",
|
||||||
|
"ThemeConfig": "Theme",
|
||||||
|
"OnlineUsers": "Online Users",
|
||||||
|
"User": "User",
|
||||||
|
"VerifyCode": "Verify Code",
|
||||||
|
"LinkAddr": "Link",
|
||||||
|
"ExpiredTime": "Expired",
|
||||||
|
"SelectAction": "Select",
|
||||||
|
"CreateSuccess": "Success",
|
||||||
|
"CreateLink": "Create Share Link",
|
||||||
|
"CopyLink": "Copy Link Address and Code",
|
||||||
|
"NoLink": "No Link",
|
||||||
|
"ConfirmBtn": "Confirm",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Theme": "Theme",
|
||||||
|
"SelectTheme": "Select Theme",
|
||||||
|
"ThemeColors": "Theme Colors",
|
||||||
|
"ExceedTransferSize": "exceed max transfer size",
|
||||||
|
"WaitFileTransfer": "Wait file transfer to finish",
|
||||||
|
"EndFileTransfer": "File transfer end",
|
||||||
|
"ReadOnly": "Read-Only",
|
||||||
|
"Writable" : "Writable",
|
||||||
|
"ActionPerm": "Actions",
|
||||||
|
"Self": "Self",
|
||||||
|
"RemoveShareUser": "You have been removed from the shared session.",
|
||||||
|
"JoinShare": "Join Session",
|
||||||
|
"LeaveShare": "Leave Session",
|
||||||
|
"Remove": "Remove",
|
||||||
|
"RemoveShareUserConfirm": "Are you sure to remove the user from the shared session?",
|
||||||
|
"Minute": "Minute",
|
||||||
|
"Minutes": "Minutes",
|
||||||
|
"PauseSession" : "Pause Session",
|
||||||
|
"ResumeSession" : "Resume Session",
|
||||||
|
"SyncUserPreferenceSuccess": "Sync user preference success",
|
||||||
|
"SyncUserPreferenceFailed": "Sync user preference failed",
|
||||||
|
"Sync": "Sync",
|
||||||
|
"InputVerifyCode": "Input Verify Code"
|
||||||
|
}
|
|
@ -0,0 +1,52 @@
|
||||||
|
{
|
||||||
|
"ShareUser": "共有ユーザー",
|
||||||
|
"ShareUserHelpText": "ユーザーが選択されていません。つまり、すべての人が参加できます。",
|
||||||
|
"GetShareUser": "ユーザー名の入力",
|
||||||
|
"UploadSuccess": "アップロード成功",
|
||||||
|
"MustSelectOneFile": "ファイルを選択する必要があります",
|
||||||
|
"MustOneFile": "ファイルを1つだけ選択できます",
|
||||||
|
"DownloadSuccess": "ダウンロードに成功しました",
|
||||||
|
"Download": "ダウンロード",
|
||||||
|
"Upload": "アップロード",
|
||||||
|
"Cancel": "キャンセル",
|
||||||
|
"UploadTitle": "ファイルのアップロード",
|
||||||
|
"UploadTips": "ファイルをここにドラッグするか、アップロードをクリックします",
|
||||||
|
"Share": "シェア",
|
||||||
|
"CopyShareURLSuccess": "レプリケーション共有住所成功",
|
||||||
|
"ThemeConfig": "テーマ",
|
||||||
|
"OnlineUsers": "オンラインスタッフ",
|
||||||
|
"User": "ユーザー",
|
||||||
|
"VerifyCode": "認証コード",
|
||||||
|
"LinkAddr": "リンク先",
|
||||||
|
"ExpiredTime": "有効期限",
|
||||||
|
"SelectAction": "選択してください",
|
||||||
|
"CreateSuccess": "作成に成功しました",
|
||||||
|
"CreateLink": "シェアリンクの作成",
|
||||||
|
"CopyLink": "リンクと認証コードのコピー",
|
||||||
|
"NoLink": "住所なし",
|
||||||
|
"ConfirmBtn": "確定",
|
||||||
|
"Settings": "設定",
|
||||||
|
"Theme": "テーマ",
|
||||||
|
"SelectTheme": "テーマを選択してください",
|
||||||
|
"ThemeColors": "テーマカラー",
|
||||||
|
"ExceedTransferSize": "最大転送サイズを超えています",
|
||||||
|
"WaitFileTransfer": "ファイル転送終了待ち",
|
||||||
|
"EndFileTransfer": "ファイル転送終了",
|
||||||
|
"ReadOnly": "読み取り専用",
|
||||||
|
"Writable" : "書き込み可能",
|
||||||
|
"ActionPerm": "アクション権限",
|
||||||
|
"Self": "自分",
|
||||||
|
"RemoveShareUser": "あなたはすでに共有セッションから削除されました」という意味です",
|
||||||
|
"JoinShare": "共有セッションに参加",
|
||||||
|
"LeaveShare": "共有セッションから退出",
|
||||||
|
"Remove": "削除",
|
||||||
|
"RemoveShareUserConfirm": "共有セッションから削除してもよろしいですか?",
|
||||||
|
"Minute": "分間",
|
||||||
|
"Minutes": "分間",
|
||||||
|
"PauseSession" : "セッションを一時停止",
|
||||||
|
"ResumeSession" : "セッションを再開",
|
||||||
|
"SyncUserPreferenceSuccess": "ユーザー設定の同期に成功しました",
|
||||||
|
"SyncUserPreferenceFailed": "ユーザー設定の同期に失敗しました",
|
||||||
|
"Sync": "同期",
|
||||||
|
"InputVerifyCode": "認証コードを入力してください"
|
||||||
|
}
|
|
@ -0,0 +1,52 @@
|
||||||
|
{
|
||||||
|
"ShareUser": "分享用户",
|
||||||
|
"ShareUserHelpText": "未选择用户,即允许所有人加入",
|
||||||
|
"GetShareUser": "输入用户名",
|
||||||
|
"UploadSuccess": "上传成功",
|
||||||
|
"MustSelectOneFile": "必须选择一个文件",
|
||||||
|
"MustOneFile": "只能选择一个文件",
|
||||||
|
"DownloadSuccess": "下载成功",
|
||||||
|
"Download": "下载",
|
||||||
|
"Upload": "上传",
|
||||||
|
"Cancel": "取消",
|
||||||
|
"UploadTitle": "上传文件",
|
||||||
|
"UploadTips": "将文件拖到此处,或点击上传",
|
||||||
|
"Share": "分享",
|
||||||
|
"CopyShareURLSuccess": "复制分享地址成功",
|
||||||
|
"ThemeConfig": "主题",
|
||||||
|
"OnlineUsers": "在线人员",
|
||||||
|
"User": "用户",
|
||||||
|
"VerifyCode": "验证码",
|
||||||
|
"LinkAddr": "链接地址",
|
||||||
|
"ExpiredTime": "有效期限",
|
||||||
|
"SelectAction": "请选择",
|
||||||
|
"CreateSuccess": "创建成功",
|
||||||
|
"CreateLink": "创建分享链接",
|
||||||
|
"CopyLink": "复制链接及验证码",
|
||||||
|
"NoLink": "无地址",
|
||||||
|
"ConfirmBtn": "确定",
|
||||||
|
"Settings": "设置",
|
||||||
|
"Theme": "主题",
|
||||||
|
"SelectTheme": "请选择主题",
|
||||||
|
"ThemeColors": "主题颜色",
|
||||||
|
"ExceedTransferSize": "超过最大传输大小",
|
||||||
|
"WaitFileTransfer": "等待文件传输结束",
|
||||||
|
"EndFileTransfer": "文件传输结束",
|
||||||
|
"ReadOnly": "只读",
|
||||||
|
"Writable" : "读写",
|
||||||
|
"ActionPerm": "操作权限",
|
||||||
|
"Self": "我",
|
||||||
|
"RemoveShareUser": "你已经被移除共享会话",
|
||||||
|
"JoinShare": "加入共享",
|
||||||
|
"LeaveShare": "离开共享",
|
||||||
|
"Remove": "移除",
|
||||||
|
"RemoveShareUserConfirm": "确定要移除该用户吗?",
|
||||||
|
"Minute": "分钟",
|
||||||
|
"Minutes": "分钟",
|
||||||
|
"PauseSession" : "暂停此会话",
|
||||||
|
"ResumeSession" : "恢复此会话",
|
||||||
|
"SyncUserPreferenceSuccess": "同步设置成功",
|
||||||
|
"SyncUserPreferenceFailed": "同步设置失败",
|
||||||
|
"Sync": "同步",
|
||||||
|
"InputVerifyCode": "请输入验证码"
|
||||||
|
}
|
|
@ -0,0 +1,52 @@
|
||||||
|
{
|
||||||
|
"ShareUser": "分享用戶",
|
||||||
|
"ShareUserHelpText": "未選擇用戶,即允許所有人加入",
|
||||||
|
"GetShareUser": "輸入使用者名稱",
|
||||||
|
"UploadSuccess": "上傳成功",
|
||||||
|
"MustSelectOneFile": "必須選擇一個文件",
|
||||||
|
"MustOneFile": "只能選擇一個文件",
|
||||||
|
"DownloadSuccess": "下載成功",
|
||||||
|
"Download": "下載",
|
||||||
|
"Upload": "上傳",
|
||||||
|
"Cancel": "取消",
|
||||||
|
"UploadTitle": "上傳文件",
|
||||||
|
"UploadTips": "將文件拖到此處,或點擊上傳",
|
||||||
|
"Share": "分享",
|
||||||
|
"CopyShareURLSuccess": "複製分享地址成功",
|
||||||
|
"ThemeConfig": "主題",
|
||||||
|
"OnlineUsers": "在線人員",
|
||||||
|
"User": "用戶",
|
||||||
|
"VerifyCode": "驗證碼",
|
||||||
|
"LinkAddr": "連結地址",
|
||||||
|
"ExpiredTime": "有效期限",
|
||||||
|
"SelectAction": "請選擇",
|
||||||
|
"CreateSuccess": "創建成功",
|
||||||
|
"CreateLink": "創建分享連結",
|
||||||
|
"CopyLink": "複製連結及驗證碼",
|
||||||
|
"NoLink": "無地址",
|
||||||
|
"ConfirmBtn": "確定",
|
||||||
|
"Settings": "設置",
|
||||||
|
"Theme": "主題",
|
||||||
|
"SelectTheme": "請選擇主題",
|
||||||
|
"ThemeColors": "主題顏色",
|
||||||
|
"ExceedTransferSize": "超過最大傳輸大小",
|
||||||
|
"WaitFileTransfer": "等待文件傳輸結束",
|
||||||
|
"EndFileTransfer": "文件傳輸結束",
|
||||||
|
"ReadOnly": "只讀",
|
||||||
|
"Writable": "讀寫",
|
||||||
|
"ActionPerm": "操作權限",
|
||||||
|
"Self": "我",
|
||||||
|
"RemoveShareUser": "你已經被移除共享會話",
|
||||||
|
"JoinShare": "加入共享",
|
||||||
|
"LeaveShare": "離開共享",
|
||||||
|
"Remove": "移除",
|
||||||
|
"RemoveShareUserConfirm": "確定要移除該用戶嗎?",
|
||||||
|
"Minute": "分鐘",
|
||||||
|
"Minutes": "分鐘",
|
||||||
|
"PauseSession": "暫停此會話",
|
||||||
|
"ResumeSession": "恢復此會話",
|
||||||
|
"SyncUserPreferenceSuccess": "同步設定成功",
|
||||||
|
"SyncUserPreferenceFailed": "同步設定失敗",
|
||||||
|
"Sync": "同步",
|
||||||
|
"InputVerifyCode": "請輸入驗證碼"
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"ACLs": "ACLs",
|
"ACLs": "ACLs",
|
||||||
"APIKey": "Api key",
|
"APIKey": "API key",
|
||||||
"AWS_China": "AWS(China)",
|
"AWS_China": "AWS(China)",
|
||||||
"AWS_Int": "AWS(International)",
|
"AWS_Int": "AWS(International)",
|
||||||
"About": "About",
|
"About": "About",
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
"ActionCount": "Action count",
|
"ActionCount": "Action count",
|
||||||
"PermAction": "Permission Action",
|
"PermAction": "Permission Action",
|
||||||
"ActionSetting": "Action setting",
|
"ActionSetting": "Action setting",
|
||||||
"Actions": "Action",
|
"Actions": "Actions",
|
||||||
"ActionsTips": "The effects of each authority's agreement are different, click on the icon behind the authority to view",
|
"ActionsTips": "The effects of each authority's agreement are different, click on the icon behind the authority to view",
|
||||||
"Activate": "Activate",
|
"Activate": "Activate",
|
||||||
"ActivateSelected": "Activate selected",
|
"ActivateSelected": "Activate selected",
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
"Announcement": "Announcement",
|
"Announcement": "Announcement",
|
||||||
"AnonymousAccount": "Anonymous account",
|
"AnonymousAccount": "Anonymous account",
|
||||||
"AnonymousAccountTip": "Connect to assets without using username and password, only support web type and custom type assets",
|
"AnonymousAccountTip": "Connect to assets without using username and password, only support web type and custom type assets",
|
||||||
"ApiKey": "Api key",
|
"ApiKey": "API key",
|
||||||
"ApiKeyList": "Authenticate via api key in the header of each request, which differs from one request to another, offering greater security than token method. please consult the documentation for usage.<br>to minimize the risk of leaks, the secret can only be viewed upon creation, and each user can create up to 10",
|
"ApiKeyList": "Authenticate via api key in the header of each request, which differs from one request to another, offering greater security than token method. please consult the documentation for usage.<br>to minimize the risk of leaks, the secret can only be viewed upon creation, and each user can create up to 10",
|
||||||
"ApiKeyWarning": "To reduce the risk of accesskey leakage, the secret is only provided at creation and cannot be queried later, please keep it safe.",
|
"ApiKeyWarning": "To reduce the risk of accesskey leakage, the secret is only provided at creation and cannot be queried later, please keep it safe.",
|
||||||
"AppEndpoint": "App access address",
|
"AppEndpoint": "App access address",
|
||||||
|
@ -149,7 +149,7 @@
|
||||||
"AssetProtocolHelpText": "! The protocols supported by the assets are restricted by the platform. Click the settings button to view the protocol settings. If updates are required, please update the platform",
|
"AssetProtocolHelpText": "! The protocols supported by the assets are restricted by the platform. Click the settings button to view the protocol settings. If updates are required, please update the platform",
|
||||||
"AssetTree": "Asset tree",
|
"AssetTree": "Asset tree",
|
||||||
"Assets": "Assets",
|
"Assets": "Assets",
|
||||||
"AssetsAmount": "Asset amount",
|
"AssetsOfNumber": "Number of asset",
|
||||||
"AssetsTotal": "Total assets",
|
"AssetsTotal": "Total assets",
|
||||||
"AssignedInfo": "Approval information",
|
"AssignedInfo": "Approval information",
|
||||||
"Assignee": "Handler",
|
"Assignee": "Handler",
|
||||||
|
@ -158,6 +158,7 @@
|
||||||
"AttrValue": "Attribute value",
|
"AttrValue": "Attribute value",
|
||||||
"Audits": "Audits",
|
"Audits": "Audits",
|
||||||
"Auth": "Authentication",
|
"Auth": "Authentication",
|
||||||
|
"AuthConfig": "Authentication",
|
||||||
"AuthLimit": "Login restriction",
|
"AuthLimit": "Login restriction",
|
||||||
"AuthSAMLCertHelpText": "Save after uploading the certificate key, then view sp metadata",
|
"AuthSAMLCertHelpText": "Save after uploading the certificate key, then view sp metadata",
|
||||||
"AuthSAMLKeyHelpText": "Sp certificates and keys are used for encrypted communication with idp",
|
"AuthSAMLKeyHelpText": "Sp certificates and keys are used for encrypted communication with idp",
|
||||||
|
@ -169,7 +170,7 @@
|
||||||
"AutoPush": "Auto push",
|
"AutoPush": "Auto push",
|
||||||
"Automations": "Automations",
|
"Automations": "Automations",
|
||||||
"AverageTimeCost": "Average spend time",
|
"AverageTimeCost": "Average spend time",
|
||||||
"AwaitingMyApproval": "Approval pending",
|
"AwaitingMyApproval": "Assigned",
|
||||||
"Azure": "Azure (china)",
|
"Azure": "Azure (china)",
|
||||||
"Backup": "Backup",
|
"Backup": "Backup",
|
||||||
"BackupAccountsHelpText": "Backup account information externally. it can be stored in an external system or sent via email, supporting segmented delivery.",
|
"BackupAccountsHelpText": "Backup account information externally. it can be stored in an external system or sent via email, supporting segmented delivery.",
|
||||||
|
@ -207,7 +208,6 @@
|
||||||
"CACertificate": "Ca certificate",
|
"CACertificate": "Ca certificate",
|
||||||
"CAS": "CAS",
|
"CAS": "CAS",
|
||||||
"CMPP2": "Cmpp v2.0",
|
"CMPP2": "Cmpp v2.0",
|
||||||
"CTYunPrivate": "Tianyi private cloud",
|
|
||||||
"CalculationResults": "Error in cron expression",
|
"CalculationResults": "Error in cron expression",
|
||||||
"CanDragSelect": "Select time period by dragging mouse",
|
"CanDragSelect": "Select time period by dragging mouse",
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
|
@ -223,7 +223,7 @@
|
||||||
"ChangeOrganization": "Change organization",
|
"ChangeOrganization": "Change organization",
|
||||||
"ChangePassword": "Change password",
|
"ChangePassword": "Change password",
|
||||||
"EditRecipient": "Edit recipient",
|
"EditRecipient": "Edit recipient",
|
||||||
"ChangeSecretParams": "Change password parameters",
|
"ChangeSecretParams": "Change secret parameters",
|
||||||
"ChangeViewHelpText": "Click to switch different views",
|
"ChangeViewHelpText": "Click to switch different views",
|
||||||
"Chat": "Chat",
|
"Chat": "Chat",
|
||||||
"ChatHello": "Hello! Can i help you?",
|
"ChatHello": "Hello! Can i help you?",
|
||||||
|
@ -251,12 +251,13 @@
|
||||||
"Closed": "Completed",
|
"Closed": "Completed",
|
||||||
"CloudAccountCreate": "Create a cloud account",
|
"CloudAccountCreate": "Create a cloud account",
|
||||||
"CloudAccountDetail": "Details of cloud account",
|
"CloudAccountDetail": "Details of cloud account",
|
||||||
"CloudAccountList": "Cloud accounts",
|
"CloudAccountList": "Accounts",
|
||||||
"CloudAccountUpdate": "Update the cloud account",
|
"CloudAccountUpdate": "Update the cloud account",
|
||||||
"CloudCreate": "Create asset - cloud",
|
"CloudCreate": "Create asset - cloud",
|
||||||
"CloudRegionTip": "The region was not obtained, please check the account",
|
"CloudRegionTip": "The region was not obtained, please check the account",
|
||||||
"CloudSource": "Sync source",
|
"CloudSource": "Sync source",
|
||||||
"CloudSync": "Cloud provider",
|
"CloudSync": "Cloud provider",
|
||||||
|
"CloudSyncConfig": "Cloud sync settings",
|
||||||
"CloudUpdate": "Update the asset - cloud",
|
"CloudUpdate": "Update the asset - cloud",
|
||||||
"Cluster": "Cluster",
|
"Cluster": "Cluster",
|
||||||
"CollectionSucceed": "Collection successful",
|
"CollectionSucceed": "Collection successful",
|
||||||
|
@ -373,6 +374,7 @@
|
||||||
"DatePasswordLastUpdated": "Last password update date",
|
"DatePasswordLastUpdated": "Last password update date",
|
||||||
"DateStart": "Start date",
|
"DateStart": "Start date",
|
||||||
"DateSync": "Sync date",
|
"DateSync": "Sync date",
|
||||||
|
"Datetime": "Datetime",
|
||||||
"DateUpdated": "Update date",
|
"DateUpdated": "Update date",
|
||||||
"Day": "Day",
|
"Day": "Day",
|
||||||
"DeclassificationLogNum": "Password change logs",
|
"DeclassificationLogNum": "Password change logs",
|
||||||
|
@ -592,7 +594,7 @@
|
||||||
"IsActive": "Active",
|
"IsActive": "Active",
|
||||||
"IsAlwaysUpdate": "Keeping assets up to date",
|
"IsAlwaysUpdate": "Keeping assets up to date",
|
||||||
"IsAlwaysUpdateHelpTip": "Whether to synchronize and update asset information, including hostname, ip, platform, domain, node, etc. each time a synchronization task is performed",
|
"IsAlwaysUpdateHelpTip": "Whether to synchronize and update asset information, including hostname, ip, platform, domain, node, etc. each time a synchronization task is performed",
|
||||||
"IsFinished": "Is it done",
|
"IsFinished": "Finished",
|
||||||
"IsLocked": "Suspend",
|
"IsLocked": "Suspend",
|
||||||
"IsSuccess": "Success",
|
"IsSuccess": "Success",
|
||||||
"IsSyncAccountHelpText": "Upon collection completion, the collected account will be synced to asset",
|
"IsSyncAccountHelpText": "Upon collection completion, the collected account will be synced to asset",
|
||||||
|
@ -654,7 +656,7 @@
|
||||||
"LoginNum": "Total login logs",
|
"LoginNum": "Total login logs",
|
||||||
"LoginPasswordSetting": "Login password",
|
"LoginPasswordSetting": "Login password",
|
||||||
"LoginRequiredMsg": "The account has logged out, please login again.",
|
"LoginRequiredMsg": "The account has logged out, please login again.",
|
||||||
"LoginSSHKeySetting": "Login SSH Key",
|
"LoginSSHKeySetting": "Login SSH key",
|
||||||
"LoginSucceeded": "Login successful",
|
"LoginSucceeded": "Login successful",
|
||||||
"LoginTitleTip": "Note: it will be displayed on the enterprise edition user ssh login koko login page (e.g.: welcome to use jumpserver open source bastion)",
|
"LoginTitleTip": "Note: it will be displayed on the enterprise edition user ssh login koko login page (e.g.: welcome to use jumpserver open source bastion)",
|
||||||
"LoginUserRanking": "Login user ranking",
|
"LoginUserRanking": "Login user ranking",
|
||||||
|
@ -701,7 +703,7 @@
|
||||||
"MoveAssetToNode": "Move assets to nodes",
|
"MoveAssetToNode": "Move assets to nodes",
|
||||||
"MsgSubscribe": "Subscription",
|
"MsgSubscribe": "Subscription",
|
||||||
"MyAssets": "My assets",
|
"MyAssets": "My assets",
|
||||||
"MyTickets": "I initiated",
|
"MyTickets": "Submitted",
|
||||||
"Name": "Name",
|
"Name": "Name",
|
||||||
"NavHelp": "Navigation",
|
"NavHelp": "Navigation",
|
||||||
"NeedReLogin": "Need to re-login",
|
"NeedReLogin": "Need to re-login",
|
||||||
|
@ -713,7 +715,7 @@
|
||||||
"NewFile": "Create new file",
|
"NewFile": "Create new file",
|
||||||
"NewPassword": "New password",
|
"NewPassword": "New password",
|
||||||
"NewPublicKey": "New Public Key",
|
"NewPublicKey": "New Public Key",
|
||||||
"NewSSHKey": "New SSH Key",
|
"NewSSHKey": "New SSH key",
|
||||||
"NewSyncCount": "New sync",
|
"NewSyncCount": "New sync",
|
||||||
"Next": "Next",
|
"Next": "Next",
|
||||||
"No": "No",
|
"No": "No",
|
||||||
|
@ -725,7 +727,7 @@
|
||||||
"NoPermissionVew": "No permission to view the current page",
|
"NoPermissionVew": "No permission to view the current page",
|
||||||
"NoUnreadMsg": "You have unread notifications",
|
"NoUnreadMsg": "You have unread notifications",
|
||||||
"Node": "Node",
|
"Node": "Node",
|
||||||
"NodeAmount": "Nodes",
|
"NodeOfNumber": "Number of node",
|
||||||
"NodeInformation": "Node information",
|
"NodeInformation": "Node information",
|
||||||
"NodeSearchStrategy": "Node search strategy",
|
"NodeSearchStrategy": "Node search strategy",
|
||||||
"NormalLoad": "Normal",
|
"NormalLoad": "Normal",
|
||||||
|
@ -790,7 +792,7 @@
|
||||||
"PasskeyAddDisableInfo": "Your authentication source is {source}, and adding a passkey is not supported",
|
"PasskeyAddDisableInfo": "Your authentication source is {source}, and adding a passkey is not supported",
|
||||||
"Passphrase": "Key password",
|
"Passphrase": "Key password",
|
||||||
"Password": "Password",
|
"Password": "Password",
|
||||||
"PasswordAndSSHKey": "Password & SSH Key",
|
"PasswordAndSSHKey": "Password & SSH key",
|
||||||
"PasswordChangeLog": "Password change",
|
"PasswordChangeLog": "Password change",
|
||||||
"PasswordExpired": "Password expired",
|
"PasswordExpired": "Password expired",
|
||||||
"PasswordPlaceholder": "Please enter password",
|
"PasswordPlaceholder": "Please enter password",
|
||||||
|
@ -828,6 +830,7 @@
|
||||||
"Port": "Port",
|
"Port": "Port",
|
||||||
"Ports": "Port",
|
"Ports": "Port",
|
||||||
"Preferences": "Preferences",
|
"Preferences": "Preferences",
|
||||||
|
"PrepareSyncTask": "Preparing to perform synchronization task...",
|
||||||
"Primary": "Primary",
|
"Primary": "Primary",
|
||||||
"Priority": "Priority",
|
"Priority": "Priority",
|
||||||
"PrivateCloud": "Private cloud",
|
"PrivateCloud": "Private cloud",
|
||||||
|
@ -882,6 +885,8 @@
|
||||||
"RegularlyPerform": "Periodic execution",
|
"RegularlyPerform": "Periodic execution",
|
||||||
"Reject": "Reject",
|
"Reject": "Reject",
|
||||||
"Rejected": "Rejected",
|
"Rejected": "Rejected",
|
||||||
|
"ReleaseAssets": "Release assets",
|
||||||
|
"ReleaseAssetsHelpTips": "Whether to automatically delete assets synchronized through this task and released on the cloud at the end of the task",
|
||||||
"ReleasedCount": "Released",
|
"ReleasedCount": "Released",
|
||||||
"RelevantApp": "Application",
|
"RelevantApp": "Application",
|
||||||
"RelevantAsset": "Assets",
|
"RelevantAsset": "Assets",
|
||||||
|
@ -967,10 +972,10 @@
|
||||||
"SMS": "Message",
|
"SMS": "Message",
|
||||||
"SMSProvider": "SMS service provider",
|
"SMSProvider": "SMS service provider",
|
||||||
"SMTP": "Server",
|
"SMTP": "Server",
|
||||||
"SSHKey": "SSH Key",
|
"SSHKey": "SSH key",
|
||||||
"SSHKeyOfProfileSSHUpdatePage": "You can reset and download the SSH public key by clicking the button below, or copy your SSH public key and submit it.",
|
"SSHKeyOfProfileSSHUpdatePage": "You can reset and download the SSH public key by clicking the button below, or copy your SSH public key and submit it.",
|
||||||
"SSHPort": "SSH Port",
|
"SSHPort": "SSH Port",
|
||||||
"SSHSecretKey": "SSH Key",
|
"SSHSecretKey": "SSH secret key",
|
||||||
"SafeCommand": "Secure command",
|
"SafeCommand": "Secure command",
|
||||||
"SameAccount": "Same account",
|
"SameAccount": "Same account",
|
||||||
"SameAccountTip": "Account with the same username as authorized users",
|
"SameAccountTip": "Account with the same username as authorized users",
|
||||||
|
@ -1005,6 +1010,7 @@
|
||||||
"SelectLabelFilter": "Select tag for search",
|
"SelectLabelFilter": "Select tag for search",
|
||||||
"SelectPlatforms": "Select platform",
|
"SelectPlatforms": "Select platform",
|
||||||
"SelectProperties": "Attributes",
|
"SelectProperties": "Attributes",
|
||||||
|
"SelectProviderMsg": "Please select a cloud platform",
|
||||||
"SelectResource": "Select resources",
|
"SelectResource": "Select resources",
|
||||||
"SelectTemplate": "Select template",
|
"SelectTemplate": "Select template",
|
||||||
"SelectValueOrCreateNew": "Select tag value or create new one",
|
"SelectValueOrCreateNew": "Select tag value or create new one",
|
||||||
|
@ -1068,6 +1074,7 @@
|
||||||
"Startswith": "Starts with...",
|
"Startswith": "Starts with...",
|
||||||
"State": "Status",
|
"State": "Status",
|
||||||
"StateClosed": "Is closed",
|
"StateClosed": "Is closed",
|
||||||
|
"StatePrivate": "State private",
|
||||||
"Status": "Status",
|
"Status": "Status",
|
||||||
"StatusGreen": "Recently in good condition",
|
"StatusGreen": "Recently in good condition",
|
||||||
"StatusRed": "Last task execution failed",
|
"StatusRed": "Last task execution failed",
|
||||||
|
@ -1096,6 +1103,7 @@
|
||||||
"SupportedProtocol": "Protocols",
|
"SupportedProtocol": "Protocols",
|
||||||
"SupportedProtocolHelpText": "Set supported protocols for the asset, you can modify the custom configurations, such as sftp directory, rdp ad domain, etc., by clicking on the set button",
|
"SupportedProtocolHelpText": "Set supported protocols for the asset, you can modify the custom configurations, such as sftp directory, rdp ad domain, etc., by clicking on the set button",
|
||||||
"Sync": "Sync",
|
"Sync": "Sync",
|
||||||
|
"SyncAction": "Synchronized action",
|
||||||
"SyncDelete": "Sync deletion",
|
"SyncDelete": "Sync deletion",
|
||||||
"SyncDeleteSelected": "Sync deletion selected",
|
"SyncDeleteSelected": "Sync deletion selected",
|
||||||
"SyncErrorMsg": "Sync failed",
|
"SyncErrorMsg": "Sync failed",
|
||||||
|
@ -1106,11 +1114,15 @@
|
||||||
"SyncInstanceTaskList": "Synchronization task",
|
"SyncInstanceTaskList": "Synchronization task",
|
||||||
"SyncInstanceTaskUpdate": "Update the sync task",
|
"SyncInstanceTaskUpdate": "Update the sync task",
|
||||||
"SyncProtocolToAsset": "Sync protocols to assets",
|
"SyncProtocolToAsset": "Sync protocols to assets",
|
||||||
|
"SyncManual": "Manual sync",
|
||||||
|
"SyncOnline": "Online sync",
|
||||||
|
"SyncRegion": "Sync region",
|
||||||
"SyncSelected": "Sync selected",
|
"SyncSelected": "Sync selected",
|
||||||
"SyncSetting": "Sync settings",
|
"SyncSetting": "Sync settings",
|
||||||
"SyncStrategy": "Sync policy",
|
"SyncStrategy": "Sync policy",
|
||||||
"SyncSuccessMsg": "Sync succeeded",
|
"SyncSuccessMsg": "Sync succeeded",
|
||||||
"SyncTask": "Sync tasks",
|
"SyncTask": "Sync tasks",
|
||||||
|
"SyncTiming": "Timing sync",
|
||||||
"SyncUpdateAccountInfo": "Sync new secret to accounts",
|
"SyncUpdateAccountInfo": "Sync new secret to accounts",
|
||||||
"SyncUser": "Sync users",
|
"SyncUser": "Sync users",
|
||||||
"SyncedCount": "Synchronized",
|
"SyncedCount": "Synchronized",
|
||||||
|
@ -1179,6 +1191,9 @@
|
||||||
"TotalJobFailed": "Failed execution actions",
|
"TotalJobFailed": "Failed execution actions",
|
||||||
"TotalJobLog": "Total job executions",
|
"TotalJobLog": "Total job executions",
|
||||||
"TotalJobRunning": "Running jobs",
|
"TotalJobRunning": "Running jobs",
|
||||||
|
"TotalSyncAsset": "Number of assets",
|
||||||
|
"TotalSyncRegion": "Number of regions",
|
||||||
|
"TotalSyncStrategy": "Number of strategies",
|
||||||
"Transfer": "Transfer",
|
"Transfer": "Transfer",
|
||||||
"Tuesday": "Tue",
|
"Tuesday": "Tue",
|
||||||
"TwoAssignee": "Subscribe to authorization id",
|
"TwoAssignee": "Subscribe to authorization id",
|
||||||
|
@ -1226,7 +1241,7 @@
|
||||||
"UseSSL": "Use ssl/tls",
|
"UseSSL": "Use ssl/tls",
|
||||||
"User": "User",
|
"User": "User",
|
||||||
"UserAclLists": "Login ACLs",
|
"UserAclLists": "Login ACLs",
|
||||||
"UserAssetActivity": "User/asset activity",
|
"UserAssetActivity": "User/Asset activity",
|
||||||
"UserCreate": "Create user",
|
"UserCreate": "Create user",
|
||||||
"UserData": "User",
|
"UserData": "User",
|
||||||
"UserDetail": "User details",
|
"UserDetail": "User details",
|
||||||
|
@ -1252,7 +1267,7 @@
|
||||||
"UsernamePlaceholder": "Please enter username",
|
"UsernamePlaceholder": "Please enter username",
|
||||||
"Users": "User",
|
"Users": "User",
|
||||||
"UsersAmount": "User",
|
"UsersAmount": "User",
|
||||||
"UsersAndUserGroups": "Users/user groups",
|
"UsersAndUserGroups": "Users/groups",
|
||||||
"UsersTotal": "Total accounts",
|
"UsersTotal": "Total accounts",
|
||||||
"Valid": "Valid",
|
"Valid": "Valid",
|
||||||
"Variable": "Variable",
|
"Variable": "Variable",
|
||||||
|
|
|
@ -34,10 +34,10 @@
|
||||||
"AccountTemplateList": "アカウントテンプレートリスト",
|
"AccountTemplateList": "アカウントテンプレートリスト",
|
||||||
"AccountTemplateUpdateSecretHelpText": "テンプレートによって作成されたアカウントをアカウントリストに表示します。秘密の文を更新すると、テンプレートで作成されたアカウントの秘密の文も更新されます。",
|
"AccountTemplateUpdateSecretHelpText": "テンプレートによって作成されたアカウントをアカウントリストに表示します。秘密の文を更新すると、テンプレートで作成されたアカウントの秘密の文も更新されます。",
|
||||||
"Accounts": "アカウント",
|
"Accounts": "アカウント",
|
||||||
"Action": "Action",
|
"Action": "動作",
|
||||||
"ActionCount": "Action数",
|
"ActionCount": "Action数",
|
||||||
"ActionSetting": "Action設定",
|
"ActionSetting": "Action設定",
|
||||||
"Actions": "Action",
|
"Actions": "操作",
|
||||||
"ActionsTips": "各権限の役割はプロトコルにより異なります、アイコンをクリックして確認してください",
|
"ActionsTips": "各権限の役割はプロトコルにより異なります、アイコンをクリックして確認してください",
|
||||||
"Activate": "有効化",
|
"Activate": "有効化",
|
||||||
"ActivateSelected": "選択を有効化",
|
"ActivateSelected": "選択を有効化",
|
||||||
|
@ -152,6 +152,7 @@
|
||||||
"AttrValue": "プロパティ値",
|
"AttrValue": "プロパティ値",
|
||||||
"Audits": "監査台",
|
"Audits": "監査台",
|
||||||
"Auth": "認証設定",
|
"Auth": "認証設定",
|
||||||
|
"AuthConfig": "資格認定構成",
|
||||||
"AuthLimit": "ログイン制限",
|
"AuthLimit": "ログイン制限",
|
||||||
"AuthSAMLCertHelpText": "証明書キーをアップロードした後で保存し、SP Metadataを確認してください",
|
"AuthSAMLCertHelpText": "証明書キーをアップロードした後で保存し、SP Metadataを確認してください",
|
||||||
"AuthSAMLKeyHelpText": "SP 証明書とキーはIDPとの暗号化通信用です",
|
"AuthSAMLKeyHelpText": "SP 証明書とキーはIDPとの暗号化通信用です",
|
||||||
|
@ -261,6 +262,8 @@
|
||||||
"CloudRegionTip": "地域が取得できませんでした。アカウントを確認してください",
|
"CloudRegionTip": "地域が取得できませんでした。アカウントを確認してください",
|
||||||
"CloudSource": "同期ソース",
|
"CloudSource": "同期ソース",
|
||||||
"CloudSync": "クラウド同期",
|
"CloudSync": "クラウド同期",
|
||||||
|
"CloudSyncConfig": "クラウド同期構成",
|
||||||
|
"Clouds": "クラウド プラットフォーム",
|
||||||
"CloudUpdate": "資産の更新-クラウドプラットフォーム",
|
"CloudUpdate": "資産の更新-クラウドプラットフォーム",
|
||||||
"Cluster": "クラスター",
|
"Cluster": "クラスター",
|
||||||
"CollectionSucceed": "お気に入り登録成功",
|
"CollectionSucceed": "お気に入り登録成功",
|
||||||
|
@ -376,6 +379,7 @@
|
||||||
"DatePasswordLastUpdated": "最終パスワード更新日",
|
"DatePasswordLastUpdated": "最終パスワード更新日",
|
||||||
"DateStart": "開始日",
|
"DateStart": "開始日",
|
||||||
"DateSync": "同期日",
|
"DateSync": "同期日",
|
||||||
|
"Datetime": "日時",
|
||||||
"DateUpdated": "更新日",
|
"DateUpdated": "更新日",
|
||||||
"Day": "日",
|
"Day": "日",
|
||||||
"DeclassificationLogNum": "パスワード変更ログ数",
|
"DeclassificationLogNum": "パスワード変更ログ数",
|
||||||
|
@ -591,7 +595,7 @@
|
||||||
"IsActive": "Activate",
|
"IsActive": "Activate",
|
||||||
"IsAlwaysUpdate": "最新の資産を保持",
|
"IsAlwaysUpdate": "最新の資産を保持",
|
||||||
"IsAlwaysUpdateHelpTip": "同期タスクを実行するたびに、資産情報(ホスト名、ip、プラットフォーム、ドメイン、ノードなど)を同期更新するかどうか",
|
"IsAlwaysUpdateHelpTip": "同期タスクを実行するたびに、資産情報(ホスト名、ip、プラットフォーム、ドメイン、ノードなど)を同期更新するかどうか",
|
||||||
"IsFinished": "完了したか",
|
"IsFinished": "完了",
|
||||||
"IsLocked": "一時停止しますか",
|
"IsLocked": "一時停止しますか",
|
||||||
"IsSuccess": "成功",
|
"IsSuccess": "成功",
|
||||||
"IsSyncAccountHelpText": "収集が完了すると、収集したアカウントが資産に同期されます",
|
"IsSyncAccountHelpText": "収集が完了すると、収集したアカウントが資産に同期されます",
|
||||||
|
@ -725,6 +729,10 @@
|
||||||
"NoPermission": "権限なし",
|
"NoPermission": "権限なし",
|
||||||
"NoPermission403": "403 権限がありません",
|
"NoPermission403": "403 権限がありません",
|
||||||
"NoPermissionVew": "現在のページを表示する権限がありません",
|
"NoPermissionVew": "現在のページを表示する権限がありません",
|
||||||
|
"NoPublished": "未発表",
|
||||||
|
"NoResourceImport": "インポートできるリソースがありません",
|
||||||
|
"NoSQLProtocol": "非リレーショナルデータベース",
|
||||||
|
"NoSystemUserWasSelected": "選択されていないシステムユーザー",
|
||||||
"NoUnreadMsg": "未読メッセージなし",
|
"NoUnreadMsg": "未読メッセージなし",
|
||||||
"Node": "ノード",
|
"Node": "ノード",
|
||||||
"NodeAmount": "ノード数",
|
"NodeAmount": "ノード数",
|
||||||
|
@ -830,6 +838,9 @@
|
||||||
"PolicyName": "ポリシー名称",
|
"PolicyName": "ポリシー名称",
|
||||||
"Port": "ポート",
|
"Port": "ポート",
|
||||||
"Ports": "ポート",
|
"Ports": "ポート",
|
||||||
|
"PrepareSyncTask": "同期タスクの実行準備中...",
|
||||||
|
"PrimaryProtocol": "主要協議は、資産にとって最も基本的で最も一般的に使用されるプロトコルであり、1つのみ設定でき、必ず設定する必要があります",
|
||||||
|
"PriorityHelpMessage": "1-100、1最低優先度、100最高優先度。複数のユーザーを許可する場合、優先度の高いシステムユーザーはデフォルトのログインユーザーになります",
|
||||||
"Preferences": "好みの設定",
|
"Preferences": "好みの設定",
|
||||||
"Primary": "主な",
|
"Primary": "主な",
|
||||||
"Priority": "優先順位",
|
"Priority": "優先順位",
|
||||||
|
@ -999,6 +1010,8 @@
|
||||||
"Select": "選択",
|
"Select": "選択",
|
||||||
"SelectAdhoc": "コマンドの選択",
|
"SelectAdhoc": "コマンドの選択",
|
||||||
"SelectAll": "全選択",
|
"SelectAll": "全選択",
|
||||||
|
"SelectCreateMethod": "作り方を選ぶ",
|
||||||
|
"SelectProviderMsg": "クラウドプラットフォームを選択してください",
|
||||||
"SelectAtLeastOneAssetOrNodeErrMsg": "アセットまたはノードは少なくとも一つ選択してください",
|
"SelectAtLeastOneAssetOrNodeErrMsg": "アセットまたはノードは少なくとも一つ選択してください",
|
||||||
"SelectAttrs": "属性の選択",
|
"SelectAttrs": "属性の選択",
|
||||||
"SelectByAttr": "プロパティフィルタ",
|
"SelectByAttr": "プロパティフィルタ",
|
||||||
|
@ -1097,21 +1110,33 @@
|
||||||
"SuperAdmin": "スーパー管理者",
|
"SuperAdmin": "スーパー管理者",
|
||||||
"SuperOrgAdmin": "スーパー管理者+組織管理",
|
"SuperOrgAdmin": "スーパー管理者+組織管理",
|
||||||
"Support": "サポート",
|
"Support": "サポート",
|
||||||
|
"SupportedProtocol": "サポートされるプロトコル",
|
||||||
|
"SupportedProtocolHelpText": "資産がサポートするプロトコルを設定します。設定ボタンをクリックして、SFTPディレクトリ、RDP ADドメインなどのプロトコルのカスタム構成を変更します。",
|
||||||
|
"SwitchPage": "ビューを切り替える",
|
||||||
|
"SwitchToUser": "Suユーザー",
|
||||||
|
"SwitchToUserListTips": "次のユーザーからアセットに接続すると、現在のシステムユーザーログインを使用して切り替えます。",
|
||||||
|
"SymbolSet": "特殊記号集合",
|
||||||
|
"SymbolSetHelpText": "このタイプのデータベースでサポートされている特殊記号の集合を入力してください。生成されたランダムパスワードにこのようなデータベースでサポートされていない特殊文字があると、変更計画は失敗します",
|
||||||
|
"Sync": "同期する",
|
||||||
|
"SyncAction": "同期アクション",
|
||||||
|
"SyncDelete": "同期削除",
|
||||||
"SupportedProtocol": "サポートされているプロトコル",
|
"SupportedProtocol": "サポートされているプロトコル",
|
||||||
"SupportedProtocolHelpText": "資産がサポートするプロトコルを設定します。設定ボタンをクリックして、プロトコルのカスタム設定を変更することができます。例えば、SFTPディレクトリやRDP ADドメインなど",
|
"SupportedProtocolHelpText": "資産がサポートするプロトコルを設定します。設定ボタンをクリックして、プロトコルのカスタム設定を変更することができます。例えば、SFTPディレクトリやRDP ADドメインなど",
|
||||||
"Sync": "同期化",
|
|
||||||
"SyncDelete": "同時に削除",
|
|
||||||
"SyncDeleteSelected": "選択を同期削除",
|
"SyncDeleteSelected": "選択を同期削除",
|
||||||
"SyncErrorMsg": "同期失敗:",
|
"SyncErrorMsg": "同期失敗:",
|
||||||
"SyncInstanceTaskCreate": "同期タスクを作成",
|
"SyncInstanceTaskCreate": "同期タスクを作成",
|
||||||
"SyncInstanceTaskDetail": "同期タスクの詳細",
|
"SyncInstanceTaskDetail": "同期タスクの詳細",
|
||||||
"SyncInstanceTaskHistoryAssetList": "インスタンスリストの同期",
|
"SyncInstanceTaskHistoryAssetList": "インスタンスリストの同期",
|
||||||
"SyncInstanceTaskHistoryList": "履歴リストを同期する",
|
"SyncInstanceTaskHistoryList": "履歴リストの同期",
|
||||||
|
"SyncManual": "手動同期",
|
||||||
|
"SyncOnline": "オンライン同期",
|
||||||
|
"SyncRegion": "地域を同期",
|
||||||
|
"SyncSelected": "選択した同期",
|
||||||
"SyncInstanceTaskList": "同期タスクリスト",
|
"SyncInstanceTaskList": "同期タスクリスト",
|
||||||
"SyncInstanceTaskUpdate": "同期タスクの更新",
|
"SyncInstanceTaskUpdate": "同期タスクの更新",
|
||||||
"SyncProtocolToAsset": "同期プロトコルを資産へ",
|
"SyncProtocolToAsset": "同期プロトコルを資産へ",
|
||||||
"SyncSelected": "選択したものを同期",
|
|
||||||
"SyncSetting": "同期設定",
|
"SyncSetting": "同期設定",
|
||||||
|
"SyncTiming": "タイミング同期",
|
||||||
"SyncStrategy": "同期方針",
|
"SyncStrategy": "同期方針",
|
||||||
"SyncSuccessMsg": "同期成功",
|
"SyncSuccessMsg": "同期成功",
|
||||||
"SyncTask": "同期化シスクリプト",
|
"SyncTask": "同期化シスクリプト",
|
||||||
|
@ -1183,6 +1208,10 @@
|
||||||
"TotalJobFailed": "実行に失敗したジョブ数",
|
"TotalJobFailed": "実行に失敗したジョブ数",
|
||||||
"TotalJobLog": "タスク実行総数",
|
"TotalJobLog": "タスク実行総数",
|
||||||
"TotalJobRunning": "実行中のジョブ数",
|
"TotalJobRunning": "実行中のジョブ数",
|
||||||
|
"TotalSyncAsset": "同期資産数(個)",
|
||||||
|
"TotalSyncRegion": "同期地域数(個)",
|
||||||
|
"TotalSyncStrategy": "バインドポリシー数(個)",
|
||||||
|
"True": "はい",
|
||||||
"Transfer": "転送",
|
"Transfer": "転送",
|
||||||
"Tuesday": "火曜日",
|
"Tuesday": "火曜日",
|
||||||
"TwoAssignee": "二次受理者",
|
"TwoAssignee": "二次受理者",
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
"AccessIP": "IP 白名单",
|
"AccessIP": "IP 白名单",
|
||||||
"SuEnabled": "启用开关",
|
"SuEnabled": "启用开关",
|
||||||
"AccessKey": "访问密钥",
|
"AccessKey": "访问密钥",
|
||||||
|
"AccessKeys": "访问密钥",
|
||||||
"AccountTemplateList": "账号模版列表",
|
"AccountTemplateList": "账号模版列表",
|
||||||
"HistoryRecord": "历史记录",
|
"HistoryRecord": "历史记录",
|
||||||
"UserPasswordChangeLog": "用户密码修改日志",
|
"UserPasswordChangeLog": "用户密码修改日志",
|
||||||
|
@ -59,9 +60,8 @@
|
||||||
"Accounts": "账号",
|
"Accounts": "账号",
|
||||||
"Action": "动作",
|
"Action": "动作",
|
||||||
"ActionCount": "动作数量",
|
"ActionCount": "动作数量",
|
||||||
"PermAction": "授权动作",
|
|
||||||
"ActionSetting": "动作设置",
|
"ActionSetting": "动作设置",
|
||||||
"Actions": "动作",
|
"Actions": "操作",
|
||||||
"ActionsTips": "各个权限作用协议不尽相同,点击权限后面的图标查看",
|
"ActionsTips": "各个权限作用协议不尽相同,点击权限后面的图标查看",
|
||||||
"Activate": "激活",
|
"Activate": "激活",
|
||||||
"Active": "激活中",
|
"Active": "激活中",
|
||||||
|
@ -173,12 +173,12 @@
|
||||||
"AttrValue": "属性值",
|
"AttrValue": "属性值",
|
||||||
"Audits": "审计台",
|
"Audits": "审计台",
|
||||||
"Auth": "认证设置",
|
"Auth": "认证设置",
|
||||||
|
"AuthConfig": "配置认证",
|
||||||
"AuthLimit": "登录限制",
|
"AuthLimit": "登录限制",
|
||||||
"AuthSAMLCertHelpText": "上传证书密钥后保存, 然后查看 SP Metadata",
|
"AuthSAMLCertHelpText": "上传证书密钥后保存, 然后查看 SP Metadata",
|
||||||
"AuthSAMLKeyHelpText": "SP 证书和密钥 是用来和 IDP 加密通信的",
|
"AuthSAMLKeyHelpText": "SP 证书和密钥 是用来和 IDP 加密通信的",
|
||||||
"AuthSaml2UserAttrMapHelpText": "左侧的键为 SAML2 用户属性,右侧的值为认证平台用户属性",
|
"AuthSaml2UserAttrMapHelpText": "左侧的键为 SAML2 用户属性,右侧的值为认证平台用户属性",
|
||||||
"AuthSecurity": "认证安全",
|
"AuthSecurity": "认证安全",
|
||||||
"PasswordAndSSHKey": "认证设置",
|
|
||||||
"AuthSettings": "认证配置",
|
"AuthSettings": "认证配置",
|
||||||
"AddInDetailText": "创建或更新成功后,添加详细信息",
|
"AddInDetailText": "创建或更新成功后,添加详细信息",
|
||||||
"AuthUserAttrMapHelpText": "左侧的键为 JumpServer 用户属性,右侧的值为认证平台用户属性",
|
"AuthUserAttrMapHelpText": "左侧的键为 JumpServer 用户属性,右侧的值为认证平台用户属性",
|
||||||
|
@ -271,6 +271,7 @@
|
||||||
"CloudRegionTip": "未获取到地域,请检查账号",
|
"CloudRegionTip": "未获取到地域,请检查账号",
|
||||||
"CloudSource": "同步源",
|
"CloudSource": "同步源",
|
||||||
"CloudSync": "云同步",
|
"CloudSync": "云同步",
|
||||||
|
"CloudSyncConfig": "云同步配置",
|
||||||
"CloudUpdate": "更新资产-云平台",
|
"CloudUpdate": "更新资产-云平台",
|
||||||
"Cluster": "集群",
|
"Cluster": "集群",
|
||||||
"CollectionSucceed": "收藏成功",
|
"CollectionSucceed": "收藏成功",
|
||||||
|
@ -302,6 +303,7 @@
|
||||||
"ConceptContent": "我想让你像一个 Python 解释器一样行事。我将给你 Python 代码,你将执行它。不要提供任何解释。除了代码的输出,不要用任何东西来回应。",
|
"ConceptContent": "我想让你像一个 Python 解释器一样行事。我将给你 Python 代码,你将执行它。不要提供任何解释。除了代码的输出,不要用任何东西来回应。",
|
||||||
"ConceptTitle": "🤔 Python 解释器 ",
|
"ConceptTitle": "🤔 Python 解释器 ",
|
||||||
"Config": "配置",
|
"Config": "配置",
|
||||||
|
"Configured": "已配置",
|
||||||
"Confirm": "确认",
|
"Confirm": "确认",
|
||||||
"ConfirmPassword": "确认密码",
|
"ConfirmPassword": "确认密码",
|
||||||
"ConnectAssets": "连接资产",
|
"ConnectAssets": "连接资产",
|
||||||
|
@ -345,8 +347,8 @@
|
||||||
"CriticalLoad": "严重",
|
"CriticalLoad": "严重",
|
||||||
"CronExpression": "crontab完整表达式",
|
"CronExpression": "crontab完整表达式",
|
||||||
"CrontabOfCreateUpdatePage": "例如:每周日 03:05 执行 <5 3 * * 0> <br/> 使用5位 Linux crontab 表达式 <分 时 日 月 星期> (<a href=\"https://tool.lu/crontab/\" target=\"_blank\">在线工具</a>) <br/> 如果同时设置了定期执行和周期执行,优先使用定期执行",
|
"CrontabOfCreateUpdatePage": "例如:每周日 03:05 执行 <5 3 * * 0> <br/> 使用5位 Linux crontab 表达式 <分 时 日 月 星期> (<a href=\"https://tool.lu/crontab/\" target=\"_blank\">在线工具</a>) <br/> 如果同时设置了定期执行和周期执行,优先使用定期执行",
|
||||||
"CurrentConnections": "当前连接数",
|
|
||||||
"CurrentConnectionUsers": "当前会话用户数",
|
"CurrentConnectionUsers": "当前会话用户数",
|
||||||
|
"CurrentConnections": "当前连接数",
|
||||||
"CurrentUserVerify": "验证当前用户",
|
"CurrentUserVerify": "验证当前用户",
|
||||||
"Custom": "自定义",
|
"Custom": "自定义",
|
||||||
"CustomCol": "自定义列表字段",
|
"CustomCol": "自定义列表字段",
|
||||||
|
@ -384,6 +386,7 @@
|
||||||
"DatePasswordLastUpdated": "最后更新密码日期",
|
"DatePasswordLastUpdated": "最后更新密码日期",
|
||||||
"DateStart": "开始日期",
|
"DateStart": "开始日期",
|
||||||
"DateSync": "同步日期",
|
"DateSync": "同步日期",
|
||||||
|
"Datetime": "日期时间",
|
||||||
"DateUpdated": "更新日期",
|
"DateUpdated": "更新日期",
|
||||||
"Day": "日",
|
"Day": "日",
|
||||||
"DeclassificationLogNum": "改密日志数",
|
"DeclassificationLogNum": "改密日志数",
|
||||||
|
@ -408,6 +411,7 @@
|
||||||
"DeviceUpdate": "更新资产-网络设备",
|
"DeviceUpdate": "更新资产-网络设备",
|
||||||
"Digit": "数字",
|
"Digit": "数字",
|
||||||
"DingTalk": "钉钉",
|
"DingTalk": "钉钉",
|
||||||
|
"DingTalkOAuth": "钉钉认证",
|
||||||
"DingTalkTest": "测试",
|
"DingTalkTest": "测试",
|
||||||
"Disable": "禁用",
|
"Disable": "禁用",
|
||||||
"DisplayName": "名称",
|
"DisplayName": "名称",
|
||||||
|
@ -476,6 +480,7 @@
|
||||||
"FaviconTip": "提示:网站图标(建议图片大小为: 16px*16px)",
|
"FaviconTip": "提示:网站图标(建议图片大小为: 16px*16px)",
|
||||||
"Features": "功能设置",
|
"Features": "功能设置",
|
||||||
"FeiShu": "飞书",
|
"FeiShu": "飞书",
|
||||||
|
"FeiShuOAuth": "飞书认证",
|
||||||
"FeiShuTest": "测试",
|
"FeiShuTest": "测试",
|
||||||
"FieldRequiredError": "此字段是必填项",
|
"FieldRequiredError": "此字段是必填项",
|
||||||
"FileExplorer": "文件浏览",
|
"FileExplorer": "文件浏览",
|
||||||
|
@ -512,6 +517,7 @@
|
||||||
"Generate": "生成",
|
"Generate": "生成",
|
||||||
"GenerateAccounts": "重新生成账号",
|
"GenerateAccounts": "重新生成账号",
|
||||||
"GenerateSuccessMsg": "账号生成成功",
|
"GenerateSuccessMsg": "账号生成成功",
|
||||||
|
"GenericSetting": "通用配置",
|
||||||
"GoHomePage": "去往首页",
|
"GoHomePage": "去往首页",
|
||||||
"Goto": "转到",
|
"Goto": "转到",
|
||||||
"GrantedAssets": "授权的资产",
|
"GrantedAssets": "授权的资产",
|
||||||
|
@ -564,6 +570,7 @@
|
||||||
"Inactive": "禁用",
|
"Inactive": "禁用",
|
||||||
"Index": "索引",
|
"Index": "索引",
|
||||||
"Info": "信息",
|
"Info": "信息",
|
||||||
|
"InformationModification": "信息更改",
|
||||||
"InheritPlatformConfig": "继承自平台配置,如需更改,请更改平台中的配置。",
|
"InheritPlatformConfig": "继承自平台配置,如需更改,请更改平台中的配置。",
|
||||||
"InitialDeploy": "初始化部署",
|
"InitialDeploy": "初始化部署",
|
||||||
"Input": "输入",
|
"Input": "输入",
|
||||||
|
@ -585,7 +592,7 @@
|
||||||
"IpGroupHelpText": "* 表示匹配所有。例如: 192.168.10.1, 192.168.1.0/24, 10.1.1.1-10.1.1.20, 2001:db8:2de::e13, 2001:db8:1a:1110::/64",
|
"IpGroupHelpText": "* 表示匹配所有。例如: 192.168.10.1, 192.168.1.0/24, 10.1.1.1-10.1.1.20, 2001:db8:2de::e13, 2001:db8:1a:1110::/64",
|
||||||
"IsActive": "激活",
|
"IsActive": "激活",
|
||||||
"IsAlwaysUpdate": "资产保持最新",
|
"IsAlwaysUpdate": "资产保持最新",
|
||||||
"IsFinished": "是否完成",
|
"IsFinished": "完成",
|
||||||
"IsLocked": "是否暂停",
|
"IsLocked": "是否暂停",
|
||||||
"IsSuccess": "成功",
|
"IsSuccess": "成功",
|
||||||
"IsSyncAccountHelpText": "收集完成后会把收集的账号同步到资产",
|
"IsSyncAccountHelpText": "收集完成后会把收集的账号同步到资产",
|
||||||
|
@ -609,6 +616,7 @@
|
||||||
"TagList": "标签列表",
|
"TagList": "标签列表",
|
||||||
"TagUpdate": "更新标签",
|
"TagUpdate": "更新标签",
|
||||||
"Language": "语言",
|
"Language": "语言",
|
||||||
|
"LarkOAuth": "Lark 认证",
|
||||||
"Last30": "最近 30 次",
|
"Last30": "最近 30 次",
|
||||||
"Last30Days": "近30天",
|
"Last30Days": "近30天",
|
||||||
"Last7Days": "近7天",
|
"Last7Days": "近7天",
|
||||||
|
@ -630,7 +638,6 @@
|
||||||
"LockedIP": "已锁定 IP {count} 个",
|
"LockedIP": "已锁定 IP {count} 个",
|
||||||
"Log": "日志",
|
"Log": "日志",
|
||||||
"LogData": "日志数据",
|
"LogData": "日志数据",
|
||||||
"LoginLogTotal": "登录成功日志数",
|
|
||||||
"Logging": "日志记录",
|
"Logging": "日志记录",
|
||||||
"LoginAssetConfirm": "资产登录复核",
|
"LoginAssetConfirm": "资产登录复核",
|
||||||
"LoginAssetToday": "今日活跃资产数",
|
"LoginAssetToday": "今日活跃资产数",
|
||||||
|
@ -642,9 +649,11 @@
|
||||||
"LoginFrom": "登录来源",
|
"LoginFrom": "登录来源",
|
||||||
"LoginImageTip": "提示:将会显示在企业版用户登录页面(建议图片大小为: 492*472px)",
|
"LoginImageTip": "提示:将会显示在企业版用户登录页面(建议图片大小为: 492*472px)",
|
||||||
"LoginLog": "登录日志",
|
"LoginLog": "登录日志",
|
||||||
|
"LoginLogTotal": "登录成功日志数",
|
||||||
"LoginNum": "登录数",
|
"LoginNum": "登录数",
|
||||||
"LoginPasswordSetting": "登录密码",
|
"LoginPasswordSetting": "登录密码",
|
||||||
"LoginRequiredMsg": "账号已退出,请重新登录",
|
"LoginRequiredMsg": "账号已退出,请重新登录",
|
||||||
|
"LoginSSHKeySetting": "登录 SSH 公钥",
|
||||||
"LoginSucceeded": "登录成功",
|
"LoginSucceeded": "登录成功",
|
||||||
"LoginTitleTip": "提示:将会显示在企业版用户 SSH 登录 KoKo 登录页面(eg: 欢迎使用JumpServer开源堡垒机)",
|
"LoginTitleTip": "提示:将会显示在企业版用户 SSH 登录 KoKo 登录页面(eg: 欢迎使用JumpServer开源堡垒机)",
|
||||||
"LoginUserRanking": "登录账号排名",
|
"LoginUserRanking": "登录账号排名",
|
||||||
|
@ -678,7 +687,6 @@
|
||||||
"MenuPermissions": "授权管理",
|
"MenuPermissions": "授权管理",
|
||||||
"MenuUsers": "用户管理",
|
"MenuUsers": "用户管理",
|
||||||
"Message": "消息",
|
"Message": "消息",
|
||||||
"NotificationConfiguration": "通知设置",
|
|
||||||
"MessageType": "消息类型",
|
"MessageType": "消息类型",
|
||||||
"MfaLevel": "多因子认证",
|
"MfaLevel": "多因子认证",
|
||||||
"Min": "分钟",
|
"Min": "分钟",
|
||||||
|
@ -703,6 +711,8 @@
|
||||||
"NewDirectory": "新建目录",
|
"NewDirectory": "新建目录",
|
||||||
"NewFile": "新建文件",
|
"NewFile": "新建文件",
|
||||||
"NewPassword": "新密码",
|
"NewPassword": "新密码",
|
||||||
|
"NewPublicKey": "新 SSH 公钥",
|
||||||
|
"NewSSHKey": "SSH 公钥",
|
||||||
"NewSyncCount": "新同步",
|
"NewSyncCount": "新同步",
|
||||||
"Next": "下一步",
|
"Next": "下一步",
|
||||||
"No": "否",
|
"No": "否",
|
||||||
|
@ -712,6 +722,7 @@
|
||||||
"NoPermission": "暂无权限",
|
"NoPermission": "暂无权限",
|
||||||
"NoPermission403": "403 暂无权限",
|
"NoPermission403": "403 暂无权限",
|
||||||
"NoPermissionVew": "没有权限查看当前页面",
|
"NoPermissionVew": "没有权限查看当前页面",
|
||||||
|
"NoResourceImport": "没有资源可导入",
|
||||||
"NoUnreadMsg": "暂无未读消息",
|
"NoUnreadMsg": "暂无未读消息",
|
||||||
"Node": "节点",
|
"Node": "节点",
|
||||||
"NodeAmount": "节点数量",
|
"NodeAmount": "节点数量",
|
||||||
|
@ -722,6 +733,7 @@
|
||||||
"NotSet": "未设置",
|
"NotSet": "未设置",
|
||||||
"NotSpecialEmoji": "不允许输入特殊表情符号",
|
"NotSpecialEmoji": "不允许输入特殊表情符号",
|
||||||
"Nothing": "无",
|
"Nothing": "无",
|
||||||
|
"NotificationConfiguration": "通知设置",
|
||||||
"Notifications": "通知设置",
|
"Notifications": "通知设置",
|
||||||
"Now": "现在",
|
"Now": "现在",
|
||||||
"Number": "编号",
|
"Number": "编号",
|
||||||
|
@ -736,7 +748,6 @@
|
||||||
"OfflineUpload": "离线上传",
|
"OfflineUpload": "离线上传",
|
||||||
"OldPassword": "原密码",
|
"OldPassword": "原密码",
|
||||||
"OldPublicKey": "旧 SSH 公钥",
|
"OldPublicKey": "旧 SSH 公钥",
|
||||||
"NewPublicKey": "新 SSH 公钥",
|
|
||||||
"OneAssignee": "一级受理人",
|
"OneAssignee": "一级受理人",
|
||||||
"OneAssigneeType": "一级受理人类型",
|
"OneAssigneeType": "一级受理人类型",
|
||||||
"OneClickReadMsg": "你确定全部标记为已读吗?",
|
"OneClickReadMsg": "你确定全部标记为已读吗?",
|
||||||
|
@ -776,6 +787,7 @@
|
||||||
"PasskeyAddDisableInfo": "你的认证来源是 {source}, 不支持添加 Passkey",
|
"PasskeyAddDisableInfo": "你的认证来源是 {source}, 不支持添加 Passkey",
|
||||||
"Passphrase": "密钥密码",
|
"Passphrase": "密钥密码",
|
||||||
"Password": "密码",
|
"Password": "密码",
|
||||||
|
"PasswordAndSSHKey": "认证设置",
|
||||||
"PasswordChangeLog": "改密日志",
|
"PasswordChangeLog": "改密日志",
|
||||||
"PasswordExpired": "密码过期了",
|
"PasswordExpired": "密码过期了",
|
||||||
"PasswordPlaceholder": "请输入密码",
|
"PasswordPlaceholder": "请输入密码",
|
||||||
|
@ -790,11 +802,13 @@
|
||||||
"PauseTaskSendSuccessMsg": "暂停任务已下发,请稍后刷新查看",
|
"PauseTaskSendSuccessMsg": "暂停任务已下发,请稍后刷新查看",
|
||||||
"Pending": "待处理",
|
"Pending": "待处理",
|
||||||
"PermAccount": "授权账号",
|
"PermAccount": "授权账号",
|
||||||
|
"PermAction": "授权动作",
|
||||||
"PermUserList": "授权用户",
|
"PermUserList": "授权用户",
|
||||||
"PermissionCompany": "授权公司",
|
"PermissionCompany": "授权公司",
|
||||||
"PermissionName": "授权规则名称",
|
"PermissionName": "授权规则名称",
|
||||||
"Permissions": "权限",
|
"Permissions": "权限",
|
||||||
"PersonalInformationImprovement": "个人信息完善",
|
"PersonalInformationImprovement": "个人信息完善",
|
||||||
|
"PersonalSettings": "个人设置",
|
||||||
"Plan": "计划",
|
"Plan": "计划",
|
||||||
"Platform": "平台",
|
"Platform": "平台",
|
||||||
"PlatformCreate": "创建平台",
|
"PlatformCreate": "创建平台",
|
||||||
|
@ -810,6 +824,8 @@
|
||||||
"PolicyName": "策略名称",
|
"PolicyName": "策略名称",
|
||||||
"Port": "端口",
|
"Port": "端口",
|
||||||
"Ports": "端口",
|
"Ports": "端口",
|
||||||
|
"Preferences": "偏好设置",
|
||||||
|
"PrepareSyncTask": "准备执行同步任务中...",
|
||||||
"Priority": "优先级",
|
"Priority": "优先级",
|
||||||
"PrivateCloud": "私有云",
|
"PrivateCloud": "私有云",
|
||||||
"PrivateKey": "私钥",
|
"PrivateKey": "私钥",
|
||||||
|
@ -818,6 +834,7 @@
|
||||||
"PrivilegedOnly": "仅特权账号",
|
"PrivilegedOnly": "仅特权账号",
|
||||||
"PrivilegedTemplate": "特权的",
|
"PrivilegedTemplate": "特权的",
|
||||||
"Product": "产品",
|
"Product": "产品",
|
||||||
|
"Profile": "个人信息",
|
||||||
"ProfileSetting": "个人信息设置",
|
"ProfileSetting": "个人信息设置",
|
||||||
"Project": "项目名",
|
"Project": "项目名",
|
||||||
"Prompt": "提示词",
|
"Prompt": "提示词",
|
||||||
|
@ -863,6 +880,8 @@
|
||||||
"RegularlyPerform": "定期执行",
|
"RegularlyPerform": "定期执行",
|
||||||
"Reject": "拒绝",
|
"Reject": "拒绝",
|
||||||
"Rejected": "已拒绝",
|
"Rejected": "已拒绝",
|
||||||
|
"ReleaseAssets": "同步释放资产",
|
||||||
|
"ReleaseAssetsHelpTips": "是否在任务结束时,自动删除通过此任务同步下来且已经在云上释放的资产",
|
||||||
"ReleasedCount": "已释放",
|
"ReleasedCount": "已释放",
|
||||||
"RelevantApp": "应用",
|
"RelevantApp": "应用",
|
||||||
"RelevantAsset": "资产",
|
"RelevantAsset": "资产",
|
||||||
|
@ -948,7 +967,6 @@
|
||||||
"SMTP": "邮件服务器",
|
"SMTP": "邮件服务器",
|
||||||
"SSHKey": "SSH公钥",
|
"SSHKey": "SSH公钥",
|
||||||
"SSHKeyOfProfileSSHUpdatePage": "你可以点击下面的按钮重置并下载 SSH 公钥,或者复制你的 SSH 公钥并提交。",
|
"SSHKeyOfProfileSSHUpdatePage": "你可以点击下面的按钮重置并下载 SSH 公钥,或者复制你的 SSH 公钥并提交。",
|
||||||
"LoginSSHKeySetting": "登录 SSH 公钥",
|
|
||||||
"SSHPort": "SSH 端口",
|
"SSHPort": "SSH 端口",
|
||||||
"SSHSecretKey": "SSH 密钥",
|
"SSHSecretKey": "SSH 密钥",
|
||||||
"SafeCommand": "安全命令",
|
"SafeCommand": "安全命令",
|
||||||
|
@ -984,6 +1002,7 @@
|
||||||
"SelectTagFilter": "选择标签搜索",
|
"SelectTagFilter": "选择标签搜索",
|
||||||
"SelectPlatforms": "选择平台",
|
"SelectPlatforms": "选择平台",
|
||||||
"SelectProperties": "选择属性",
|
"SelectProperties": "选择属性",
|
||||||
|
"SelectProviderMsg": "请选择一个云平台",
|
||||||
"SelectResource": "选择资源",
|
"SelectResource": "选择资源",
|
||||||
"SelectTemplate": "选择模版",
|
"SelectTemplate": "选择模版",
|
||||||
"SelectValueOrCreateNew": "选择标签值或创建新的",
|
"SelectValueOrCreateNew": "选择标签值或创建新的",
|
||||||
|
@ -1014,15 +1033,11 @@
|
||||||
"SessionsAudit": "会话审计",
|
"SessionsAudit": "会话审计",
|
||||||
"SessionsNum": "会话数",
|
"SessionsNum": "会话数",
|
||||||
"Set": "已设置",
|
"Set": "已设置",
|
||||||
"DingTalkOAuth": "钉钉认证",
|
|
||||||
"SetFailed": "设置失败",
|
"SetFailed": "设置失败",
|
||||||
"FeiShuOAuth": "飞书认证",
|
|
||||||
"LarkOAuth": "Lark 认证",
|
|
||||||
"SetMFA": "MFA 认证",
|
"SetMFA": "MFA 认证",
|
||||||
"SlackOAuth": "Slack 认证",
|
|
||||||
"Configured": "已配置",
|
|
||||||
"SetSuccess": "设置成功",
|
"SetSuccess": "设置成功",
|
||||||
"SetToDefault": "设为默认",
|
"SetToDefault": "设为默认",
|
||||||
|
"SetToDefaultStorage": "设置为默认存储",
|
||||||
"WeComOAuth": "企业微信认证",
|
"WeComOAuth": "企业微信认证",
|
||||||
"Setting": "设置",
|
"Setting": "设置",
|
||||||
"SettingInEndpointHelpText": "在 系统设置 / 组件设置 / 服务端点 中配置服务地址和端口",
|
"SettingInEndpointHelpText": "在 系统设置 / 组件设置 / 服务端点 中配置服务地址和端口",
|
||||||
|
@ -1037,6 +1052,7 @@
|
||||||
"Skip": "忽略当前资产",
|
"Skip": "忽略当前资产",
|
||||||
"Skipped": "已跳过",
|
"Skipped": "已跳过",
|
||||||
"Slack": "Slack",
|
"Slack": "Slack",
|
||||||
|
"SlackOAuth": "Slack 认证",
|
||||||
"Source": "来源",
|
"Source": "来源",
|
||||||
"SourceIP": "源地址",
|
"SourceIP": "源地址",
|
||||||
"SourcePort": "源端口",
|
"SourcePort": "源端口",
|
||||||
|
@ -1090,6 +1106,7 @@
|
||||||
"SupportedProtocol": "支持的协议",
|
"SupportedProtocol": "支持的协议",
|
||||||
"SupportedProtocolHelpText": "设置资产支持的协议,点击设置按钮可以为协议修改自定义配置,如 SFTP 目录,RDP AD 域等",
|
"SupportedProtocolHelpText": "设置资产支持的协议,点击设置按钮可以为协议修改自定义配置,如 SFTP 目录,RDP AD 域等",
|
||||||
"Sync": "同步",
|
"Sync": "同步",
|
||||||
|
"SyncAction": "同步动作",
|
||||||
"SyncDelete": "同步删除",
|
"SyncDelete": "同步删除",
|
||||||
"SyncDeleteSelected": "同步删除所选",
|
"SyncDeleteSelected": "同步删除所选",
|
||||||
"SyncErrorMsg": "同步失败: ",
|
"SyncErrorMsg": "同步失败: ",
|
||||||
|
@ -1099,11 +1116,15 @@
|
||||||
"SyncInstanceTaskHistoryList": "同步历史列表",
|
"SyncInstanceTaskHistoryList": "同步历史列表",
|
||||||
"SyncInstanceTaskList": "同步任务列表",
|
"SyncInstanceTaskList": "同步任务列表",
|
||||||
"SyncInstanceTaskUpdate": "更新同步任务",
|
"SyncInstanceTaskUpdate": "更新同步任务",
|
||||||
|
"SyncManual": "手动同步",
|
||||||
|
"SyncOnline": "在线同步",
|
||||||
|
"SyncRegion": "正在同步地域",
|
||||||
"SyncSelected": "同步所选",
|
"SyncSelected": "同步所选",
|
||||||
"SyncSetting": "同步设置",
|
"SyncSetting": "同步设置",
|
||||||
"SyncStrategy": "同步策略",
|
"SyncStrategy": "同步策略",
|
||||||
"SyncSuccessMsg": "同步成功",
|
"SyncSuccessMsg": "同步成功",
|
||||||
"SyncTask": "同步任务",
|
"SyncTask": "同步任务",
|
||||||
|
"SyncTiming": "定时同步",
|
||||||
"SyncUpdateAccountInfo": "同步更新账号信息",
|
"SyncUpdateAccountInfo": "同步更新账号信息",
|
||||||
"SyncUser": "同步用户",
|
"SyncUser": "同步用户",
|
||||||
"SyncedCount": "已同步",
|
"SyncedCount": "已同步",
|
||||||
|
@ -1168,6 +1189,9 @@
|
||||||
"TotalJobFailed": "执行失败作业数",
|
"TotalJobFailed": "执行失败作业数",
|
||||||
"TotalJobLog": "作业执行总数",
|
"TotalJobLog": "作业执行总数",
|
||||||
"TotalJobRunning": "运行中作业数",
|
"TotalJobRunning": "运行中作业数",
|
||||||
|
"TotalSyncAsset": "同步资产数(个)",
|
||||||
|
"TotalSyncRegion": "同步地域数(个)",
|
||||||
|
"TotalSyncStrategy": "绑定策略数(个)",
|
||||||
"Transfer": "传输",
|
"Transfer": "传输",
|
||||||
"Tuesday": "周二",
|
"Tuesday": "周二",
|
||||||
"TwoAssignee": "二级受理人",
|
"TwoAssignee": "二级受理人",
|
||||||
|
@ -1198,7 +1222,6 @@
|
||||||
"UpdateNodeAssetHardwareInfo": "更新节点资产硬件信息",
|
"UpdateNodeAssetHardwareInfo": "更新节点资产硬件信息",
|
||||||
"UpdatePlatformHelpText": "只有资产的原平台类型与所选平台类型相同时才会进行更新,若更新前后的平台类型不同则不会更新。",
|
"UpdatePlatformHelpText": "只有资产的原平台类型与所选平台类型相同时才会进行更新,若更新前后的平台类型不同则不会更新。",
|
||||||
"UpdateSSHKey": "更新SSH公钥",
|
"UpdateSSHKey": "更新SSH公钥",
|
||||||
"NewSSHKey": "SSH 公钥",
|
|
||||||
"UpdateSelected": "更新所选",
|
"UpdateSelected": "更新所选",
|
||||||
"UpdateSuccessMsg": "更新成功",
|
"UpdateSuccessMsg": "更新成功",
|
||||||
"Updated": "已更新",
|
"Updated": "已更新",
|
||||||
|
@ -1233,9 +1256,7 @@
|
||||||
"UserLoginAclUpdate": "更新用户登录控制",
|
"UserLoginAclUpdate": "更新用户登录控制",
|
||||||
"UserLoginLimit": "用户登录限制",
|
"UserLoginLimit": "用户登录限制",
|
||||||
"UserLoginTrend": "账号登录趋势",
|
"UserLoginTrend": "账号登录趋势",
|
||||||
"PersonalSettings": "个人设置",
|
|
||||||
"UserSession": "用户会话",
|
"UserSession": "用户会话",
|
||||||
"Preferences": "偏好设置",
|
|
||||||
"UserUpdate": "更新用户",
|
"UserUpdate": "更新用户",
|
||||||
"Username": "用户名",
|
"Username": "用户名",
|
||||||
"UsernamePlaceholder": "请输入用户名",
|
"UsernamePlaceholder": "请输入用户名",
|
||||||
|
@ -1263,6 +1284,7 @@
|
||||||
"Volcengine": "火山引擎",
|
"Volcengine": "火山引擎",
|
||||||
"Warning": "警告",
|
"Warning": "警告",
|
||||||
"WeCom": "企业微信",
|
"WeCom": "企业微信",
|
||||||
|
"WeComOAuth": "企业微信认证",
|
||||||
"WeComTest": "测试",
|
"WeComTest": "测试",
|
||||||
"WebCreate": "创建资产-Web",
|
"WebCreate": "创建资产-Web",
|
||||||
"WebHelpMessage": "Web 类型资产依赖于远程应用,请前往系统设置在远程应用中配置",
|
"WebHelpMessage": "Web 类型资产依赖于远程应用,请前往系统设置在远程应用中配置",
|
||||||
|
@ -1279,6 +1301,7 @@
|
||||||
"Workbench": "工作台",
|
"Workbench": "工作台",
|
||||||
"Workspace": "工作空间",
|
"Workspace": "工作空间",
|
||||||
"Yes": "是",
|
"Yes": "是",
|
||||||
|
"YourProfile": "个人信息",
|
||||||
"ZStack": "ZStack",
|
"ZStack": "ZStack",
|
||||||
"Zone": "区域",
|
"Zone": "区域",
|
||||||
"ZoneCreate": "创建区域",
|
"ZoneCreate": "创建区域",
|
||||||
|
@ -1286,8 +1309,6 @@
|
||||||
"ZoneHelpMessage": "区域是资产所在的位置,可以是机房,公有云 或者 VPC。区域中可以设置网关,当网络不能直达的时候,可以使用网关跳转登录到资产",
|
"ZoneHelpMessage": "区域是资产所在的位置,可以是机房,公有云 或者 VPC。区域中可以设置网关,当网络不能直达的时候,可以使用网关跳转登录到资产",
|
||||||
"ZoneList": "区域列表",
|
"ZoneList": "区域列表",
|
||||||
"ZoneUpdate": "更新区域",
|
"ZoneUpdate": "更新区域",
|
||||||
"YourProfile": "个人信息",
|
|
||||||
"InformationModification": "信息更改",
|
|
||||||
"Phone": "手机",
|
"Phone": "手机",
|
||||||
"TailLog": "追踪日志",
|
"TailLog": "追踪日志",
|
||||||
"NoLog": "无日志",
|
"NoLog": "无日志",
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
"Action": "動作",
|
"Action": "動作",
|
||||||
"ActionCount": "動作數量",
|
"ActionCount": "動作數量",
|
||||||
"ActionSetting": "動作設置",
|
"ActionSetting": "動作設置",
|
||||||
"Actions": "權限",
|
"Actions": "操作",
|
||||||
"Activate": "啟用",
|
"Activate": "啟用",
|
||||||
"Active": "活躍",
|
"Active": "活躍",
|
||||||
"ActiveAsset": "近期被登入過",
|
"ActiveAsset": "近期被登入過",
|
||||||
|
@ -190,6 +190,7 @@
|
||||||
"Auditor": "審計員",
|
"Auditor": "審計員",
|
||||||
"Audits": "審計台",
|
"Audits": "審計台",
|
||||||
"Auth": "認證設置",
|
"Auth": "認證設置",
|
||||||
|
"AuthConfig": "配寘認證資訊",
|
||||||
"AuthLimit": "登入限制",
|
"AuthLimit": "登入限制",
|
||||||
"AuthMethod": "認證方式",
|
"AuthMethod": "認證方式",
|
||||||
"AuthSecurity": "認證安全",
|
"AuthSecurity": "認證安全",
|
||||||
|
@ -301,6 +302,7 @@
|
||||||
"CloudPlatform": "雲平台",
|
"CloudPlatform": "雲平台",
|
||||||
"CloudSource": "同步源",
|
"CloudSource": "同步源",
|
||||||
"CloudSync": "雲同步",
|
"CloudSync": "雲同步",
|
||||||
|
"CloudSyncConfig": "雲同步配寘",
|
||||||
"CloudUpdate": "更新資產-雲平台",
|
"CloudUpdate": "更新資產-雲平台",
|
||||||
"Clouds": "雲平台",
|
"Clouds": "雲平台",
|
||||||
"Cluster": "集群",
|
"Cluster": "集群",
|
||||||
|
@ -442,6 +444,7 @@
|
||||||
"DatePasswordUpdated": "密碼更新日期",
|
"DatePasswordUpdated": "密碼更新日期",
|
||||||
"DateStart": "開始日期",
|
"DateStart": "開始日期",
|
||||||
"DateSync": "同步日期",
|
"DateSync": "同步日期",
|
||||||
|
"Datetime": "日期時間",
|
||||||
"DateUpdated": "更新日期",
|
"DateUpdated": "更新日期",
|
||||||
"DeactiveSelected": "禁用所選",
|
"DeactiveSelected": "禁用所選",
|
||||||
"DeclassificationLogNum": "改密日誌數",
|
"DeclassificationLogNum": "改密日誌數",
|
||||||
|
@ -729,7 +732,6 @@
|
||||||
"LockedIP": "已鎖定 IP {count} 個",
|
"LockedIP": "已鎖定 IP {count} 個",
|
||||||
"Log": "日誌",
|
"Log": "日誌",
|
||||||
"LogData": "日誌數據",
|
"LogData": "日誌數據",
|
||||||
"LoginLogTotal": "登入成功日誌數",
|
|
||||||
"Logging": "日誌記錄",
|
"Logging": "日誌記錄",
|
||||||
"Login": "用戶登入",
|
"Login": "用戶登入",
|
||||||
"LoginAssetConfirm": "資產登入覆核",
|
"LoginAssetConfirm": "資產登入覆核",
|
||||||
|
@ -744,6 +746,7 @@
|
||||||
"LoginIP": "登入IP",
|
"LoginIP": "登入IP",
|
||||||
"LoginImageTip": "提示:將會顯示在企業版使用者登入頁面(建議圖片大小為: 492*472px)",
|
"LoginImageTip": "提示:將會顯示在企業版使用者登入頁面(建議圖片大小為: 492*472px)",
|
||||||
"LoginLog": "登入日誌",
|
"LoginLog": "登入日誌",
|
||||||
|
"LoginLogTotal": "登入成功日誌數",
|
||||||
"LoginModeHelpMessage": "如果選擇手動登入模式,使用者名稱和密碼可以不填寫",
|
"LoginModeHelpMessage": "如果選擇手動登入模式,使用者名稱和密碼可以不填寫",
|
||||||
"LoginModel": "登入模式",
|
"LoginModel": "登入模式",
|
||||||
"LoginNum": "登入數",
|
"LoginNum": "登入數",
|
||||||
|
@ -832,6 +835,7 @@
|
||||||
"NoPermission403": "403 暫無權限",
|
"NoPermission403": "403 暫無權限",
|
||||||
"NoPermissionVew": "沒有權限查看當前頁面",
|
"NoPermissionVew": "沒有權限查看當前頁面",
|
||||||
"NoPublished": "未發布",
|
"NoPublished": "未發布",
|
||||||
|
"NoResourceImport": "沒有資源可導入",
|
||||||
"NoSQLProtocol": "非關係資料庫",
|
"NoSQLProtocol": "非關係資料庫",
|
||||||
"NoSystemUserWasSelected": "未選擇系統用戶",
|
"NoSystemUserWasSelected": "未選擇系統用戶",
|
||||||
"NoUnreadMsg": "暫無未讀消息",
|
"NoUnreadMsg": "暫無未讀消息",
|
||||||
|
@ -963,6 +967,7 @@
|
||||||
"PleaseSelect": "請選擇",
|
"PleaseSelect": "請選擇",
|
||||||
"PolicyName": "策略名稱",
|
"PolicyName": "策略名稱",
|
||||||
"Ports": "埠",
|
"Ports": "埠",
|
||||||
|
"PrepareSyncTask": "準備執行同步任務中...",
|
||||||
"Primary": "主要",
|
"Primary": "主要",
|
||||||
"PrimaryProtocol": "主要協議, 資產最基本最常用的協議,只能且必須設置一個",
|
"PrimaryProtocol": "主要協議, 資產最基本最常用的協議,只能且必須設置一個",
|
||||||
"PriorityHelpMessage": "1-100, 1最低優先度,100最高優先度。授權多個用戶時,高優先度的系統用戶將會作為默認登入用戶",
|
"PriorityHelpMessage": "1-100, 1最低優先度,100最高優先度。授權多個用戶時,高優先度的系統用戶將會作為默認登入用戶",
|
||||||
|
@ -1037,6 +1042,8 @@
|
||||||
"RelNot": "非",
|
"RelNot": "非",
|
||||||
"RelOr": "或",
|
"RelOr": "或",
|
||||||
"Relation": "關係",
|
"Relation": "關係",
|
||||||
|
"ReleaseAssets": "同步釋放資產",
|
||||||
|
"ReleaseAssetsHelpTips": "是否在任務結束時,自動删除通過此任務同步下來且已經在雲上釋放的資產",
|
||||||
"ReleasedCount": "已釋放",
|
"ReleasedCount": "已釋放",
|
||||||
"RelevantApp": "應用",
|
"RelevantApp": "應用",
|
||||||
"RelevantAsset": "資產",
|
"RelevantAsset": "資產",
|
||||||
|
@ -1166,6 +1173,7 @@
|
||||||
"SelectLabelFilter": "選擇標籤搜索",
|
"SelectLabelFilter": "選擇標籤搜索",
|
||||||
"SelectPlatforms": "選擇平台",
|
"SelectPlatforms": "選擇平台",
|
||||||
"SelectProperties": "選擇屬性",
|
"SelectProperties": "選擇屬性",
|
||||||
|
"SelectProviderMsg": "請選擇一個雲平臺",
|
||||||
"SelectResource": "選擇資源",
|
"SelectResource": "選擇資源",
|
||||||
"SelectTemplate": "選擇模板",
|
"SelectTemplate": "選擇模板",
|
||||||
"SelectValueOrCreateNew": "選擇標籤值或創建新的",
|
"SelectValueOrCreateNew": "選擇標籤值或創建新的",
|
||||||
|
@ -1267,6 +1275,7 @@
|
||||||
"SymbolSet": "特殊符號集合",
|
"SymbolSet": "特殊符號集合",
|
||||||
"SymbolSetHelpText": "請輸入此類型資料庫支持的特殊符號集合,若生成的隨機密碼中有此類資料庫不支持的特殊字元,改密計劃將會失敗",
|
"SymbolSetHelpText": "請輸入此類型資料庫支持的特殊符號集合,若生成的隨機密碼中有此類資料庫不支持的特殊字元,改密計劃將會失敗",
|
||||||
"Sync": "同步",
|
"Sync": "同步",
|
||||||
|
"SyncAction": "同步動作",
|
||||||
"SyncDelete": "同步刪除",
|
"SyncDelete": "同步刪除",
|
||||||
"SyncInstanceTaskCreate": "創建同步任務",
|
"SyncInstanceTaskCreate": "創建同步任務",
|
||||||
"SyncInstanceTaskDetail": "同步任務詳情",
|
"SyncInstanceTaskDetail": "同步任務詳情",
|
||||||
|
@ -1274,12 +1283,16 @@
|
||||||
"SyncInstanceTaskHistoryList": "同步歷史列表",
|
"SyncInstanceTaskHistoryList": "同步歷史列表",
|
||||||
"SyncInstanceTaskList": "同步任務列表",
|
"SyncInstanceTaskList": "同步任務列表",
|
||||||
"SyncInstanceTaskUpdate": "更新同步任務",
|
"SyncInstanceTaskUpdate": "更新同步任務",
|
||||||
|
"SyncManual": "手動同步",
|
||||||
|
"SyncOnline": "線上同步",
|
||||||
"SyncProtocolToAsset": "同步協議到資產",
|
"SyncProtocolToAsset": "同步協議到資產",
|
||||||
|
"SyncRegion": "正在同步地域",
|
||||||
"SyncSelected": "同步所選",
|
"SyncSelected": "同步所選",
|
||||||
"SyncSetting": "同步設定",
|
"SyncSetting": "同步設定",
|
||||||
"SyncStrategy": "同步策略",
|
"SyncStrategy": "同步策略",
|
||||||
"SyncSuccessMsg": "同步成功",
|
"SyncSuccessMsg": "同步成功",
|
||||||
"SyncTask": "同步任務",
|
"SyncTask": "同步任務",
|
||||||
|
"SyncTiming": "定時同步",
|
||||||
"SyncUpdateAccountInfo": "同步更新帳號資訊",
|
"SyncUpdateAccountInfo": "同步更新帳號資訊",
|
||||||
"SyncUser": "同步用戶",
|
"SyncUser": "同步用戶",
|
||||||
"SyncedCount": "已同步",
|
"SyncedCount": "已同步",
|
||||||
|
@ -1365,6 +1378,9 @@
|
||||||
"TotalJobFailed": "執行失敗作業數",
|
"TotalJobFailed": "執行失敗作業數",
|
||||||
"TotalJobLog": "作業執行總數",
|
"TotalJobLog": "作業執行總數",
|
||||||
"TotalJobRunning": "運行中作業數",
|
"TotalJobRunning": "運行中作業數",
|
||||||
|
"TotalSyncAsset": "同步資產數(個)",
|
||||||
|
"TotalSyncRegion": "同步地域數(個)",
|
||||||
|
"TotalSyncStrategy": "綁定策略數(個)",
|
||||||
"Transfer": "傳輸",
|
"Transfer": "傳輸",
|
||||||
"True": "是",
|
"True": "是",
|
||||||
"Tuesday": "週二",
|
"Tuesday": "週二",
|
||||||
|
@ -1700,7 +1716,7 @@
|
||||||
"ip_group": "IP 組",
|
"ip_group": "IP 組",
|
||||||
"ips": "請輸入逗號分割的IP位址組",
|
"ips": "請輸入逗號分割的IP位址組",
|
||||||
"isEffective": "已生效的",
|
"isEffective": "已生效的",
|
||||||
"isFinished": "是否完成",
|
"IsFinished": "完成",
|
||||||
"isSuccess": "成功",
|
"isSuccess": "成功",
|
||||||
"isValid": "有效",
|
"isValid": "有效",
|
||||||
"is_locked": "是否暫停",
|
"is_locked": "是否暫停",
|
||||||
|
|
|
@ -3,6 +3,7 @@ from channels.db import database_sync_to_async
|
||||||
from channels.routing import ProtocolTypeRouter, URLRouter
|
from channels.routing import ProtocolTypeRouter, URLRouter
|
||||||
from django.core.asgi import get_asgi_application
|
from django.core.asgi import get_asgi_application
|
||||||
from django.core.handlers.asgi import ASGIRequest
|
from django.core.handlers.asgi import ASGIRequest
|
||||||
|
from django.conf import settings
|
||||||
|
|
||||||
from authentication.backends.drf import (
|
from authentication.backends.drf import (
|
||||||
SignatureAuthentication,
|
SignatureAuthentication,
|
||||||
|
@ -20,6 +21,10 @@ urlpatterns = ops_urlpatterns + \
|
||||||
setting_urlpatterns + \
|
setting_urlpatterns + \
|
||||||
terminal_urlpatterns
|
terminal_urlpatterns
|
||||||
|
|
||||||
|
if settings.XPACK_ENABLED:
|
||||||
|
from xpack.plugins.cloud.urls.ws_urls import urlpatterns as xcloud_urlpatterns
|
||||||
|
urlpatterns += xcloud_urlpatterns
|
||||||
|
|
||||||
|
|
||||||
@database_sync_to_async
|
@database_sync_to_async
|
||||||
def get_signature_user(scope):
|
def get_signature_user(scope):
|
||||||
|
|
|
@ -165,8 +165,8 @@ CELERY_RESULT_SERIALIZER = 'pickle'
|
||||||
CELERY_RESULT_BACKEND = CELERY_BROKER_URL
|
CELERY_RESULT_BACKEND = CELERY_BROKER_URL
|
||||||
CELERY_ACCEPT_CONTENT = ['json', 'pickle']
|
CELERY_ACCEPT_CONTENT = ['json', 'pickle']
|
||||||
CELERY_RESULT_EXPIRES = 600
|
CELERY_RESULT_EXPIRES = 600
|
||||||
CELERY_WORKER_TASK_LOG_FORMAT = '%(message)s'
|
CELERY_WORKER_TASK_LOG_FORMAT = '%(asctime).19s %(message)s'
|
||||||
CELERY_WORKER_LOG_FORMAT = '%(message)s'
|
CELERY_WORKER_LOG_FORMAT = '%(asctime).19s %(message)s'
|
||||||
CELERY_TASK_EAGER_PROPAGATES = True
|
CELERY_TASK_EAGER_PROPAGATES = True
|
||||||
CELERY_WORKER_REDIRECT_STDOUTS = True
|
CELERY_WORKER_REDIRECT_STDOUTS = True
|
||||||
CELERY_WORKER_REDIRECT_STDOUTS_LEVEL = "INFO"
|
CELERY_WORKER_REDIRECT_STDOUTS_LEVEL = "INFO"
|
||||||
|
|
|
@ -39,7 +39,7 @@ class AssetPermissionSerializer(ResourceLabelsMixin, BulkOrgResourceModelSeriali
|
||||||
user_groups_amount = serializers.IntegerField(read_only=True, label=_("Groups amount"))
|
user_groups_amount = serializers.IntegerField(read_only=True, label=_("Groups amount"))
|
||||||
assets_amount = serializers.IntegerField(read_only=True, label=_("Assets amount"))
|
assets_amount = serializers.IntegerField(read_only=True, label=_("Assets amount"))
|
||||||
nodes_amount = serializers.IntegerField(read_only=True, label=_("Nodes amount"))
|
nodes_amount = serializers.IntegerField(read_only=True, label=_("Nodes amount"))
|
||||||
actions = ActionChoicesField(required=False, allow_null=True, label=_("Actions"))
|
actions = ActionChoicesField(required=False, allow_null=True, label=_("Action"))
|
||||||
is_valid = serializers.BooleanField(read_only=True, label=_("Is valid"))
|
is_valid = serializers.BooleanField(read_only=True, label=_("Is valid"))
|
||||||
is_expired = serializers.BooleanField(read_only=True, label=_("Is expired"))
|
is_expired = serializers.BooleanField(read_only=True, label=_("Is expired"))
|
||||||
accounts = serializers.ListField(label=_("Accounts"), required=False)
|
accounts = serializers.ListField(label=_("Accounts"), required=False)
|
||||||
|
@ -61,7 +61,7 @@ class AssetPermissionSerializer(ResourceLabelsMixin, BulkOrgResourceModelSeriali
|
||||||
fields = fields_mini + fields_m2m + fields_generic
|
fields = fields_mini + fields_m2m + fields_generic
|
||||||
read_only_fields = ["created_by", "date_created", "from_ticket"]
|
read_only_fields = ["created_by", "date_created", "from_ticket"]
|
||||||
extra_kwargs = {
|
extra_kwargs = {
|
||||||
"actions": {"label": _("Actions")},
|
"actions": {"label": _("Action")},
|
||||||
"is_expired": {"label": _("Is expired")},
|
"is_expired": {"label": _("Is expired")},
|
||||||
"is_valid": {"label": _("Is valid")},
|
"is_valid": {"label": _("Is valid")},
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,7 +68,7 @@ class NativeClient(TextChoices):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def xpack_methods(cls):
|
def xpack_methods(cls):
|
||||||
return [cls.mstsc]
|
return [cls.mstsc, cls.db_client]
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_methods(cls, os='windows'):
|
def get_methods(cls, os='windows'):
|
||||||
|
@ -151,6 +151,7 @@ class ConnectMethodUtil:
|
||||||
|
|
||||||
Protocol.mysql, Protocol.mariadb,
|
Protocol.mysql, Protocol.mariadb,
|
||||||
Protocol.sqlserver, Protocol.postgresql,
|
Protocol.sqlserver, Protocol.postgresql,
|
||||||
|
Protocol.oracle
|
||||||
],
|
],
|
||||||
# 限制客户端的协议,比如 koko 虽然也支持 数据库的 ssh 连接,但是不再这里拉起
|
# 限制客户端的协议,比如 koko 虽然也支持 数据库的 ssh 连接,但是不再这里拉起
|
||||||
# Listen协议: [Asset协议]
|
# Listen协议: [Asset协议]
|
||||||
|
|
|
@ -16,7 +16,7 @@ class SimpleSessionCommandSerializer(serializers.ModelSerializer):
|
||||||
user = serializers.CharField(label=_("User")) # 限制 64 字符,见 validate_user
|
user = serializers.CharField(label=_("User")) # 限制 64 字符,见 validate_user
|
||||||
asset = serializers.CharField(max_length=128, label=_("Asset"))
|
asset = serializers.CharField(max_length=128, label=_("Asset"))
|
||||||
input = serializers.CharField(label=_("Command"))
|
input = serializers.CharField(label=_("Command"))
|
||||||
session = serializers.CharField(max_length=36, label=_("Session ID"))
|
session = serializers.CharField(max_length=36, label=_("Session"))
|
||||||
risk_level = LabeledChoiceField(
|
risk_level = LabeledChoiceField(
|
||||||
choices=RiskLevelChoices.choices,
|
choices=RiskLevelChoices.choices,
|
||||||
required=False, label=_("Risk level"),
|
required=False, label=_("Risk level"),
|
||||||
|
|
Loading…
Reference in New Issue