Compare commits
8 Commits
9c703b4bee
...
f51c2a8cbc
| Author | SHA1 | Date |
|---|---|---|
|
|
f51c2a8cbc | |
|
|
6226d7c531 | |
|
|
f7b273eced | |
|
|
8f4081a5b1 | |
|
|
359778967f | |
|
|
703625d59a | |
|
|
cb24ef6d4f | |
|
|
fe77acd5f0 |
|
|
@ -17,13 +17,13 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
- name: Set up Node.js
|
- name: Set up Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v5
|
||||||
with:
|
with:
|
||||||
node-version: "22"
|
node-version: "22"
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
cache-dependency-path: "**/package-lock.json"
|
cache-dependency-path: "**/package-lock.json"
|
||||||
- name: Set up Golang
|
- name: Set up Golang
|
||||||
uses: actions/setup-go@v5.5.0
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: "1.24.4"
|
go-version: "1.24.4"
|
||||||
- name: Build frontend
|
- name: Build frontend
|
||||||
|
|
|
||||||
|
|
@ -22,16 +22,16 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
|
uses: actions/checkout@v5
|
||||||
- name: Install Go
|
- name: Install Go
|
||||||
uses: actions/setup-go@fa96338abe5531f6e34c5cc0bbe28c1a533d5505 # v4.2.1
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: 1.24.4
|
go-version: oldstable
|
||||||
- name: Create empty resource directory
|
- name: Create empty resource directory
|
||||||
run: |
|
run: |
|
||||||
mkdir -p static && touch static/.gitkeep
|
mkdir -p static && touch static/.gitkeep
|
||||||
- name: Lint
|
- name: Lint
|
||||||
uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # v7.0.0
|
uses: golangci/golangci-lint-action@v8
|
||||||
with:
|
with:
|
||||||
args: --verbose
|
args: --verbose
|
||||||
version: v2.0.2
|
version: v2.1
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
- name: Set up Node.js
|
- name: Set up Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v5
|
||||||
with:
|
with:
|
||||||
node-version: "22"
|
node-version: "22"
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
|
|
|
||||||
2
Makefile
|
|
@ -8,7 +8,7 @@ VERSION := 0.4.8
|
||||||
PROMETHEUS_TAG := github.com/prometheus/common/version
|
PROMETHEUS_TAG := github.com/prometheus/common/version
|
||||||
KVM_PKG_NAME := github.com/jetkvm/kvm
|
KVM_PKG_NAME := github.com/jetkvm/kvm
|
||||||
|
|
||||||
GO_BUILD_ARGS := -tags netgo -tags timetzdata
|
GO_BUILD_ARGS := -tags netgo,timetzdata,nomsgpack
|
||||||
GO_RELEASE_BUILD_ARGS := -trimpath $(GO_BUILD_ARGS)
|
GO_RELEASE_BUILD_ARGS := -trimpath $(GO_BUILD_ARGS)
|
||||||
GO_LDFLAGS := \
|
GO_LDFLAGS := \
|
||||||
-s -w \
|
-s -w \
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<!-- These are the fonts used in the app -->
|
|
||||||
<link
|
<link
|
||||||
rel="preload"
|
rel="preload"
|
||||||
href="./public/fonts/CircularXXWeb-Medium.woff2"
|
href="./public/fonts/CircularXXWeb-Medium.woff2"
|
||||||
|
|
@ -32,6 +31,13 @@
|
||||||
type="font/woff2"
|
type="font/woff2"
|
||||||
crossorigin
|
crossorigin
|
||||||
/>
|
/>
|
||||||
|
<link
|
||||||
|
rel="preload"
|
||||||
|
href="./public/fonts/CircularXXWeb-Bold.woff2"
|
||||||
|
as="font"
|
||||||
|
type="font/woff2"
|
||||||
|
crossorigin
|
||||||
|
/>
|
||||||
<title>JetKVM</title>
|
<title>JetKVM</title>
|
||||||
<link rel="stylesheet" href="./public/fonts/fonts.css" />
|
<link rel="stylesheet" href="./public/fonts/fonts.css" />
|
||||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
|
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "kvm-ui",
|
"name": "kvm-ui",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "2025.09.03.2100",
|
"version": "2025.09.23.0000",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "22.15.0"
|
"node": "22.15.0"
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@headlessui/react": "^2.2.7",
|
"@headlessui/react": "^2.2.8",
|
||||||
"@headlessui/tailwindcss": "^0.2.2",
|
"@headlessui/tailwindcss": "^0.2.2",
|
||||||
"@heroicons/react": "^2.2.0",
|
"@heroicons/react": "^2.2.0",
|
||||||
"@vitejs/plugin-basic-ssl": "^2.1.0",
|
"@vitejs/plugin-basic-ssl": "^2.1.0",
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
"react-i18next": "^16.0.0",
|
"react-i18next": "^16.0.0",
|
||||||
"eslint-import-resolver-alias": "^1.1.2",
|
"eslint-import-resolver-alias": "^1.1.2",
|
||||||
"focus-trap-react": "^11.0.4",
|
"focus-trap-react": "^11.0.4",
|
||||||
"framer-motion": "^12.23.12",
|
"framer-motion": "^12.23.18",
|
||||||
"lodash.throttle": "^4.1.1",
|
"lodash.throttle": "^4.1.1",
|
||||||
"mini-svg-data-uri": "^1.4.4",
|
"mini-svg-data-uri": "^1.4.4",
|
||||||
"react": "^19.1.1",
|
"react": "^19.1.1",
|
||||||
|
|
@ -44,45 +44,45 @@
|
||||||
"react-dom": "^19.1.1",
|
"react-dom": "^19.1.1",
|
||||||
"react-hot-toast": "^2.6.0",
|
"react-hot-toast": "^2.6.0",
|
||||||
"react-icons": "^5.5.0",
|
"react-icons": "^5.5.0",
|
||||||
"react-router": "^7.8.2",
|
"react-router": "^7.9.1",
|
||||||
"react-simple-keyboard": "^3.8.119",
|
"react-simple-keyboard": "^3.8.122",
|
||||||
"react-use-websocket": "^4.13.0",
|
"react-use-websocket": "^4.13.0",
|
||||||
"react-xtermjs": "^1.0.10",
|
"react-xtermjs": "^1.0.10",
|
||||||
"recharts": "^3.1.2",
|
"recharts": "^3.2.1",
|
||||||
"tailwind-merge": "^3.3.1",
|
"tailwind-merge": "^3.3.1",
|
||||||
"usehooks-ts": "^3.1.1",
|
"usehooks-ts": "^3.1.1",
|
||||||
"validator": "^13.15.15",
|
"validator": "^13.15.15",
|
||||||
"zustand": "^4.5.2"
|
"zustand": "^4.5.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/compat": "^1.3.2",
|
"@eslint/compat": "^1.4.0",
|
||||||
"@eslint/eslintrc": "^3.3.1",
|
"@eslint/eslintrc": "^3.3.1",
|
||||||
"@eslint/js": "^9.34.0",
|
"@eslint/js": "^9.36.0",
|
||||||
"@tailwindcss/forms": "^0.5.10",
|
"@tailwindcss/forms": "^0.5.10",
|
||||||
"@tailwindcss/postcss": "^4.1.12",
|
"@tailwindcss/postcss": "^4.1.13",
|
||||||
"@tailwindcss/typography": "^0.5.16",
|
"@tailwindcss/typography": "^0.5.18",
|
||||||
"@tailwindcss/vite": "^4.1.12",
|
"@tailwindcss/vite": "^4.1.13",
|
||||||
"@types/react": "^19.1.12",
|
"@types/react": "^19.1.13",
|
||||||
"@types/react-dom": "^19.1.9",
|
"@types/react-dom": "^19.1.9",
|
||||||
"@types/semver": "^7.7.1",
|
"@types/semver": "^7.7.1",
|
||||||
"@types/validator": "^13.15.3",
|
"@types/validator": "^13.15.3",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.42.0",
|
"@typescript-eslint/eslint-plugin": "^8.44.1",
|
||||||
"@typescript-eslint/parser": "^8.42.0",
|
"@typescript-eslint/parser": "^8.44.1",
|
||||||
"@vitejs/plugin-react-swc": "^4.0.1",
|
"@vitejs/plugin-react-swc": "^4.1.0",
|
||||||
"autoprefixer": "^10.4.21",
|
"autoprefixer": "^10.4.21",
|
||||||
"eslint": "^9.34.0",
|
"eslint": "^9.36.0",
|
||||||
"eslint-config-prettier": "^10.1.8",
|
"eslint-config-prettier": "^10.1.8",
|
||||||
"eslint-plugin-import": "^2.32.0",
|
"eslint-plugin-import": "^2.32.0",
|
||||||
"eslint-plugin-react": "^7.37.5",
|
"eslint-plugin-react": "^7.37.5",
|
||||||
"eslint-plugin-react-hooks": "^5.2.0",
|
"eslint-plugin-react-hooks": "^5.2.0",
|
||||||
"eslint-plugin-react-refresh": "^0.4.20",
|
"eslint-plugin-react-refresh": "^0.4.21",
|
||||||
"globals": "^16.3.0",
|
"globals": "^16.4.0",
|
||||||
"postcss": "^8.5.6",
|
"postcss": "^8.5.6",
|
||||||
"prettier": "^3.6.2",
|
"prettier": "^3.6.2",
|
||||||
"prettier-plugin-tailwindcss": "^0.6.14",
|
"prettier-plugin-tailwindcss": "^0.6.14",
|
||||||
"tailwindcss": "^4.1.12",
|
"tailwindcss": "^4.1.13",
|
||||||
"typescript": "^5.9.2",
|
"typescript": "^5.9.2",
|
||||||
"vite": "^7.1.5",
|
"vite": "^7.1.7",
|
||||||
"vite-tsconfig-paths": "^5.1.4"
|
"vite-tsconfig-paths": "^5.1.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="#1D4ED8" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/><path fill="#fff" d="M13.885 12a1.895 1.895 0 1 1-3.79 0 1.895 1.895 0 0 1 3.79 0Z"/><path fill="#fff" fill-rule="evenodd" d="M7.59 9.363c.49.182.74.727.558 1.218A4.103 4.103 0 0 0 12 16.105a4.103 4.103 0 0 0 3.852-5.526.947.947 0 0 1 1.777-.658A5.998 5.998 0 0 1 12 18a5.998 5.998 0 0 1-5.628-8.078.947.947 0 0 1 1.218-.56ZM11.993 7.895c-.628 0-1.22.14-1.75.39a.947.947 0 1 1-.808-1.714A5.985 5.985 0 0 1 11.993 6c.913 0 1.78.204 2.557.57a.947.947 0 1 1-.808 1.715 4.09 4.09 0 0 0-1.75-.39Z" clip-rule="evenodd"/><path fill="#1D4ED8" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/><path fill="#fff" d="M13.885 12a1.895 1.895 0 1 1-3.79 0 1.895 1.895 0 0 1 3.79 0Z"/><path fill="#fff" fill-rule="evenodd" d="M7.59 9.363c.49.182.74.727.558 1.218A4.103 4.103 0 0 0 12 16.105a4.103 4.103 0 0 0 3.852-5.526.947.947 0 0 1 1.777-.658A5.998 5.998 0 0 1 12 18a5.998 5.998 0 0 1-5.628-8.078.947.947 0 0 1 1.218-.56ZM11.993 7.895c-.628 0-1.22.14-1.75.39a.947.947 0 1 1-.808-1.714A5.985 5.985 0 0 1 11.993 6c.913 0 1.78.204 2.557.57a.947.947 0 1 1-.808 1.715 4.09 4.09 0 0 0-1.75-.39Z" clip-rule="evenodd"/></svg><style>@media (prefers-color-scheme:light){:root{filter:none}}@media (prefers-color-scheme:dark){:root{filter:none}}</style></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="#1D4ED8" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/><path fill="#fff" d="M13.885 12a1.895 1.895 0 1 1-3.79 0 1.895 1.895 0 0 1 3.79 0Z"/><path fill="#fff" fill-rule="evenodd" d="M7.59 9.363c.49.182.74.727.558 1.218A4.103 4.103 0 0 0 12 16.105a4.103 4.103 0 0 0 3.852-5.526.947.947 0 0 1 1.777-.658A5.998 5.998 0 0 1 12 18a5.998 5.998 0 0 1-5.628-8.078.947.947 0 0 1 1.218-.56Zm4.403-1.468c-.628 0-1.22.14-1.75.39a.947.947 0 1 1-.808-1.714A5.985 5.985 0 0 1 11.993 6c.913 0 1.78.204 2.557.57a.947.947 0 1 1-.808 1.715 4.09 4.09 0 0 0-1.75-.39Z" clip-rule="evenodd"/><path fill="#1D4ED8" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/><path fill="#fff" d="M13.885 12a1.895 1.895 0 1 1-3.79 0 1.895 1.895 0 0 1 3.79 0Z"/><path fill="#fff" fill-rule="evenodd" d="M7.59 9.363c.49.182.74.727.558 1.218A4.103 4.103 0 0 0 12 16.105a4.103 4.103 0 0 0 3.852-5.526.947.947 0 0 1 1.777-.658A5.998 5.998 0 0 1 12 18a5.998 5.998 0 0 1-5.628-8.078.947.947 0 0 1 1.218-.56Zm4.403-1.468c-.628 0-1.22.14-1.75.39a.947.947 0 1 1-.808-1.714A5.985 5.985 0 0 1 11.993 6c.913 0 1.78.204 2.557.57a.947.947 0 1 1-.808 1.715 4.09 4.09 0 0 0-1.75-.39Z" clip-rule="evenodd"/></svg><style>@media (prefers-color-scheme:light){:root{filter:none}}@media (prefers-color-scheme:dark){:root{filter:none}}</style></svg>
|
||||||
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
|
@ -1 +1 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="#1D4ED8" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/><path fill="#fff" d="M13.885 12a1.895 1.895 0 1 1-3.79 0 1.895 1.895 0 0 1 3.79 0Z"/><path fill="#fff" fill-rule="evenodd" d="M7.59 9.363c.49.182.74.727.558 1.218A4.103 4.103 0 0 0 12 16.105a4.103 4.103 0 0 0 3.852-5.526.947.947 0 0 1 1.777-.658A5.998 5.998 0 0 1 12 18a5.998 5.998 0 0 1-5.628-8.078.947.947 0 0 1 1.218-.56ZM11.993 7.895c-.628 0-1.22.14-1.75.39a.947.947 0 1 1-.808-1.714A5.985 5.985 0 0 1 11.993 6c.913 0 1.78.204 2.557.57a.947.947 0 1 1-.808 1.715 4.09 4.09 0 0 0-1.75-.39Z" clip-rule="evenodd"/><path fill="#1D4ED8" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/><path fill="#fff" d="M13.885 12a1.895 1.895 0 1 1-3.79 0 1.895 1.895 0 0 1 3.79 0Z"/><path fill="#fff" fill-rule="evenodd" d="M7.59 9.363c.49.182.74.727.558 1.218A4.103 4.103 0 0 0 12 16.105a4.103 4.103 0 0 0 3.852-5.526.947.947 0 0 1 1.777-.658A5.998 5.998 0 0 1 12 18a5.998 5.998 0 0 1-5.628-8.078.947.947 0 0 1 1.218-.56ZM11.993 7.895c-.628 0-1.22.14-1.75.39a.947.947 0 1 1-.808-1.714A5.985 5.985 0 0 1 11.993 6c.913 0 1.78.204 2.557.57a.947.947 0 1 1-.808 1.715 4.09 4.09 0 0 0-1.75-.39Z" clip-rule="evenodd"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="#1D4ED8" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/><path fill="#fff" d="M13.885 12a1.895 1.895 0 1 1-3.79 0 1.895 1.895 0 0 1 3.79 0Z"/><path fill="#fff" fill-rule="evenodd" d="M7.59 9.363c.49.182.74.727.558 1.218A4.103 4.103 0 0 0 12 16.105a4.103 4.103 0 0 0 3.852-5.526.947.947 0 0 1 1.777-.658A5.998 5.998 0 0 1 12 18a5.998 5.998 0 0 1-5.628-8.078.947.947 0 0 1 1.218-.56Zm4.403-1.468c-.628 0-1.22.14-1.75.39a.947.947 0 1 1-.808-1.714A5.985 5.985 0 0 1 11.993 6c.913 0 1.78.204 2.557.57a.947.947 0 1 1-.808 1.715 4.09 4.09 0 0 0-1.75-.39Z" clip-rule="evenodd"/><path fill="#1D4ED8" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/><path fill="#fff" d="M13.885 12a1.895 1.895 0 1 1-3.79 0 1.895 1.895 0 0 1 3.79 0Z"/><path fill="#fff" fill-rule="evenodd" d="M7.59 9.363c.49.182.74.727.558 1.218A4.103 4.103 0 0 0 12 16.105a4.103 4.103 0 0 0 3.852-5.526.947.947 0 0 1 1.777-.658A5.998 5.998 0 0 1 12 18a5.998 5.998 0 0 1-5.628-8.078.947.947 0 0 1 1.218-.56Zm4.403-1.468c-.628 0-1.22.14-1.75.39a.947.947 0 1 1-.808-1.714A5.985 5.985 0 0 1 11.993 6c.913 0 1.78.204 2.557.57a.947.947 0 1 1-.808 1.715 4.09 4.09 0 0 0-1.75-.39Z" clip-rule="evenodd"/></svg>
|
||||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
|
@ -0,0 +1,757 @@
|
||||||
|
{
|
||||||
|
"1Hour": "1 Hour",
|
||||||
|
"ATX_Power_Control": "ATX Power Control",
|
||||||
|
"A_loose_or_faulty_HDMI_connection": "A loose or faulty HDMI connection",
|
||||||
|
"A_new_update_is_available_to_enhance_system_performance_and_improve_compatibility_We_recommend_updating_to_ensure_everything_runs_smoothly": "A new update is available to enhance system performance and improve compatibility. We recommend updating to ensure everything runs smoothly.",
|
||||||
|
"Absolute": "Absolute",
|
||||||
|
"Access": "Access",
|
||||||
|
"Access_additional_settings_for_troubleshooting_and_customization": "Access additional settings for troubleshooting and customization",
|
||||||
|
"Access_your_serial_console_extension": "Access your serial console extension",
|
||||||
|
"Add_New_Device": "Add New Device",
|
||||||
|
"Add_New_Macro": "Add New Macro",
|
||||||
|
"Add_New_Media": "Add New Media",
|
||||||
|
"Add_Step_max": "Add Step {{max}}",
|
||||||
|
"Add_a_device_to_start_using_Wake-on-LAN": "Add a device to start using Wake-on-LAN",
|
||||||
|
"Add_a_file_to_get_started": "Add a file to get started",
|
||||||
|
"Add_your_SSH_public_key_to_enable_secure_remote_access_to_the_device": "Add your SSH public key to enable secure remote access to the device",
|
||||||
|
"Address": "Address",
|
||||||
|
"Adjust_color_settings_to_make_the_video_output_more_vibrant_and_colorful": "Adjust color settings to make the video output more vibrant and colorful",
|
||||||
|
"Adjust_the_EDID_settings_for_the_display": "Adjust the EDID settings for the display",
|
||||||
|
"Adjust_the_quality_of_the_video_stream": "Adjust the quality of the video stream",
|
||||||
|
"Adopt_KVM_to_Cloud": "Adopt KVM to Cloud",
|
||||||
|
"Advanced": "Advanced",
|
||||||
|
"All": "All",
|
||||||
|
"All_cloud_components_are_open-source_and_available_on": "All cloud components are open-source and available on ",
|
||||||
|
"All_data_remains_on_your_local_device": "All data remains on your local device.",
|
||||||
|
"All_streams_encrypted_in_transit": "All streams encrypted in transit",
|
||||||
|
"Already_have_an_account": "Already have an account?",
|
||||||
|
"Alt": "Alt",
|
||||||
|
"AltGr": "AltGr",
|
||||||
|
"An_error_occurred_while_attempting_to_mount_the_media_Please_try_again": "An error occurred while attempting to mount the media. Please try again.",
|
||||||
|
"An_error_occurred_while_changing_the_password": "An error occurred while changing the password",
|
||||||
|
"An_error_occurred_while_disabling_the_password": "An error occurred while disabling the password",
|
||||||
|
"An_error_occurred_while_logging_in": "An error occurred while logging in",
|
||||||
|
"An_error_occurred_while_saving": "An error occurred while saving",
|
||||||
|
"An_error_occurred_while_setting_the_authentication_mode": "An error occurred while setting the authentication mode",
|
||||||
|
"An_error_occurred_while_setting_the_password": "An error occurred while setting the password",
|
||||||
|
"An_error_occurred_while_updating_your_device_Please_try_again_later": "An error occurred while updating your device. Please try again later.",
|
||||||
|
"Another_Active_Session_Detected": "Another Active Session Detected",
|
||||||
|
"App": "App",
|
||||||
|
"App_Update": "App Update",
|
||||||
|
"Appearance": "Appearance",
|
||||||
|
"Are_you_sure_you_want_to_de-register_this_device": "Are you sure you want to de-register this device?",
|
||||||
|
"Are_you_sure_you_want_to_delete": "Are you sure you want to delete {{file}} ?",
|
||||||
|
"Are_you_sure_you_want_to_delete_name_This_action_cannot_be_undone": "Are you sure you want to delete {{name}}? This action cannot be undone.",
|
||||||
|
"Are_you_sure_you_want_to_delete_this_macro_This_action_cannot_be_undone": "Are you sure you want to delete this macro? This action cannot be undone.",
|
||||||
|
"At_least_one_step_is_required": "At least one step is required",
|
||||||
|
"At_least_one_step_must_have_keys_or_modifiers": "At least one step must have keys or modifiers",
|
||||||
|
"Attach": "Attach",
|
||||||
|
"Authentication_Mode": "Authentication Mode",
|
||||||
|
"Auto": "Auto",
|
||||||
|
"Auto_Update": "Auto Update",
|
||||||
|
"Automatically_update_the_device_to_the_latest_version": "Automatically update the device to the latest version",
|
||||||
|
"Autoplay_permissions_required": "Autoplay permissions required",
|
||||||
|
"Available_Storage": "Available Storage",
|
||||||
|
"Awaiting_reboot": "Awaiting reboot",
|
||||||
|
"Back": "Back",
|
||||||
|
"Back_to_Devices": "Back to Devices",
|
||||||
|
"Back_to_KVM": "Back to KVM",
|
||||||
|
"Back_to_Overview": "Back to Overview",
|
||||||
|
"Backlight_settings_updated_successfully": "Backlight settings updated successfully",
|
||||||
|
"Basic": "Basic",
|
||||||
|
"Baud_Rate": "Baud Rate",
|
||||||
|
"Before_enabling_this_feature_make_sure_you_have_either": "Before enabling this feature, make sure you have either:",
|
||||||
|
"Boot_File": "Boot File",
|
||||||
|
"Boot_Next_Server": "Boot Next Server",
|
||||||
|
"Boot_Server_Name": "Boot Server Name",
|
||||||
|
"Brightness": "Brightness",
|
||||||
|
"Brightness_level_brightness": "Brightness level ({{brightness}}x)",
|
||||||
|
"Broadcast": "Broadcast",
|
||||||
|
"Business_Hours_8-17": "Business Hours 8-17",
|
||||||
|
"Business_Hours_9-17": "Business Hours 9-17",
|
||||||
|
"CD/DVD": "CD/DVD",
|
||||||
|
"Calculating...": "Calculating...",
|
||||||
|
"Cancel": "Cancel",
|
||||||
|
"Cancel_Upload": "Cancel Upload",
|
||||||
|
"Change_Local_Device_Password": "Change Local Device Password",
|
||||||
|
"Change_Password": "Change Password",
|
||||||
|
"Check_Again": "Check Again",
|
||||||
|
"Check_cable_loose_damaged": "Check all cable connections for any loose or damaged wires",
|
||||||
|
"Check_for_Updates": "Check for Updates",
|
||||||
|
"Checking_for_updates": "Checking for updates...",
|
||||||
|
"Choose_how_you_want_to_mount_your_virtual_media": "Choose how you want to mount your virtual media",
|
||||||
|
"Choose_the_mouse_input_mode": "Choose the mouse input mode",
|
||||||
|
"Choose_your_preferred_color_theme": "Choose your preferred color theme",
|
||||||
|
"Classes": "Classes",
|
||||||
|
"Click_to_select": "Click to select",
|
||||||
|
"Click_to_select_a_file": "Click to select a file",
|
||||||
|
"Click_video_enable_mouse_control": "Click on the video to enable mouse control",
|
||||||
|
"Close": "Close",
|
||||||
|
"Closed": "Closed",
|
||||||
|
"Closing": "Closing",
|
||||||
|
"Cloud_API_URL": "Cloud API URL",
|
||||||
|
"Cloud_App_URL": "Cloud App URL",
|
||||||
|
"Cloud_Devices": "Cloud Devices",
|
||||||
|
"Cloud_KVMs": "Cloud KVMs",
|
||||||
|
"Cloud_Provider": "Cloud Provider",
|
||||||
|
"Cloud_Security": "Cloud Security",
|
||||||
|
"Cloud_access_enabled_and_working": "Cloud access enabled and working",
|
||||||
|
"Color_saturation_sat_x": "Color saturation ({{sat}}x)",
|
||||||
|
"Combine_keystrokes_into_a_single_action": "Combine keystrokes into a single action",
|
||||||
|
"Combine_keystrokes_into_a_single_action_for_faster_workflows": "Combine keystrokes into a single action for faster workflows.",
|
||||||
|
"Configuration_reset_to_default_successfully": "Configuration reset to default successfully",
|
||||||
|
"Configure_cursor_behavior_and_interaction_settings_for_your_device": "Configure cursor behavior and interaction settings for your device",
|
||||||
|
"Configure_device_settings_and_update_preferences": "Configure device settings and update preferences",
|
||||||
|
"Configure_display_settings_and_EDID_for_optimal_compatibility": "Configure display settings and EDID for optimal compatibility",
|
||||||
|
"Configure_display_settings_and_hardware_options_for_your_JetKVM_device": "Configure display settings and hardware options for your JetKVM device",
|
||||||
|
"Configure_keyboard_settings_for_your_device": "Configure keyboard settings for your device",
|
||||||
|
"Configure_secure_HTTPS_access_to_your_device": "Configure secure HTTPS access to your device",
|
||||||
|
"Configure_the_IPv4_mode": "Configure the IPv4 mode",
|
||||||
|
"Configure_the_IPv6_mode": "Configure the IPv6 mode",
|
||||||
|
"Configure_time_synchronization_settings": "Configure time synchronization settings",
|
||||||
|
"Configure_your_network_settings": "Configure your network settings",
|
||||||
|
"Configure_your_serial_console_settings": "Configure your serial console settings",
|
||||||
|
"Confirm": "Confirm",
|
||||||
|
"Confirm_New_Password": "Confirm New Password",
|
||||||
|
"Confirm_Password": "Confirm Password",
|
||||||
|
"Confirm_Paste": "Confirm Paste",
|
||||||
|
"Confirm_your_password": "Confirm your password",
|
||||||
|
"Connect_to_KVM": "Connect to KVM",
|
||||||
|
"Connect_your_JetKVM_to_the_cloud": "Connect your JetKVM to the cloud",
|
||||||
|
"Connected": "Connected",
|
||||||
|
"Connecting": "Connecting",
|
||||||
|
"Connecting_to_device": "Connecting to device...",
|
||||||
|
"Connection": "Connection",
|
||||||
|
"Connection_Issue_Detected": "Connection Issue Detected",
|
||||||
|
"Connection_Stats": "Connection Stats",
|
||||||
|
"Connection_error": "Connection error",
|
||||||
|
"Connection_established": "Connection established",
|
||||||
|
"Connection_failed": "Connection failed",
|
||||||
|
"Continue": "Continue",
|
||||||
|
"Continue_uploading": "Continue uploading",
|
||||||
|
"Continue_uploading_fille": "Continue uploading {{file}}",
|
||||||
|
"Contrast": "Contrast",
|
||||||
|
"Contrast_level_contrast": "Contrast level ({{contrast}}x)",
|
||||||
|
"Control": "Control",
|
||||||
|
"Control_any_computer_remotely": "Control any computer remotely",
|
||||||
|
"Control_mDNS_(multicast_DNS)_operational_mode": "Control mDNS (multicast DNS) operational mode",
|
||||||
|
"Control_mDNS_multicast_DNS_operational_mode": "Control mDNS (multicast DNS) operational mode",
|
||||||
|
"Control_the_USB_emulation_state": "Control the USB emulation state",
|
||||||
|
"Control_which_TLVs_will_be_sent_over_Link_Layer_Discovery_Protocol": "Control which TLVs will be sent over Link Layer Discovery Protocol",
|
||||||
|
"Control_your_ATX_Power_extension": "Control your ATX Power extension",
|
||||||
|
"Control_your_ATX_power_settings": "Control your ATX power settings",
|
||||||
|
"Control_your_DC_Power_extension": "Control your DC Power extension",
|
||||||
|
"Control_your_DC_power_settings": "Control your DC power settings",
|
||||||
|
"Count_of_lost_inbound_video_RTP_packets": "Count of lost inbound video RTP packets.",
|
||||||
|
"Create_Account": "Create Account",
|
||||||
|
"Create_Your_First_Macro": "Create Your First Macro",
|
||||||
|
"Create_a_new_keyboard_macro": "Create a new keyboard macro",
|
||||||
|
"Create_a_password_to_protect_your_device_from_unauthorized_local_access": "Create a password to protect your device from unauthorized local access.",
|
||||||
|
"Create_a_strong_password_to_secure_your_JetKVM_device_locally": "Create a strong password to secure your JetKVM device locally.",
|
||||||
|
"Create_your_JetKVM_account": "Create your JetKVM account",
|
||||||
|
"Create_your_account_and_start_managing_your_devices_with_ease": "Create your account and start managing your devices with ease.",
|
||||||
|
"Creating_peer_connection": "Creating peer connection...",
|
||||||
|
"Cron_Schedule": "Cron Schedule",
|
||||||
|
"Cron_expression_for_scheduling": "Cron expression for scheduling",
|
||||||
|
"Current": "Current",
|
||||||
|
"Current_Password": "Current Password",
|
||||||
|
"Current_mode_state": "Current mode: {{state}}",
|
||||||
|
"Custom": "Custom",
|
||||||
|
"Custom_Domain": "Custom Domain",
|
||||||
|
"Custom_EDID": "Custom EDID",
|
||||||
|
"Customize_the_look_and_feel_of_your_JetKVM_interface": "Customize the look and feel of your JetKVM interface",
|
||||||
|
"DC_Power_Control": "DC Power Control",
|
||||||
|
"DHCP_Information": "DHCP Information",
|
||||||
|
"DHCP_Lease_Information": "DHCP Lease Information",
|
||||||
|
"DHCP_Server": "DHCP Server",
|
||||||
|
"DHCP_lease_renewed": "DHCP lease renewed",
|
||||||
|
"DHCP_provided": "DHCP provided",
|
||||||
|
"DNS_Servers": "DNS Servers",
|
||||||
|
"Dark": "Dark",
|
||||||
|
"Data_Bits": "Data Bits",
|
||||||
|
"De-register_from_Cloud": "De-register from Cloud",
|
||||||
|
"Default": "Default",
|
||||||
|
"Delay_added_by_the_jitter_buffer_to_smooth_playback_when_frames_arrive_unevenly": "Delay added by the jitter buffer to smooth playback when frames arrive unevenly",
|
||||||
|
"Delay_between_keys": "Delay between keys",
|
||||||
|
"Delay_must_be_between_50_and_65534": "Delay must be between 50 and 65534",
|
||||||
|
"Delete": "Delete",
|
||||||
|
"Delete_Macro": "Delete Macro",
|
||||||
|
"Delete_device": "Delete device",
|
||||||
|
"Delete_macro_name": "Delete macro {{name}}",
|
||||||
|
"Deleting": "Deleting",
|
||||||
|
"Deleting...": "Deleting...",
|
||||||
|
"Dell_Multimedia_Pro_Keyboard": "Dell Multimedia Pro Keyboard",
|
||||||
|
"Deregister_from_Cloud": "Deregister from Cloud",
|
||||||
|
"Detach": "Detach",
|
||||||
|
"Dev_Channel_Updates": "Dev Channel Updates",
|
||||||
|
"Developer_Mode": "Developer Mode",
|
||||||
|
"Developer_Mode_Enabled": "Developer Mode Enabled",
|
||||||
|
"Device_Already_Registered": "Device Already Registered",
|
||||||
|
"Device_Name": "Device Name",
|
||||||
|
"Device_identifier_on_the_network_Blank_for_system_default": "Device identifier on the network. Blank for system default",
|
||||||
|
"Diagnostic_tools_and_additional_controls_for_troubleshooting_and_development_purposes": "Diagnostic tools and additional controls for troubleshooting and development purposes",
|
||||||
|
"Dim_Display_After": "Dim Display After",
|
||||||
|
"Disable_Local_Device_Protection": "Disable Local Device Protection",
|
||||||
|
"Disable_Protection": "Disable Protection",
|
||||||
|
"Disable_USB_Emulation": "Disable USB Emulation",
|
||||||
|
"Disabled": "Disabled",
|
||||||
|
"Disconnected": "Disconnected",
|
||||||
|
"Disk": "Disk",
|
||||||
|
"Display_Brightness": "Display Brightness",
|
||||||
|
"Display_Orientation": "Display Orientation",
|
||||||
|
"Display_currently_pressed_keys_in_the_status_bar": "Display currently pressed keys in the status bar",
|
||||||
|
"Display_orientation_updated_successfully": "Display orientation updated successfully",
|
||||||
|
"Do_it_later": "Do it later",
|
||||||
|
"Do_you_want_to_proceed_with_rebooting_the_system": "Do you want to proceed with rebooting the system?",
|
||||||
|
"Domain": "Domain",
|
||||||
|
"Dont_have_an_account": "Don't have an account?",
|
||||||
|
"Downloading_type_update": "Downloading {{type}} update...",
|
||||||
|
"Duplicate_macro_name": "Duplicate macro {{name}}",
|
||||||
|
"EDID_File": "EDID File",
|
||||||
|
"EDID_details_video_mode_compatibility_Default_settings_works_in_most_cases": "EDID details video mode compatibility. Default settings works in most cases, but unique UEFI/BIOS might need adjustments.",
|
||||||
|
"EDID_set_successfully_to_msg": "EDID set successfully to {{msg}}",
|
||||||
|
"Edit": "Edit",
|
||||||
|
"Edit_Macro": "Edit Macro",
|
||||||
|
"Edit_macro_name": "Edit macro {{name}}",
|
||||||
|
"Enable_Absolute_Mouse_Pointer": "Enable Absolute Mouse (Pointer)",
|
||||||
|
"Enable_Keyboard": "Enable Keyboard",
|
||||||
|
"Enable_Keyboard_description": "Enable Keyboard description",
|
||||||
|
"Enable_Loopback-Only_Mode": "Enable Loopback-Only Mode?",
|
||||||
|
"Enable_Password": "Enable Password",
|
||||||
|
"Enable_Relative_Mouse": "Enable Relative Mouse",
|
||||||
|
"Enable_USBMassStorage": "Enable USB Mass Storage",
|
||||||
|
"Enable_USB_Emulation": "Enable USB Emulation",
|
||||||
|
"Enable_advanced_features_for_developers": "Enable advanced features for developers",
|
||||||
|
"Enabled": "Enabled",
|
||||||
|
"End-to-end_encryption using_WebRTC_DTLS_and_SRTP": "End-to-end encryption using WebRTC (DTLS and SRTP)",
|
||||||
|
"Ensure_network_stable_active": "Ensure your network connection is stable and active",
|
||||||
|
"Ensure_source_device_is_powered_on_and_outputting_a_signal": "Ensure source device is powered on and outputting a signal",
|
||||||
|
"Ensure_the_HDMI_cable_securely_connected_at_both_ends": "Ensure the HDMI cable securely connected at both ends",
|
||||||
|
"Enter_Manufacturer": "Enter Manufacturer",
|
||||||
|
"Enter_Product_ID": "Enter Product ID",
|
||||||
|
"Enter_Product_Name": "Enter Product Name",
|
||||||
|
"Enter_Serial_Number": "Enter Serial Number",
|
||||||
|
"Enter_Vendor_ID": "Enter Vendor ID",
|
||||||
|
"Enter_a_new_strong_password": "Enter a new strong password",
|
||||||
|
"Enter_a_password": "Enter a password",
|
||||||
|
"Enter_a_strong_password": "Enter a strong password",
|
||||||
|
"Enter_an_URL_to_the_image_file_to_mount": "Enter an URL to the image file to mount",
|
||||||
|
"Enter_your_SSH_public_key": "Enter your SSH public key",
|
||||||
|
"Enter_your_current_password_and_a_new_password_to_update_your_local_device_protection": "Enter your current password and a new password to update your local device protection.",
|
||||||
|
"Enter_your_current_password_to_disable_local_device_protection": "Enter your current password to disable local device protection",
|
||||||
|
"Enter_your_password": "Enter your password",
|
||||||
|
"Enter_your_password_to_access_your_JetKVM": "Enter your password to access your JetKVM.",
|
||||||
|
"Error_deleting_file_msg": "Error deleting file: {{msg}}",
|
||||||
|
"Error_details_msg": "Error details: {{msg}}",
|
||||||
|
"Error_getting_storage_space_msg": "Error getting storage space: {{msg}}",
|
||||||
|
"Error_listing_storage_files_msg": "Error listing storage files: {{msg}}",
|
||||||
|
"Establishing_secure_connection": "Establishing secure connection...",
|
||||||
|
"Even": "Even",
|
||||||
|
"Examples": "Examples",
|
||||||
|
"Experimental": "Experimental",
|
||||||
|
"Extension": "Extension",
|
||||||
|
"Extensions": "Extensions",
|
||||||
|
"Failed_to_add_device": "Failed to add device",
|
||||||
|
"Failed_to_create_data_channel_for_file_upload": "Failed to create data channel for file upload",
|
||||||
|
"Failed_to_create_macro": "Failed to create macro",
|
||||||
|
"Failed_to_create_macro_msg": "Failed to creat macro: {{msg}}",
|
||||||
|
"Failed_to_de-register_device_msg": "Failed to de-register device:{{msg}}",
|
||||||
|
"Failed_to_delete_macro": "Failed to delete macro",
|
||||||
|
"Failed_to_delete_macro_msg": "Failed to delete macro: {{msg}}",
|
||||||
|
"Failed_to_duplicate_macro": "Failed to duplicate macro",
|
||||||
|
"Failed_to_duplicate_macro_msg": "Failed to duplicate macro: {{msg}}",
|
||||||
|
"Failed_to_get_ATX_state_msg": "Failed to get ATX state:{{msg}}",
|
||||||
|
"Failed_to_get_DC_power_state_msg": "Failed to get DC power state: {{msg}}",
|
||||||
|
"Failed_to_get_EDID_msg": "Failed to get EDID: {{msg}}",
|
||||||
|
"Failed_to_get_backlight_settings_msg": "Failed to get backlight settings: {{msg}}",
|
||||||
|
"Failed_to_get_device_ID_msg": "Failed to get device ID: {{msg}}",
|
||||||
|
"Failed_to_get_serial_settings_msg": "Failed to get serial settings: {{msg}}",
|
||||||
|
"Failed_to_get_virtual_media_state_msg": "Failed to get virtual media state: {{msg}}",
|
||||||
|
"Failed_to_load_USB_Config_msg": "Failed to load USB Config: {{msg}}",
|
||||||
|
"Failed_to_load_USB_devices_msg": "Failed to load USB devices: {{msg}}",
|
||||||
|
"Failed_to_paste_text": "Failed to paste text",
|
||||||
|
"Failed_to_renew_lease_msg": "Failed to renew lease: {{msg}}",
|
||||||
|
"Failed_to_reorder_macros": "Failed to reorder macros",
|
||||||
|
"Failed_to_reorder_macros_msg": "Failed to reorder macros: {{msg}}",
|
||||||
|
"Failed_to_reset_configuration_msg": "Failed to reset configuration: {{msg}}",
|
||||||
|
"Failed_to_save_network_settings_msg": "Failed to save network settings: {{msg}}",
|
||||||
|
"Failed_to_send_ATX_power_action_msg": "Failed to send ATX power action: {{msg}}",
|
||||||
|
"Failed_to_send_Magic_Packet": "Failed to send Magic Packet",
|
||||||
|
"Failed_to_set_DC_power_state_msg": "Failed to set DC power state: {{msg}}",
|
||||||
|
"Failed_to_set_EDID_msg": "Failed to set EDID: {{msg}}",
|
||||||
|
"Failed_to_set_USB_Config_msg": "Failed to set usb config: {{msg}}",
|
||||||
|
"Failed_to_set_USB_devices_msg": "Failed to set usb devices: {{msg}}",
|
||||||
|
"Failed_to_set_USB_emulation_msg": "Failed to {{set}} USB emulation: {{msg}}",
|
||||||
|
"Failed_to_set_active_extension_msg": "Failed to set active extension: {{msg}}",
|
||||||
|
"Failed_to_set_auto-update_msg": "Failed to set auto-update: {{msg}}",
|
||||||
|
"Failed_to_set_backlight_settings_msg": "Failed to set backlight settings: {{msg}}",
|
||||||
|
"Failed_to_set_dev_channel_state_msg": "Failed to set dev channel state: {{msg}}",
|
||||||
|
"Failed_to_set_dev_mode_msg": "Failed to set dev mode: {{msg}}",
|
||||||
|
"Failed_to_set_display_orientation_msg": "Failed to set display orientation: {{msg}}",
|
||||||
|
"Failed_to_set_jiggler_config_msg": "Failed to set jiggler config: {{msg}}",
|
||||||
|
"Failed_to_set_jiggler_state_msg": "Failed to set jiggler state: {{msg}}",
|
||||||
|
"Failed_to_set_keyboard_layout_msg": "Failed to set keyboard layout: {{msg}}",
|
||||||
|
"Failed_to_set_loopback-only_mode_msg": "Failed to {{state}} loopback-only mode: {{msg}}",
|
||||||
|
"Failed_to_set_password": "Failed to set password",
|
||||||
|
"Failed_to_set_stream_quality_msg": "Failed to set stream quality: {{msg}}",
|
||||||
|
"Failed_to_unmount_image_msg": "Failed to unmount image: {{msg}}",
|
||||||
|
"Failed_to_update_SSH_key_msg": "Failed to update SSH key: {{msg}}",
|
||||||
|
"Failed_to_update_TLS_settings_msg": "Failed to update TLS settings:{{msg}}",
|
||||||
|
"Failed_to_update_cloud_URL_msg": "Failed to update cloud URL:{{msg}}",
|
||||||
|
"Failed_to_update_macro": "Failed to update macro",
|
||||||
|
"Failed_to_update_macro_msg": "Failed to update macro: {{msg}}",
|
||||||
|
"Failed_to_update_serial_settings_msg": "Failed to update serial settings: {{msg}}",
|
||||||
|
"Fetching_update_information": "Fetching update information...",
|
||||||
|
"Finger_touching_a_screen": "Finger touching a screen",
|
||||||
|
"Finish_Setup": "Finish Setup",
|
||||||
|
"For_advanced_users_only_Not_for_production_use": "For advanced users only. Not for production use.",
|
||||||
|
"For_security_reasons_it_will_not_be_displayed_after_saving": "For security reasons, it will not be displayed after saving",
|
||||||
|
"Forgot_password": "Forgot password?",
|
||||||
|
"Frames_per_second": "Frames per second",
|
||||||
|
"Frequent_30s": "Frequent - 30s",
|
||||||
|
"Fullscreen": "Fullscreen",
|
||||||
|
"Gateway": "Gateway",
|
||||||
|
"Gathering_ICE_candidates": "Gathering ICE candidates...",
|
||||||
|
"General": "General",
|
||||||
|
"Getting_remote_session_description": "Getting remote session description... {{attempt}}",
|
||||||
|
"HDD_LED": "HDD LED",
|
||||||
|
"HDMI_State": "HDMI State",
|
||||||
|
"HDMI_signal_error_detected": "HDMI signal error detected.",
|
||||||
|
"HTTPS_Mode": "HTTPS Mode",
|
||||||
|
"HTTP_Proxy": "HTTP Proxy",
|
||||||
|
"HTTP_only": "HTTP only",
|
||||||
|
"Hardware": "Hardware",
|
||||||
|
"Hardware_identifier_for_the_network_interface": "Hardware identifier for the network interface",
|
||||||
|
"HidRPC_State": "HidRPC State",
|
||||||
|
"Hide": "Hide",
|
||||||
|
"Hide_Cursor": "Hide Cursor",
|
||||||
|
"Hide_the_cursor_when_sending_mouse_movements": "Hide the cursor when sending mouse movements",
|
||||||
|
"High": "High",
|
||||||
|
"Hostname": "Hostname",
|
||||||
|
"How_steady_the_flow_of_inbound_video_packets_is_across_the_network": "How steady the flow of inbound video packets is across the network.",
|
||||||
|
"ICE_Gathering_completed": "ICE Gathering completed",
|
||||||
|
"IP_Address": "IP Address",
|
||||||
|
"IPv4_Mode": "IPv4 Mode",
|
||||||
|
"IPv4_Mode_description": "IPv4 Mode description",
|
||||||
|
"IPv4_only": "IPv4 only",
|
||||||
|
"IPv6_Addresses": "IPv6 Addresses",
|
||||||
|
"IPv6_Information": "IPv6 Information",
|
||||||
|
"IPv6_Mode": "IPv6 Mode",
|
||||||
|
"IPv6_Mode_description": "IPv6 Mode description",
|
||||||
|
"IPv6_only": "IPv6 only",
|
||||||
|
"I_Understand_Enable_Anyway": "I Understand, Enable Anyway",
|
||||||
|
"Identifiers": "Identifiers",
|
||||||
|
"If_using_an_adapter": "If using an adapter, ensure it's compatible and functioning\ncorrectly",
|
||||||
|
"Image_URL": "Image URL",
|
||||||
|
"Inactivity_Limit_Seconds": "Inactivity Limit Seconds",
|
||||||
|
"Inactivity_time_before_jiggle": "Inactivity time before jiggle",
|
||||||
|
"Incompatible_resolution_or_refresh_rate_settings": "Incompatible resolution or refresh rate settings",
|
||||||
|
"Input_disabled": "Input disabled",
|
||||||
|
"Installing_type_update": "Installing {{type}} update...",
|
||||||
|
"Invalid_MAC_address": "Invalid MAC address",
|
||||||
|
"Invalid_authentication_mode": "Invalid authentication mode",
|
||||||
|
"Invalid_cron_expression_error": "Invalid cron expression. Please check your schedule format (e.g., '0 * * * * *' for every minute).",
|
||||||
|
"Invalid_macro_data": "Invalid macro data",
|
||||||
|
"Invalid_password": "Invalid password",
|
||||||
|
"Inverted": "Inverted",
|
||||||
|
"Issues_with_the_source_devices_HDMI_output": "Issues with the source device's HDMI output",
|
||||||
|
"JetKVM_Cloud": "JetKVM Cloud",
|
||||||
|
"JetKVM_Default": "JetKVM Default",
|
||||||
|
"JetKVM_Device": "JetKVM Device",
|
||||||
|
"JetKVM_Storage_Mount": "JetKVM Storage Mount",
|
||||||
|
"JetKVM_combines_powerful_hardware_with_intuitive_software_to_provide_a_seamless_remote_control_experience": "JetKVM combines powerful hardware with intuitive software to provide a\nseamless remote control experience.",
|
||||||
|
"Jiggler": "Jiggler",
|
||||||
|
"Jiggler_Config_successfully_updated": "Jiggler Config successfully updated",
|
||||||
|
"Jiggler_description": "Jiggler description",
|
||||||
|
"Jitter": "Jitter",
|
||||||
|
"Jitter_Buffer_Avg_Delay": "Jitter Buffer Avg. Delay",
|
||||||
|
"KVM_Terminal": "KVM Terminal",
|
||||||
|
"Keyboard": "Keyboard",
|
||||||
|
"Keyboard_Layout": "Keyboard Layout",
|
||||||
|
"Keyboard_Macros": "Keyboard Macros",
|
||||||
|
"Keyboard_Mouse_and_MassStorage": "Keyboard, Mouse and Mass Storage",
|
||||||
|
"Keyboard_Only": "Keyboard Only",
|
||||||
|
"Keyboard_layout_of_target_operating_system": "Keyboard layout of target operating system",
|
||||||
|
"Keyboard_layout_set_successfully_to_code": "Keyboard layout set successfully to {{code}}",
|
||||||
|
"Keys": "Keys",
|
||||||
|
"Keys_modifiers_executed_in_sequence_with_a_delay_between_each_step": "Keys/modifiers executed in sequence with a delay between each step",
|
||||||
|
"Last_Move": "Last Move",
|
||||||
|
"Last_State": "Last State",
|
||||||
|
"Last_online": "Last online",
|
||||||
|
"Learn_about_our_cloud_security": "Learn about our cloud security",
|
||||||
|
"Learn_more": "Learn more",
|
||||||
|
"Lease_Expires": "Lease Expires",
|
||||||
|
"Left": "Left",
|
||||||
|
"Lets_name_your_device": "Let's name your device",
|
||||||
|
"Light": "Light",
|
||||||
|
"Light_5m": "Light - 5m",
|
||||||
|
"Link-local": "Link-local",
|
||||||
|
"Linux_System_Update": "Linux System Update",
|
||||||
|
"Load": "Load",
|
||||||
|
"Load_and_manage_your_extensions": "Load and manage your extensions",
|
||||||
|
"Loading...": "Loading...",
|
||||||
|
"Loading_macros...": "Loading macros...",
|
||||||
|
"Loading_video_stream": "Loading video stream",
|
||||||
|
"Local": "Local",
|
||||||
|
"Local_Authentication_Method": "Local Authentication Method",
|
||||||
|
"Local_Device_Protection": "Local Device Protection",
|
||||||
|
"Log_In": "Log In",
|
||||||
|
"Log_in_Connect_device": "Log in & Connect device",
|
||||||
|
"Log_in_to_access_and_manage_your_devices_securely": "Log in to access and manage your devices securely",
|
||||||
|
"Log_in_to_your_JetKVM_account": "Log in to your JetKVM account",
|
||||||
|
"Logitech_Universal_Adapter": "Logitech Universal Adapter",
|
||||||
|
"Loopback-Only_Mode": "Loopback-Only Mode",
|
||||||
|
"Loopback-only_mode_disabled_Restart_your_device_to_apply": "Loopback-only mode disabled. Restart your device to apply",
|
||||||
|
"Loopback-only_mode_enabled_Restart_your_device_to_apply": "Loopback-only mode enabled. Restart your device to apply.",
|
||||||
|
"Low": "Low",
|
||||||
|
"Low_power_mode": "Low power mode",
|
||||||
|
"MAC_Address": "MAC Address",
|
||||||
|
"MTU": "MTU",
|
||||||
|
"Macro_Name": "Macro Name",
|
||||||
|
"Macro_name_created_successfully": "Macro {{name}} created successfully",
|
||||||
|
"Macro_name_deleted_successfully": "Macro {{name}} deleted successfully",
|
||||||
|
"Macro_name_duplicated_successfully": "Macro {{name}} duplicated successfully",
|
||||||
|
"Macro_name_updated_successfully": "Macro {{name}} updated successfully",
|
||||||
|
"Macro_order_updated_successfully": "Macro order updated successfully",
|
||||||
|
"Magic_Packet_sent_successfully": "Magic Packet sent successfully",
|
||||||
|
"Manage_the_Access_Control_of_the_device": "Manage the Access Control of the device",
|
||||||
|
"Manage_the_mode_of_Remote_access_to_the_device": "Manage the mode of Remote access to the device",
|
||||||
|
"Manage_the_mode_of_local_access_to_the_device": "Manage the mode of local access to the device",
|
||||||
|
"Manage_your_cloud_KVMs_and_connect_to_them_securely": "Manage your cloud KVMs and connect to them securely.",
|
||||||
|
"Manually_start_stream": "Manually start stream",
|
||||||
|
"Manufacturer": "Manufacturer",
|
||||||
|
"Max_Reached": "Max Reached",
|
||||||
|
"Max_keys_reached": "Max keys reached",
|
||||||
|
"Maximum_of_keys_per_step_allowed": "Maximum of {{max_key}} keys per step allowed",
|
||||||
|
"Maximum_of_max_macros_allowed": "Maximum of {{max}} macros allowed",
|
||||||
|
"Maximum_step_keys_per_step": "Maximum {{max}} keys per step.",
|
||||||
|
"Medium": "Medium",
|
||||||
|
"Meta": "Meta",
|
||||||
|
"Metric_not_supported": "Metric not supported",
|
||||||
|
"Microsoft_Wireless_MultiMedia_Keyboard": "Microsoft Wireless MultiMedia Keyboard",
|
||||||
|
"Modes": "Modes",
|
||||||
|
"Modes_description": "Modes description",
|
||||||
|
"Modifiers": "Modifiers",
|
||||||
|
"Modify_your_keyboard_macro": "Modify your keyboard macro",
|
||||||
|
"More_examples": "More examples",
|
||||||
|
"Most_Compatible": "Most Compatible",
|
||||||
|
"Most_convenient": "Most convenient",
|
||||||
|
"Mount_Error": "Mount Error",
|
||||||
|
"Mount_File": "Mount File",
|
||||||
|
"Mount_URL": "Mount URL",
|
||||||
|
"Mount_an_image_to_boot_from_or_install_an_operating_system": "Mount an image to boot from or install an operating system",
|
||||||
|
"Mount_as": "Mount as",
|
||||||
|
"Mount_files_from_any_public_web_address": "Mount files from any public web address",
|
||||||
|
"Mount_from_JetKVM_Storage": "Mount from JetKVM Storage",
|
||||||
|
"Mount_from_URL": "Mount from URL",
|
||||||
|
"Mount_previously_uploaded_files_from_the_JetKVM_storage": "Mount previously uploaded files from the JetKVM storage",
|
||||||
|
"Mounted_as": "Mounted as",
|
||||||
|
"Mounted_from_JetKVM_Storage": "Mounted from JetKVM Storage",
|
||||||
|
"Mouse": "Mouse",
|
||||||
|
"Mouse_icon": "Mouse icon",
|
||||||
|
"Move_name_down": "Move {{name}} down",
|
||||||
|
"Move_name_up": "Move {{name}} up",
|
||||||
|
"N/A": "N/A",
|
||||||
|
"NTP_Servers": "NTP Servers",
|
||||||
|
"NTP_and_HTTP": "NTP and HTTP",
|
||||||
|
"NTP_only": "NTP only",
|
||||||
|
"Name_is_required": "Name is required",
|
||||||
|
"Name_must_be_less_than_50_characters": "Name must be less than 50 characters",
|
||||||
|
"Name_your_device_so_you_can_easily_identify_it_later_You_can_change_this_name_at_any_time": "Name your device so you can easily identify it later. You can change this name at any time.",
|
||||||
|
"Network": "Network",
|
||||||
|
"Network_Stability": "Network Stability",
|
||||||
|
"Network_domain_suffix_for_the_device": "Network domain suffix for the device",
|
||||||
|
"Network_settings_saved": "Network settings saved",
|
||||||
|
"Never": "Never",
|
||||||
|
"Never_seen_online": "Never seen online",
|
||||||
|
"New_Password": "New Password",
|
||||||
|
"New_device_name": "New device name",
|
||||||
|
"New_to_JetKVM": "New to JetKVM?",
|
||||||
|
"Next": "Next",
|
||||||
|
"No": "No",
|
||||||
|
"No_DHCP_lease_information_available": "No DHCP lease information available",
|
||||||
|
"No_HDMI_signal_detected": "No HDMI signal detected.",
|
||||||
|
"No_IPv6_addresses_configured": "No IPv6 addresses configured",
|
||||||
|
"No_device_ID_available": "No device ID available",
|
||||||
|
"No_devices_added": "No devices added",
|
||||||
|
"No_devices_found": "No devices found",
|
||||||
|
"No_images_available": "No images available",
|
||||||
|
"No_macros_available": "No macros available",
|
||||||
|
"No_matching_keys_found": "No matching keys found",
|
||||||
|
"No_mounted_media": "No mounted media",
|
||||||
|
"No_password": "No Password",
|
||||||
|
"No_results_found": "No results found",
|
||||||
|
"None": "None",
|
||||||
|
"Normal": "Normal",
|
||||||
|
"Not_Now": "Not Now",
|
||||||
|
"Not_found": "Not found",
|
||||||
|
"Number_of_inbound_video_frames_displayed_per_second": "Number of inbound video frames displayed per second.",
|
||||||
|
"OIDC_OpenID_Connect_authentication": "OIDC (OpenID Connect) authentication",
|
||||||
|
"Odd": "Odd",
|
||||||
|
"Off": "Off",
|
||||||
|
"Oh_no!": "Oh no!",
|
||||||
|
"Only_one_active_session_is_supported_at_a_time_Would_you_like_to_take_over_this_session": "Only one active session is supported at a time. Would you like to take over\n this session?",
|
||||||
|
"Only_use_if_you_understand_the_risks": "Only use if you understand the risks",
|
||||||
|
"Open_Console": "Open Console",
|
||||||
|
"Packets_Lost": "Packets Lost",
|
||||||
|
"Parity": "Parity",
|
||||||
|
"Password": "Password",
|
||||||
|
"Password_Protection_Disabled": "Password Protection Disabled",
|
||||||
|
"Password_Set_Successfully": "Password Set Successfully",
|
||||||
|
"Password_Updated_Successfully": "Password Updated Successfully",
|
||||||
|
"Password_protected": "Password protected",
|
||||||
|
"Passwords_do_not_match": "Passwords do not match",
|
||||||
|
"Paste_Mode": "Paste Mode",
|
||||||
|
"Paste_from_host": "Paste from host",
|
||||||
|
"Paste_text": "Paste text",
|
||||||
|
"Paste_text_from_your_client_to_the_remote_host": "Paste text from your client to the remote host",
|
||||||
|
"Paste_your_TLS_certificate_below_For_certificate_chains": "Paste your TLS certificate below. For certificate chains, include the entire chain (leaf, intermediate, and root certificates).",
|
||||||
|
"Period_of_inactivity_before_display_automatically_turns_off": "Period of inactivity before display automatically turns off",
|
||||||
|
"Playback_Delay": "Playback Delay",
|
||||||
|
"Please_adjust_browser_settings_to_enable_autoplay": "Please adjust browser settings to enable autoplay",
|
||||||
|
"Please_dont_turn_off_your_device": "Please don't turn off your device...",
|
||||||
|
"Please_dont_turn_off_your_device_This_process_may_take_a_few_minutes": "Please don't turn off your device. This process may take a few minutes.",
|
||||||
|
"Please_enter_a_new_password": "Please enter a new password",
|
||||||
|
"Please_enter_a_password": "Please enter a password",
|
||||||
|
"Please_enter_your_current_password": "Please enter your current password",
|
||||||
|
"Please_enter_your_old_password": "Please enter your old password",
|
||||||
|
"Please_fix_the_validation_errors": "Please fix the validation errors",
|
||||||
|
"Please_note_that_local_access_will_still_be_possible": "Please note that local access will still be possible",
|
||||||
|
"Please_select_an_authentication_mode": "Please select an authentication mode",
|
||||||
|
"Please_specify_a_name": "Please specify a name",
|
||||||
|
"Plex_Media_Server": "Plex Media Server",
|
||||||
|
"Pointer": "Pointer",
|
||||||
|
"Pointer_lock_Disabled": "Pointer lock Disabled",
|
||||||
|
"Pointer_lock_Enabled_press_escape_to_unlock": "Pointer lock Enabled, press escape to unlock",
|
||||||
|
"Popular_images": "Popular images",
|
||||||
|
"Power": "Power",
|
||||||
|
"Power_LED": "Power LED",
|
||||||
|
"Power_Off": "Power Off",
|
||||||
|
"Power_On": "Power On",
|
||||||
|
"Power_Watt": "Power",
|
||||||
|
"Power_cycle_the_JetKVM": "Power cycle the JetKVM",
|
||||||
|
"Preferred_Lifetime": "Preferred Lifetime",
|
||||||
|
"Previous": "Previous",
|
||||||
|
"Private_Key": "Private Key",
|
||||||
|
"Product_ID": "Product ID",
|
||||||
|
"Product_Name": "Product Name",
|
||||||
|
"Properly_name_your_device_to_easily_identify_it": "Properly name your device to easily identify it",
|
||||||
|
"Proxy_server_for_outgoing_HTTP(S)_requests_from_the_device_Blank_for_none": "Proxy server for outgoing HTTP(S) requests from the device. Blank for none",
|
||||||
|
"Proxy_server_for_outgoing_HTTP_S_requests_from_the_device_Blank_for_none": "Proxy server for outgoing HTTP(S) requests from the device. Blank for none.",
|
||||||
|
"Quick_access_without_password_authentication": "Quick access without password authentication.",
|
||||||
|
"Random_delay": "Random delay",
|
||||||
|
"Re-enter_your_new_password": "Re-enter your new password",
|
||||||
|
"Re-enter_your_password": "Re-enter your password",
|
||||||
|
"Reboot_Device": "Reboot Device",
|
||||||
|
"Reboot_JetKVM": "Reboot JetKVM",
|
||||||
|
"Rebooting_to_complete_the_update": "Rebooting to complete the update...",
|
||||||
|
"Receive_early_updates_from_the_development_channel": "Receive early updates from the development channel",
|
||||||
|
"Reduce_the_frequency_of_scroll_events": "Reduce the frequency of scroll events",
|
||||||
|
"Relative": "Relative",
|
||||||
|
"Relayed_by_Cloudflare": "Relayed by Cloudflare",
|
||||||
|
"Remote": "Remote",
|
||||||
|
"Rename": "Rename",
|
||||||
|
"Rename_Device": "Rename Device",
|
||||||
|
"Renew_DHCP_Lease": "Renew DHCP Lease",
|
||||||
|
"Renew_Lease": "Renew Lease",
|
||||||
|
"Reset": "Reset",
|
||||||
|
"Reset_Config": "Reset Config",
|
||||||
|
"Reset_Configuration": "Reset Configuration",
|
||||||
|
"Reset_configuration_to_default_This_will_log_you_out": "Reset configuration to default. This will log you out.",
|
||||||
|
"Reset_to_Default": "Reset to Default",
|
||||||
|
"Resolution": "Resolution",
|
||||||
|
"Restore_Power_Loss": "Restore Power Loss",
|
||||||
|
"Restore_to_Default": "Restore to Default",
|
||||||
|
"Restrict_web_interface_access_to_localhost_only_127_0_0_1": "Restrict web interface access to localhost only (127.0.0.1)",
|
||||||
|
"Retry": "Retry",
|
||||||
|
"Retrying_connection": "Retrying connection",
|
||||||
|
"Return_to_Dashboard": "Return to Dashboard",
|
||||||
|
"Right": "Right",
|
||||||
|
"Round-Trip_Time": "Round-Trip Time",
|
||||||
|
"Round-trip_time_for_the_active_ICE_candidate_pair_between_peers": "Round-trip time for the active ICE candidate pair between peers",
|
||||||
|
"SSH_Access": "SSH Access",
|
||||||
|
"SSH_Public_Key": "SSH Public Key",
|
||||||
|
"SSH_access_configured_and_tested": "SSH access configured and tested",
|
||||||
|
"SSH_key_updated_successfully": "SSH key updated successfully",
|
||||||
|
"Saturation": "Saturation",
|
||||||
|
"Save_Changes": "Save Changes",
|
||||||
|
"Save_Device": "Save Device",
|
||||||
|
"Save_Jiggler_Config": "Save Jiggler Config",
|
||||||
|
"Save_Macro": "Save Macro",
|
||||||
|
"Save_Settings": "Save Settings",
|
||||||
|
"Saving...": "Saving...",
|
||||||
|
"Scroll_Throttling": "Scroll Throttling",
|
||||||
|
"Search_for_key": "Search for key...",
|
||||||
|
"Searching": "Search...",
|
||||||
|
"Secure_Device": "Secure Device",
|
||||||
|
"Secure_your_device_with_a_password_for_added_protection": "Secure your device with a password for added protection.",
|
||||||
|
"Security_is_weakened_while_active": "Security is weakened while active",
|
||||||
|
"Select": "Select",
|
||||||
|
"Select_an_image_file_to_upload_to_JetKVM_storage": "Select an image file to upload to JetKVM storage",
|
||||||
|
"Select_an_image_to_mount_from_the_JetKVM_storage": "Select an image to mount from the JetKVM storage",
|
||||||
|
"Select_how_you_d_like_to_secure_your_JetKVM_device_locally": "Select how you{\"'\"}d like to secure your JetKVM device locally.",
|
||||||
|
"Select_the_cloud_provider_for_your_device": "Select the cloud provider for your device",
|
||||||
|
"Self-signed": "Self-signed",
|
||||||
|
"Send_a_Magic_Packet_to_wake_up_a_remote_device": "Send a Magic Packet to wake up a remote device",
|
||||||
|
"Sending_text_using_keyboard_layout": "Sending text using keyboard layout",
|
||||||
|
"Serial_Console": "Serial Console",
|
||||||
|
"Serial_Number": "Serial Number",
|
||||||
|
"Set_Custom_EDID": "Set Custom EDID",
|
||||||
|
"Set_Password": "Set Password",
|
||||||
|
"Set_a_Password": "Set a Password",
|
||||||
|
"Set_how_long_to_wait_before_dimming_the_display": "Set how long to wait before dimming the display",
|
||||||
|
"Set_the_brightness_of_the_display": "Set the brightness of the display",
|
||||||
|
"Set_the_orientation_of_the_display": "Set the orientation of the display",
|
||||||
|
"Set_up_your_JetKVM": "Set up your JetKVM",
|
||||||
|
"Setting_remote_description": "Setting remote description",
|
||||||
|
"Setting_remote_session_description": "Setting remote session description...",
|
||||||
|
"Setting_up_connection_to_device": "Setting up connection to device...",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Shift": "Shift",
|
||||||
|
"Show_Pressed_Keys": "Show Pressed Keys",
|
||||||
|
"Showing": "Showing",
|
||||||
|
"Signup_Connect_device": "Signup & Connect device",
|
||||||
|
"Simulate_movement_of_a_computer_mouse": "Simulate movement of a computer mouse",
|
||||||
|
"Something_went_wrong_Please_try_again_later_or_contact_support": "Something went wrong. Please try again later or contact support",
|
||||||
|
"Sometimes_it_might_need_to_be_disabled_to_prevent_issues_with_certain_devices": "Sometimes it might need to be disabled to prevent issues with certain devices",
|
||||||
|
"Standard_1m": "Standard - 1m",
|
||||||
|
"Step_Duration": "Step Duration",
|
||||||
|
"Step_Duration_description": "Step Duration description",
|
||||||
|
"Steps": "Steps",
|
||||||
|
"Stop_Bits": "Stop Bits",
|
||||||
|
"Stream_Quality": "Stream Quality",
|
||||||
|
"Stream_quality_set_to_msg": "Stream quality set to {{msg}}",
|
||||||
|
"Streaming_from_URL": "Streaming from URL",
|
||||||
|
"Subnet_Mask": "Subnet Mask",
|
||||||
|
"Supported_formats": "Supported formats",
|
||||||
|
"System": "System",
|
||||||
|
"System_default": "System",
|
||||||
|
"System_is_up_to_date": "System is up to date",
|
||||||
|
"TLS_Certificate": "TLS Certificate",
|
||||||
|
"TLS_settings_updated_successfully": "TLS settings updated successfully",
|
||||||
|
"TTL": "TTL",
|
||||||
|
"The_connection_between_the_client_and_the_JetKVM": "The connection between the client and the JetKVM.",
|
||||||
|
"The_default_SSH_user_is": "The default SSH user is",
|
||||||
|
"The_display_will_wake_up_when_the_connection_state_changes_or_when_touched": "The display will wake up when the connection state changes, or when touched.",
|
||||||
|
"The_page_you_were_looking_for_does_not_exist": "The page you were looking for does not exist.",
|
||||||
|
"The_video_stream_from_the_JetKVM_to_the_client": "The video stream from the JetKVM to the client.",
|
||||||
|
"Theme": "Theme",
|
||||||
|
"Theme_description": "Theme description",
|
||||||
|
"There_was_an_error_deregistering_your_device_Please_try_again": "There was an error deregistering your device. Please try again.",
|
||||||
|
"There_was_an_error_renaming_your_device_Please_try_again": "There was an error renaming your device. Please try again",
|
||||||
|
"There_was_an_error_setting_the_jiggler_config": "There was an error setting the jiggler config",
|
||||||
|
"This_device_is_currently_registered_to_another_user_in_our_cloud_dashboard": "This device is currently registered to another user in our cloud dashboard.",
|
||||||
|
"This_password_will_be_used_to_secure_your_device_data_and_protect_against_unauthorized_access": "This password will be used to secure your device data and protect against unauthorized access. ",
|
||||||
|
"This_will_remove_the_device_from_your_cloud_account_and_revoke_remote_access_to_it": "This will remove the device from your cloud account and revoke\n remote access to it.",
|
||||||
|
"This_will_request_a_new_IP_address_from_your_DHCP_server_Your_device_may_temporarily_lose_network_connectivity_during_this_process": "This will request a new IP address from your DHCP server. Your device may temporarily lose network connectivity during this process.",
|
||||||
|
"Time_synchronization": "Time synchronization",
|
||||||
|
"Time_to_wait_before_executing_the_next_step": "Time to wait before executing the next step.",
|
||||||
|
"Timezone": "Timezone",
|
||||||
|
"Timezone_for_cron_schedule": "Timezone for cron schedule",
|
||||||
|
"To_avoid_recognizable_patterns": "To avoid recognizable patterns",
|
||||||
|
"Troubleshoot_Connection": "Troubleshoot Connection",
|
||||||
|
"Troubleshooting_Guide": "Troubleshooting Guide",
|
||||||
|
"Troubleshooting_Mode": "Troubleshooting Mode",
|
||||||
|
"Try_again": "Try again",
|
||||||
|
"Try_restarting_both_device_computer": "Try restarting both the device and your computer",
|
||||||
|
"Turn_off_Display_After": "Turn off Display After",
|
||||||
|
"URL_Mount": "URL Mount",
|
||||||
|
"USB_Config_set_to_msg": "USB Config set to {{m}} {{p}}",
|
||||||
|
"USB_Device": "USB Device",
|
||||||
|
"USB_Devices_updated": "USB Devices updated",
|
||||||
|
"USB_Emulation": "USB Emulation",
|
||||||
|
"USB_State": "USB State",
|
||||||
|
"USB_device_classes_in_the_composite_device": "USB device classes in the composite device",
|
||||||
|
"USB_device_identifiers_exposed_to_the_target_computer": "USB device identifiers exposed to the target computer",
|
||||||
|
"USB_devices_to_emulate_on_the_target_computer": "USB devices to emulate on the target computer",
|
||||||
|
"Unknown": "Unknown",
|
||||||
|
"Unknown_error": "Unknown error",
|
||||||
|
"Unload_Extension": "Unload Extension",
|
||||||
|
"Unlock_remote_access_and_advanced_features_for_your_device": "Unlock remote access and advanced features for your device.",
|
||||||
|
"Unmount": "Unmount",
|
||||||
|
"Update_Completed_Successfully": "Update Completed Successfully",
|
||||||
|
"Update_Error": "Update Error",
|
||||||
|
"Update_Now": "Update Now",
|
||||||
|
"Update_Password": "Update Password",
|
||||||
|
"Update_SSH_Key": "Update SSH Key",
|
||||||
|
"Update_TLS_Settings": "Update TLS Settings",
|
||||||
|
"Update_USB_Classes": "Update USB Classes",
|
||||||
|
"Update_USB_Identifiers": "Update USB Identifiers",
|
||||||
|
"Update_available": "Update available",
|
||||||
|
"Update_in_Background": "Update in Background",
|
||||||
|
"Update_in_Progress": "Update in Progress",
|
||||||
|
"Update_your_device_access_password": "Update your device access password",
|
||||||
|
"Updating_your_device": "Updating your device",
|
||||||
|
"Upload_New_Image": "Upload New Image",
|
||||||
|
"Upload_a_new_image": "Upload a new image",
|
||||||
|
"Upload_an_image_to_start_virtual_media_mounting": "Upload an image to start virtual media mounting.",
|
||||||
|
"Upload_failed_msg": "Upload failed: {{msg}}",
|
||||||
|
"Upload_successful": "Upload successful",
|
||||||
|
"Uploading": "Uploading",
|
||||||
|
"Uploading...": "Uploading...",
|
||||||
|
"Use_Here": "Use Here",
|
||||||
|
"Valid_Lifetime": "Valid Lifetime",
|
||||||
|
"Vendor_ID": "Vendor ID",
|
||||||
|
"Verify_device_powered_and_connected": "Verify that the device is powered on and properly connected",
|
||||||
|
"Verifying_type_update": "Verifying {{type}} update...",
|
||||||
|
"Very_High": "Very High",
|
||||||
|
"Video": "Video",
|
||||||
|
"Video_Enhancement": "Video Enhancement",
|
||||||
|
"Video_Size": "Video Size",
|
||||||
|
"View_Details": "View Details",
|
||||||
|
"Virtual_Keyboard": "Virtual Keyboard",
|
||||||
|
"Virtual_Media": "Virtual Media",
|
||||||
|
"Virtual_Media_Source": "Virtual Media Source",
|
||||||
|
"Voltage": "Voltage",
|
||||||
|
"WARNING_This_will_restrict_web_interface_access_to_localhost_127_0_0_1_only": "WARNING: This will restrict web interface access to localhost (127.0.0.1) only.",
|
||||||
|
"Waiting_for_data": "Waiting for data...",
|
||||||
|
"Wake": "Wake",
|
||||||
|
"Wake_on_LAN": "Wake on LAN",
|
||||||
|
"We_re_ensuring_your_device_has_the_latest_features_and_improvements": "We're ensuring your device has the latest features and improvements.",
|
||||||
|
"Web_Terminal": "Web Terminal",
|
||||||
|
"Welcome_back_to_JetKVM": "Welcome back to JetKVM",
|
||||||
|
"Welcome_to_JetKVM": "Welcome to JetKVM",
|
||||||
|
"Yes": "Yes",
|
||||||
|
"You_can_always_change_your_authentication_method_later_in_the_settings": "You can always change your authentication method later in the settings.",
|
||||||
|
"You_can_only_add_a_maximum_of_steps_per_macro": "You can only add a maximum of {{max_step}} steps per macro.",
|
||||||
|
"You_don_t_have_any_devices_with_enabled_JetKVM_Cloud_yet": "You don't have any devices with enabled JetKVM Cloud yet.",
|
||||||
|
"You_ve_successfully_changed_your_local_device_protection_password_Make_sure_to_remember_your_new_password_for_future_access": "You've successfully changed your local device protection password. Make sure to remember your new password for future access.",
|
||||||
|
"You_ve_successfully_disabled_the_password_protection_for_local_access_Remember": "You've successfully disabled the password protection for local access. Remember, your device is now less secure",
|
||||||
|
"You_ve_successfully_disabled_the_password_protection_for_local_access_Remember_your_device_is_now_less_secure": "You've successfully disabled the password protection for local access. Remember, your device is now less secure.",
|
||||||
|
"You_ve_successfully_set_up_local_device_protection_Your_device_is_now_secure_against_unauthorized_local_access": "You've successfully set up local device protection. Your device is now secure against unauthorized local access.",
|
||||||
|
"Your_device_has_been_successfully_updated_to_the_latest_version_Enjoy_the_new_features_and_improvements": "Your device has been successfully updated to the latest version. Enjoy the new features and improvements!",
|
||||||
|
"Your_device_is_adopted_to_the_Cloud": "Your device is adopted to the Cloud",
|
||||||
|
"Your_system_is_running_the_latest_version_No_updates_are_currently_available": "Your system is running the latest version. No updates are currently available.",
|
||||||
|
"Zero_Trust_security_model": "Zero Trust security model",
|
||||||
|
"_ms": "{{num}} ms",
|
||||||
|
"addressed": "addressed",
|
||||||
|
"already_registered_notice": "If you're the new owner, please ask the previous owner to de-register the device from their account in the cloud dashboard. If you believe this is an error, contact our support team for assistance.",
|
||||||
|
"attached": "attached",
|
||||||
|
"attempt_num": "(attempt {{num}})",
|
||||||
|
"closed": "closed",
|
||||||
|
"configured": "configured",
|
||||||
|
"connecting": "connecting",
|
||||||
|
"correctly": "correctly",
|
||||||
|
"disable": "disable",
|
||||||
|
"disabled": "disabled",
|
||||||
|
"enable": "enable",
|
||||||
|
"error": "error",
|
||||||
|
"fps": " fps",
|
||||||
|
"free": "free",
|
||||||
|
"handshaking": "handshaking",
|
||||||
|
"has_been_uploaded": "has been uploaded",
|
||||||
|
"keyboard_layout_notice": "The virtual keyboard, paste text, and keyboard macros send individual key strokes to the target device. The keyboard layout determines which key codes are being sent. Ensure that the keyboard layout in JetKVM matches the settings in the operating system.",
|
||||||
|
"ms": " ms",
|
||||||
|
"not_attached": "not attached",
|
||||||
|
"num_minute": "{{num}} Minutes",
|
||||||
|
"of": "of",
|
||||||
|
"open": "open",
|
||||||
|
"packets": " packets",
|
||||||
|
"ready": "ready",
|
||||||
|
"ready_(v1+u)": "ready (v1+u)",
|
||||||
|
"results": "results",
|
||||||
|
"suspended": "suspended",
|
||||||
|
"the_custom_EDID": "the custom EDID",
|
||||||
|
"to": "to ",
|
||||||
|
"used": "used"
|
||||||
|
}
|
||||||
|
|
@ -1,757 +1 @@
|
||||||
{
|
{}
|
||||||
"1Hour": "1 Hour",
|
|
||||||
"ATX_Power_Control": "ATX Power Control",
|
|
||||||
"A_loose_or_faulty_HDMI_connection": "A loose or faulty HDMI connection",
|
|
||||||
"A_new_update_is_available_to_enhance_system_performance_and_improve_compatibility_We_recommend_updating_to_ensure_everything_runs_smoothly": "A new update is available to enhance system performance and improve compatibility. We recommend updating to ensure everything runs smoothly.",
|
|
||||||
"Absolute": "Absolute",
|
|
||||||
"Access": "Access",
|
|
||||||
"Access_additional_settings_for_troubleshooting_and_customization": "Access additional settings for troubleshooting and customization",
|
|
||||||
"Access_your_serial_console_extension": "Access your serial console extension",
|
|
||||||
"Add_New_Device": "Add New Device",
|
|
||||||
"Add_New_Macro": "Add New Macro",
|
|
||||||
"Add_New_Media": "Add New Media",
|
|
||||||
"Add_Step_max": "Add Step {{max}}",
|
|
||||||
"Add_a_device_to_start_using_Wake-on-LAN": "Add a device to start using Wake-on-LAN",
|
|
||||||
"Add_a_file_to_get_started": "Add a file to get started",
|
|
||||||
"Add_your_SSH_public_key_to_enable_secure_remote_access_to_the_device": "Add your SSH public key to enable secure remote access to the device",
|
|
||||||
"Address": "Address",
|
|
||||||
"Adjust_color_settings_to_make_the_video_output_more_vibrant_and_colorful": "Adjust color settings to make the video output more vibrant and colorful",
|
|
||||||
"Adjust_the_EDID_settings_for_the_display": "Adjust the EDID settings for the display",
|
|
||||||
"Adjust_the_quality_of_the_video_stream": "Adjust the quality of the video stream",
|
|
||||||
"Adopt_KVM_to_Cloud": "Adopt KVM to Cloud",
|
|
||||||
"Advanced": "Advanced",
|
|
||||||
"All": "All",
|
|
||||||
"All_cloud_components_are_open-source_and_available_on": "All cloud components are open-source and available on ",
|
|
||||||
"All_data_remains_on_your_local_device": "All data remains on your local device.",
|
|
||||||
"All_streams_encrypted_in_transit": "All streams encrypted in transit",
|
|
||||||
"Already_have_an_account": "Already have an account?",
|
|
||||||
"Alt": "Alt",
|
|
||||||
"AltGr": "AltGr",
|
|
||||||
"An_error_occurred_while_attempting_to_mount_the_media_Please_try_again": "An error occurred while attempting to mount the media. Please try again.",
|
|
||||||
"An_error_occurred_while_changing_the_password": "An error occurred while changing the password",
|
|
||||||
"An_error_occurred_while_disabling_the_password": "An error occurred while disabling the password",
|
|
||||||
"An_error_occurred_while_logging_in": "An error occurred while logging in",
|
|
||||||
"An_error_occurred_while_saving": "An error occurred while saving",
|
|
||||||
"An_error_occurred_while_setting_the_authentication_mode": "An error occurred while setting the authentication mode",
|
|
||||||
"An_error_occurred_while_setting_the_password": "An error occurred while setting the password",
|
|
||||||
"An_error_occurred_while_updating_your_device_Please_try_again_later": "An error occurred while updating your device. Please try again later.",
|
|
||||||
"Another_Active_Session_Detected": "Another Active Session Detected",
|
|
||||||
"App": "App",
|
|
||||||
"App_Update": "App Update",
|
|
||||||
"Appearance": "Appearance",
|
|
||||||
"Are_you_sure_you_want_to_de-register_this_device": "Are you sure you want to de-register this device?",
|
|
||||||
"Are_you_sure_you_want_to_delete": "Are you sure you want to delete {{file}} ?",
|
|
||||||
"Are_you_sure_you_want_to_delete_name_This_action_cannot_be_undone": "Are you sure you want to delete {{name}}? This action cannot be undone.",
|
|
||||||
"Are_you_sure_you_want_to_delete_this_macro_This_action_cannot_be_undone": "Are you sure you want to delete this macro? This action cannot be undone.",
|
|
||||||
"At_least_one_step_is_required": "At least one step is required",
|
|
||||||
"At_least_one_step_must_have_keys_or_modifiers": "At least one step must have keys or modifiers",
|
|
||||||
"Attach": "Attach",
|
|
||||||
"Authentication_Mode": "Authentication Mode",
|
|
||||||
"Auto": "Auto",
|
|
||||||
"Auto_Update": "Auto Update",
|
|
||||||
"Automatically_update_the_device_to_the_latest_version": "Automatically update the device to the latest version",
|
|
||||||
"Autoplay_permissions_required": "Autoplay permissions required",
|
|
||||||
"Available_Storage": "Available Storage",
|
|
||||||
"Awaiting_reboot": "Awaiting reboot",
|
|
||||||
"Back": "Back",
|
|
||||||
"Back_to_Devices": "Back to Devices",
|
|
||||||
"Back_to_KVM": "Back to KVM",
|
|
||||||
"Back_to_Overview": "Back to Overview",
|
|
||||||
"Backlight_settings_updated_successfully": "Backlight settings updated successfully",
|
|
||||||
"Basic": "Basic",
|
|
||||||
"Baud_Rate": "Baud Rate",
|
|
||||||
"Before_enabling_this_feature_make_sure_you_have_either": "Before enabling this feature, make sure you have either:",
|
|
||||||
"Boot_File": "Boot File",
|
|
||||||
"Boot_Next_Server": "Boot Next Server",
|
|
||||||
"Boot_Server_Name": "Boot Server Name",
|
|
||||||
"Brightness": "Brightness",
|
|
||||||
"Brightness_level_brightness": "Brightness level ({{brightness}}x)",
|
|
||||||
"Broadcast": "Broadcast",
|
|
||||||
"Business_Hours_8-17": "Business Hours 8-17",
|
|
||||||
"Business_Hours_9-17": "Business Hours 9-17",
|
|
||||||
"CD/DVD": "CD/DVD",
|
|
||||||
"Calculating...": "Calculating...",
|
|
||||||
"Cancel": "Cancel",
|
|
||||||
"Cancel_Upload": "Cancel Upload",
|
|
||||||
"Change_Local_Device_Password": "Change Local Device Password",
|
|
||||||
"Change_Password": "Change Password",
|
|
||||||
"Check_Again": "Check Again",
|
|
||||||
"Check_cable_loose_damaged": "Check all cable connections for any loose or damaged wires",
|
|
||||||
"Check_for_Updates": "Check for Updates",
|
|
||||||
"Checking_for_updates": "Checking for updates...",
|
|
||||||
"Choose_how_you_want_to_mount_your_virtual_media": "Choose how you want to mount your virtual media",
|
|
||||||
"Choose_the_mouse_input_mode": "Choose the mouse input mode",
|
|
||||||
"Choose_your_preferred_color_theme": "Choose your preferred color theme",
|
|
||||||
"Classes": "Classes",
|
|
||||||
"Click_to_select": "Click to select",
|
|
||||||
"Click_to_select_a_file": "Click to select a file",
|
|
||||||
"Click_video_enable_mouse_control": "Click on the video to enable mouse control",
|
|
||||||
"Close": "Close",
|
|
||||||
"Closed": "Closed",
|
|
||||||
"Closing": "Closing",
|
|
||||||
"Cloud_API_URL": "Cloud API URL",
|
|
||||||
"Cloud_App_URL": "Cloud App URL",
|
|
||||||
"Cloud_Devices": "Cloud Devices",
|
|
||||||
"Cloud_KVMs": "Cloud KVMs",
|
|
||||||
"Cloud_Provider": "Cloud Provider",
|
|
||||||
"Cloud_Security": "Cloud Security",
|
|
||||||
"Cloud_access_enabled_and_working": "Cloud access enabled and working",
|
|
||||||
"Color_saturation_sat_x": "Color saturation ({{sat}}x)",
|
|
||||||
"Combine_keystrokes_into_a_single_action": "Combine keystrokes into a single action",
|
|
||||||
"Combine_keystrokes_into_a_single_action_for_faster_workflows": "Combine keystrokes into a single action for faster workflows.",
|
|
||||||
"Configuration_reset_to_default_successfully": "Configuration reset to default successfully",
|
|
||||||
"Configure_cursor_behavior_and_interaction_settings_for_your_device": "Configure cursor behavior and interaction settings for your device",
|
|
||||||
"Configure_device_settings_and_update_preferences": "Configure device settings and update preferences",
|
|
||||||
"Configure_display_settings_and_EDID_for_optimal_compatibility": "Configure display settings and EDID for optimal compatibility",
|
|
||||||
"Configure_display_settings_and_hardware_options_for_your_JetKVM_device": "Configure display settings and hardware options for your JetKVM device",
|
|
||||||
"Configure_keyboard_settings_for_your_device": "Configure keyboard settings for your device",
|
|
||||||
"Configure_secure_HTTPS_access_to_your_device": "Configure secure HTTPS access to your device",
|
|
||||||
"Configure_the_IPv4_mode": "Configure the IPv4 mode",
|
|
||||||
"Configure_the_IPv6_mode": "Configure the IPv6 mode",
|
|
||||||
"Configure_time_synchronization_settings": "Configure time synchronization settings",
|
|
||||||
"Configure_your_network_settings": "Configure your network settings",
|
|
||||||
"Configure_your_serial_console_settings": "Configure your serial console settings",
|
|
||||||
"Confirm": "Confirm",
|
|
||||||
"Confirm_New_Password": "Confirm New Password",
|
|
||||||
"Confirm_Password": "Confirm Password",
|
|
||||||
"Confirm_Paste": "Confirm Paste",
|
|
||||||
"Confirm_your_password": "Confirm your password",
|
|
||||||
"Connect_to_KVM": "Connect to KVM",
|
|
||||||
"Connect_your_JetKVM_to_the_cloud": "Connect your JetKVM to the cloud",
|
|
||||||
"Connected": "Connected",
|
|
||||||
"Connecting": "Connecting",
|
|
||||||
"Connecting_to_device": "Connecting to device...",
|
|
||||||
"Connection": "Connection",
|
|
||||||
"Connection_Issue_Detected": "Connection Issue Detected",
|
|
||||||
"Connection_Stats": "Connection Stats",
|
|
||||||
"Connection_error": "Connection error",
|
|
||||||
"Connection_established": "Connection established",
|
|
||||||
"Connection_failed": "Connection failed",
|
|
||||||
"Continue": "Continue",
|
|
||||||
"Continue_uploading": "Continue uploading",
|
|
||||||
"Continue_uploading_fille": "Continue uploading {{file}}",
|
|
||||||
"Contrast": "Contrast",
|
|
||||||
"Contrast_level_contrast": "Contrast level ({{contrast}}x)",
|
|
||||||
"Control": "Control",
|
|
||||||
"Control_any_computer_remotely": "Control any computer remotely",
|
|
||||||
"Control_mDNS_(multicast_DNS)_operational_mode": "Control mDNS (multicast DNS) operational mode",
|
|
||||||
"Control_mDNS_multicast_DNS_operational_mode": "Control mDNS (multicast DNS) operational mode",
|
|
||||||
"Control_the_USB_emulation_state": "Control the USB emulation state",
|
|
||||||
"Control_which_TLVs_will_be_sent_over_Link_Layer_Discovery_Protocol": "Control which TLVs will be sent over Link Layer Discovery Protocol",
|
|
||||||
"Control_your_ATX_Power_extension": "Control your ATX Power extension",
|
|
||||||
"Control_your_ATX_power_settings": "Control your ATX power settings",
|
|
||||||
"Control_your_DC_Power_extension": "Control your DC Power extension",
|
|
||||||
"Control_your_DC_power_settings": "Control your DC power settings",
|
|
||||||
"Count_of_lost_inbound_video_RTP_packets": "Count of lost inbound video RTP packets.",
|
|
||||||
"Create_Account": "Create Account",
|
|
||||||
"Create_Your_First_Macro": "Create Your First Macro",
|
|
||||||
"Create_a_new_keyboard_macro": "Create a new keyboard macro",
|
|
||||||
"Create_a_password_to_protect_your_device_from_unauthorized_local_access": "Create a password to protect your device from unauthorized local access.",
|
|
||||||
"Create_a_strong_password_to_secure_your_JetKVM_device_locally": "Create a strong password to secure your JetKVM device locally.",
|
|
||||||
"Create_your_JetKVM_account": "Create your JetKVM account",
|
|
||||||
"Create_your_account_and_start_managing_your_devices_with_ease": "Create your account and start managing your devices with ease.",
|
|
||||||
"Creating_peer_connection": "Creating peer connection...",
|
|
||||||
"Cron_Schedule": "Cron Schedule",
|
|
||||||
"Cron_expression_for_scheduling": "Cron expression for scheduling",
|
|
||||||
"Current": "Current",
|
|
||||||
"Current_Password": "Current Password",
|
|
||||||
"Current_mode_state": "Current mode: {{state}}",
|
|
||||||
"Custom": "Custom",
|
|
||||||
"Custom_Domain": "Custom Domain",
|
|
||||||
"Custom_EDID": "Custom EDID",
|
|
||||||
"Customize_the_look_and_feel_of_your_JetKVM_interface": "Customize the look and feel of your JetKVM interface",
|
|
||||||
"DC_Power_Control": "DC Power Control",
|
|
||||||
"DHCP_Information": "DHCP Information",
|
|
||||||
"DHCP_Lease_Information": "DHCP Lease Information",
|
|
||||||
"DHCP_Server": "DHCP Server",
|
|
||||||
"DHCP_lease_renewed": "DHCP lease renewed",
|
|
||||||
"DHCP_provided": "DHCP provided",
|
|
||||||
"DNS_Servers": "DNS Servers",
|
|
||||||
"Dark": "Dark",
|
|
||||||
"Data_Bits": "Data Bits",
|
|
||||||
"De-register_from_Cloud": "De-register from Cloud",
|
|
||||||
"Default": "Default",
|
|
||||||
"Delay_added_by_the_jitter_buffer_to_smooth_playback_when_frames_arrive_unevenly": "Delay added by the jitter buffer to smooth playback when frames arrive unevenly",
|
|
||||||
"Delay_between_keys": "Delay between keys",
|
|
||||||
"Delay_must_be_between_50_and_65534": "Delay must be between 50 and 65534",
|
|
||||||
"Delete": "Delete",
|
|
||||||
"Delete_Macro": "Delete Macro",
|
|
||||||
"Delete_device": "Delete device",
|
|
||||||
"Delete_macro_name": "Delete macro {{name}}",
|
|
||||||
"Deleting": "Deleting",
|
|
||||||
"Deleting...": "Deleting...",
|
|
||||||
"Dell_Multimedia_Pro_Keyboard": "Dell Multimedia Pro Keyboard",
|
|
||||||
"Deregister_from_Cloud": "Deregister from Cloud",
|
|
||||||
"Detach": "Detach",
|
|
||||||
"Dev_Channel_Updates": "Dev Channel Updates",
|
|
||||||
"Developer_Mode": "Developer Mode",
|
|
||||||
"Developer_Mode_Enabled": "Developer Mode Enabled",
|
|
||||||
"Device_Already_Registered": "Device Already Registered",
|
|
||||||
"Device_Name": "Device Name",
|
|
||||||
"Device_identifier_on_the_network_Blank_for_system_default": "Device identifier on the network. Blank for system default",
|
|
||||||
"Diagnostic_tools_and_additional_controls_for_troubleshooting_and_development_purposes": "Diagnostic tools and additional controls for troubleshooting and development purposes",
|
|
||||||
"Dim_Display_After": "Dim Display After",
|
|
||||||
"Disable_Local_Device_Protection": "Disable Local Device Protection",
|
|
||||||
"Disable_Protection": "Disable Protection",
|
|
||||||
"Disable_USB_Emulation": "Disable USB Emulation",
|
|
||||||
"Disabled": "Disabled",
|
|
||||||
"Disconnected": "Disconnected",
|
|
||||||
"Disk": "Disk",
|
|
||||||
"Display_Brightness": "Display Brightness",
|
|
||||||
"Display_Orientation": "Display Orientation",
|
|
||||||
"Display_currently_pressed_keys_in_the_status_bar": "Display currently pressed keys in the status bar",
|
|
||||||
"Display_orientation_updated_successfully": "Display orientation updated successfully",
|
|
||||||
"Do_it_later": "Do it later",
|
|
||||||
"Do_you_want_to_proceed_with_rebooting_the_system": "Do you want to proceed with rebooting the system?",
|
|
||||||
"Domain": "Domain",
|
|
||||||
"Dont_have_an_account": "Don't have an account?",
|
|
||||||
"Downloading_type_update": "Downloading {{type}} update...",
|
|
||||||
"Duplicate_macro_name": "Duplicate macro {{name}}",
|
|
||||||
"EDID_File": "EDID File",
|
|
||||||
"EDID_details_video_mode_compatibility_Default_settings_works_in_most_cases": "EDID details video mode compatibility. Default settings works in most cases, but unique UEFI/BIOS might need adjustments.",
|
|
||||||
"EDID_set_successfully_to_msg": "EDID set successfully to {{msg}}",
|
|
||||||
"Edit": "Edit",
|
|
||||||
"Edit_Macro": "Edit Macro",
|
|
||||||
"Edit_macro_name": "Edit macro {{name}}",
|
|
||||||
"Enable_Absolute_Mouse_Pointer": "Enable Absolute Mouse (Pointer)",
|
|
||||||
"Enable_Keyboard": "Enable Keyboard",
|
|
||||||
"Enable_Keyboard_description": "Enable Keyboard description",
|
|
||||||
"Enable_Loopback-Only_Mode": "Enable Loopback-Only Mode?",
|
|
||||||
"Enable_Password": "Enable Password",
|
|
||||||
"Enable_Relative_Mouse": "Enable Relative Mouse",
|
|
||||||
"Enable_USBMassStorage": "Enable USB Mass Storage",
|
|
||||||
"Enable_USB_Emulation": "Enable USB Emulation",
|
|
||||||
"Enable_advanced_features_for_developers": "Enable advanced features for developers",
|
|
||||||
"Enabled": "Enabled",
|
|
||||||
"End-to-end_encryption using_WebRTC_DTLS_and_SRTP": "End-to-end encryption using WebRTC (DTLS and SRTP)",
|
|
||||||
"Ensure_network_stable_active": "Ensure your network connection is stable and active",
|
|
||||||
"Ensure_source_device_is_powered_on_and_outputting_a_signal": "Ensure source device is powered on and outputting a signal",
|
|
||||||
"Ensure_the_HDMI_cable_securely_connected_at_both_ends": "Ensure the HDMI cable securely connected at both ends",
|
|
||||||
"Enter_Manufacturer": "Enter Manufacturer",
|
|
||||||
"Enter_Product_ID": "Enter Product ID",
|
|
||||||
"Enter_Product_Name": "Enter Product Name",
|
|
||||||
"Enter_Serial_Number": "Enter Serial Number",
|
|
||||||
"Enter_Vendor_ID": "Enter Vendor ID",
|
|
||||||
"Enter_a_new_strong_password": "Enter a new strong password",
|
|
||||||
"Enter_a_password": "Enter a password",
|
|
||||||
"Enter_a_strong_password": "Enter a strong password",
|
|
||||||
"Enter_an_URL_to_the_image_file_to_mount": "Enter an URL to the image file to mount",
|
|
||||||
"Enter_your_SSH_public_key": "Enter your SSH public key",
|
|
||||||
"Enter_your_current_password_and_a_new_password_to_update_your_local_device_protection": "Enter your current password and a new password to update your local device protection.",
|
|
||||||
"Enter_your_current_password_to_disable_local_device_protection": "Enter your current password to disable local device protection",
|
|
||||||
"Enter_your_password": "Enter your password",
|
|
||||||
"Enter_your_password_to_access_your_JetKVM": "Enter your password to access your JetKVM.",
|
|
||||||
"Error_deleting_file_msg": "Error deleting file: {{msg}}",
|
|
||||||
"Error_details_msg": "Error details: {{msg}}",
|
|
||||||
"Error_getting_storage_space_msg": "Error getting storage space: {{msg}}",
|
|
||||||
"Error_listing_storage_files_msg": "Error listing storage files: {{msg}}",
|
|
||||||
"Establishing_secure_connection": "Establishing secure connection...",
|
|
||||||
"Even": "Even",
|
|
||||||
"Examples": "Examples",
|
|
||||||
"Experimental": "Experimental",
|
|
||||||
"Extension": "Extension",
|
|
||||||
"Extensions": "Extensions",
|
|
||||||
"Failed_to_add_device": "Failed to add device",
|
|
||||||
"Failed_to_create_data_channel_for_file_upload": "Failed to create data channel for file upload",
|
|
||||||
"Failed_to_create_macro": "Failed to create macro",
|
|
||||||
"Failed_to_create_macro_msg": "Failed to creat macro: {{msg}}",
|
|
||||||
"Failed_to_de-register_device_msg": "Failed to de-register device:{{msg}}",
|
|
||||||
"Failed_to_delete_macro": "Failed to delete macro",
|
|
||||||
"Failed_to_delete_macro_msg": "Failed to delete macro: {{msg}}",
|
|
||||||
"Failed_to_duplicate_macro": "Failed to duplicate macro",
|
|
||||||
"Failed_to_duplicate_macro_msg": "Failed to duplicate macro: {{msg}}",
|
|
||||||
"Failed_to_get_ATX_state_msg": "Failed to get ATX state:{{msg}}",
|
|
||||||
"Failed_to_get_DC_power_state_msg": "Failed to get DC power state: {{msg}}",
|
|
||||||
"Failed_to_get_EDID_msg": "Failed to get EDID: {{msg}}",
|
|
||||||
"Failed_to_get_backlight_settings_msg": "Failed to get backlight settings: {{msg}}",
|
|
||||||
"Failed_to_get_device_ID_msg": "Failed to get device ID: {{msg}}",
|
|
||||||
"Failed_to_get_serial_settings_msg": "Failed to get serial settings: {{msg}}",
|
|
||||||
"Failed_to_get_virtual_media_state_msg": "Failed to get virtual media state: {{msg}}",
|
|
||||||
"Failed_to_load_USB_Config_msg": "Failed to load USB Config: {{msg}}",
|
|
||||||
"Failed_to_load_USB_devices_msg": "Failed to load USB devices: {{msg}}",
|
|
||||||
"Failed_to_paste_text": "Failed to paste text",
|
|
||||||
"Failed_to_renew_lease_msg": "Failed to renew lease: {{msg}}",
|
|
||||||
"Failed_to_reorder_macros": "Failed to reorder macros",
|
|
||||||
"Failed_to_reorder_macros_msg": "Failed to reorder macros: {{msg}}",
|
|
||||||
"Failed_to_reset_configuration_msg": "Failed to reset configuration: {{msg}}",
|
|
||||||
"Failed_to_save_network_settings_msg": "Failed to save network settings: {{msg}}",
|
|
||||||
"Failed_to_send_ATX_power_action_msg": "Failed to send ATX power action: {{msg}}",
|
|
||||||
"Failed_to_send_Magic_Packet": "Failed to send Magic Packet",
|
|
||||||
"Failed_to_set_DC_power_state_msg": "Failed to set DC power state: {{msg}}",
|
|
||||||
"Failed_to_set_EDID_msg": "Failed to set EDID: {{msg}}",
|
|
||||||
"Failed_to_set_USB_Config_msg": "Failed to set usb config: {{msg}}",
|
|
||||||
"Failed_to_set_USB_devices_msg": "Failed to set usb devices: {{msg}}",
|
|
||||||
"Failed_to_set_USB_emulation_msg": "Failed to {{set}} USB emulation: {{msg}}",
|
|
||||||
"Failed_to_set_active_extension_msg": "Failed to set active extension: {{msg}}",
|
|
||||||
"Failed_to_set_auto-update_msg": "Failed to set auto-update: {{msg}}",
|
|
||||||
"Failed_to_set_backlight_settings_msg": "Failed to set backlight settings: {{msg}}",
|
|
||||||
"Failed_to_set_dev_channel_state_msg": "Failed to set dev channel state: {{msg}}",
|
|
||||||
"Failed_to_set_dev_mode_msg": "Failed to set dev mode: {{msg}}",
|
|
||||||
"Failed_to_set_display_orientation_msg": "Failed to set display orientation: {{msg}}",
|
|
||||||
"Failed_to_set_jiggler_config_msg": "Failed to set jiggler config: {{msg}}",
|
|
||||||
"Failed_to_set_jiggler_state_msg": "Failed to set jiggler state: {{msg}}",
|
|
||||||
"Failed_to_set_keyboard_layout_msg": "Failed to set keyboard layout: {{msg}}",
|
|
||||||
"Failed_to_set_loopback-only_mode_msg": "Failed to {{state}} loopback-only mode: {{msg}}",
|
|
||||||
"Failed_to_set_password": "Failed to set password",
|
|
||||||
"Failed_to_set_stream_quality_msg": "Failed to set stream quality: {{msg}}",
|
|
||||||
"Failed_to_unmount_image_msg": "Failed to unmount image: {{msg}}",
|
|
||||||
"Failed_to_update_SSH_key_msg": "Failed to update SSH key: {{msg}}",
|
|
||||||
"Failed_to_update_TLS_settings_msg": "Failed to update TLS settings:{{msg}}",
|
|
||||||
"Failed_to_update_cloud_URL_msg": "Failed to update cloud URL:{{msg}}",
|
|
||||||
"Failed_to_update_macro": "Failed to update macro",
|
|
||||||
"Failed_to_update_macro_msg": "Failed to update macro: {{msg}}",
|
|
||||||
"Failed_to_update_serial_settings_msg": "Failed to update serial settings: {{msg}}",
|
|
||||||
"Fetching_update_information": "Fetching update information...",
|
|
||||||
"Finger_touching_a_screen": "Finger touching a screen",
|
|
||||||
"Finish_Setup": "Finish Setup",
|
|
||||||
"For_advanced_users_only_Not_for_production_use": "For advanced users only. Not for production use.",
|
|
||||||
"For_security_reasons_it_will_not_be_displayed_after_saving": "For security reasons, it will not be displayed after saving",
|
|
||||||
"Forgot_password": "Forgot password?",
|
|
||||||
"Frames_per_second": "Frames per second",
|
|
||||||
"Frequent_30s": "Frequent - 30s",
|
|
||||||
"Fullscreen": "Fullscreen",
|
|
||||||
"Gateway": "Gateway",
|
|
||||||
"Gathering_ICE_candidates": "Gathering ICE candidates...",
|
|
||||||
"General": "General",
|
|
||||||
"Getting_remote_session_description": "Getting remote session description... {{attempt}}",
|
|
||||||
"HDD_LED": "HDD LED",
|
|
||||||
"HDMI_State": "HDMI State",
|
|
||||||
"HDMI_signal_error_detected": "HDMI signal error detected.",
|
|
||||||
"HTTPS_Mode": "HTTPS Mode",
|
|
||||||
"HTTP_Proxy": "HTTP Proxy",
|
|
||||||
"HTTP_only": "HTTP only",
|
|
||||||
"Hardware": "Hardware",
|
|
||||||
"Hardware_identifier_for_the_network_interface": "Hardware identifier for the network interface",
|
|
||||||
"HidRPC_State": "HidRPC State",
|
|
||||||
"Hide": "Hide",
|
|
||||||
"Hide_Cursor": "Hide Cursor",
|
|
||||||
"Hide_the_cursor_when_sending_mouse_movements": "Hide the cursor when sending mouse movements",
|
|
||||||
"High": "High",
|
|
||||||
"Hostname": "Hostname",
|
|
||||||
"How_steady_the_flow_of_inbound_video_packets_is_across_the_network": "How steady the flow of inbound video packets is across the network.",
|
|
||||||
"ICE_Gathering_completed": "ICE Gathering completed",
|
|
||||||
"IP_Address": "IP Address",
|
|
||||||
"IPv4_Mode": "IPv4 Mode",
|
|
||||||
"IPv4_Mode_description": "IPv4 Mode description",
|
|
||||||
"IPv4_only": "IPv4 only",
|
|
||||||
"IPv6_Addresses": "IPv6 Addresses",
|
|
||||||
"IPv6_Information": "IPv6 Information",
|
|
||||||
"IPv6_Mode": "IPv6 Mode",
|
|
||||||
"IPv6_Mode_description": "IPv6 Mode description",
|
|
||||||
"IPv6_only": "IPv6 only",
|
|
||||||
"I_Understand_Enable_Anyway": "I Understand, Enable Anyway",
|
|
||||||
"Identifiers": "Identifiers",
|
|
||||||
"If_using_an_adapter": "If using an adapter, ensure it's compatible and functioning\ncorrectly",
|
|
||||||
"Image_URL": "Image URL",
|
|
||||||
"Inactivity_Limit_Seconds": "Inactivity Limit Seconds",
|
|
||||||
"Inactivity_time_before_jiggle": "Inactivity time before jiggle",
|
|
||||||
"Incompatible_resolution_or_refresh_rate_settings": "Incompatible resolution or refresh rate settings",
|
|
||||||
"Input_disabled": "Input disabled",
|
|
||||||
"Installing_type_update": "Installing {{type}} update...",
|
|
||||||
"Invalid_MAC_address": "Invalid MAC address",
|
|
||||||
"Invalid_authentication_mode": "Invalid authentication mode",
|
|
||||||
"Invalid_cron_expression_error": "Invalid cron expression. Please check your schedule format (e.g., '0 * * * * *' for every minute).",
|
|
||||||
"Invalid_macro_data": "Invalid macro data",
|
|
||||||
"Invalid_password": "Invalid password",
|
|
||||||
"Inverted": "Inverted",
|
|
||||||
"Issues_with_the_source_devices_HDMI_output": "Issues with the source device's HDMI output",
|
|
||||||
"JetKVM_Cloud": "JetKVM Cloud",
|
|
||||||
"JetKVM_Default": "JetKVM Default",
|
|
||||||
"JetKVM_Device": "JetKVM Device",
|
|
||||||
"JetKVM_Storage_Mount": "JetKVM Storage Mount",
|
|
||||||
"JetKVM_combines_powerful_hardware_with_intuitive_software_to_provide_a_seamless_remote_control_experience": "JetKVM combines powerful hardware with intuitive software to provide a\nseamless remote control experience.",
|
|
||||||
"Jiggler": "Jiggler",
|
|
||||||
"Jiggler_Config_successfully_updated": "Jiggler Config successfully updated",
|
|
||||||
"Jiggler_description": "Jiggler description",
|
|
||||||
"Jitter": "Jitter",
|
|
||||||
"Jitter_Buffer_Avg_Delay": "Jitter Buffer Avg. Delay",
|
|
||||||
"KVM_Terminal": "KVM Terminal",
|
|
||||||
"Keyboard": "Keyboard",
|
|
||||||
"Keyboard_Layout": "Keyboard Layout",
|
|
||||||
"Keyboard_Macros": "Keyboard Macros",
|
|
||||||
"Keyboard_Mouse_and_MassStorage": "Keyboard, Mouse and Mass Storage",
|
|
||||||
"Keyboard_Only": "Keyboard Only",
|
|
||||||
"Keyboard_layout_of_target_operating_system": "Keyboard layout of target operating system",
|
|
||||||
"Keyboard_layout_set_successfully_to_code": "Keyboard layout set successfully to {{code}}",
|
|
||||||
"Keys": "Keys",
|
|
||||||
"Keys_modifiers_executed_in_sequence_with_a_delay_between_each_step": "Keys/modifiers executed in sequence with a delay between each step",
|
|
||||||
"Last_Move": "Last Move",
|
|
||||||
"Last_State": "Last State",
|
|
||||||
"Last_online": "Last online",
|
|
||||||
"Learn_about_our_cloud_security": "Learn about our cloud security",
|
|
||||||
"Learn_more": "Learn more",
|
|
||||||
"Lease_Expires": "Lease Expires",
|
|
||||||
"Left": "Left",
|
|
||||||
"Lets_name_your_device": "Let's name your device",
|
|
||||||
"Light": "Light",
|
|
||||||
"Light_5m": "Light - 5m",
|
|
||||||
"Link-local": "Link-local",
|
|
||||||
"Linux_System_Update": "Linux System Update",
|
|
||||||
"Load": "Load",
|
|
||||||
"Load_and_manage_your_extensions": "Load and manage your extensions",
|
|
||||||
"Loading...": "Loading...",
|
|
||||||
"Loading_macros...": "Loading macros...",
|
|
||||||
"Loading_video_stream": "Loading video stream",
|
|
||||||
"Local": "Local",
|
|
||||||
"Local_Authentication_Method": "Local Authentication Method",
|
|
||||||
"Local_Device_Protection": "Local Device Protection",
|
|
||||||
"Log_In": "Log In",
|
|
||||||
"Log_in_Connect_device": "Log in & Connect device",
|
|
||||||
"Log_in_to_access_and_manage_your_devices_securely": "Log in to access and manage your devices securely",
|
|
||||||
"Log_in_to_your_JetKVM_account": "Log in to your JetKVM account",
|
|
||||||
"Logitech_Universal_Adapter": "Logitech Universal Adapter",
|
|
||||||
"Loopback-Only_Mode": "Loopback-Only Mode",
|
|
||||||
"Loopback-only_mode_disabled_Restart_your_device_to_apply": "Loopback-only mode disabled. Restart your device to apply",
|
|
||||||
"Loopback-only_mode_enabled_Restart_your_device_to_apply": "Loopback-only mode enabled. Restart your device to apply.",
|
|
||||||
"Low": "Low",
|
|
||||||
"Low_power_mode": "Low power mode",
|
|
||||||
"MAC_Address": "MAC Address",
|
|
||||||
"MTU": "MTU",
|
|
||||||
"Macro_Name": "Macro Name",
|
|
||||||
"Macro_name_created_successfully": "Macro {{name}} created successfully",
|
|
||||||
"Macro_name_deleted_successfully": "Macro {{name}} deleted successfully",
|
|
||||||
"Macro_name_duplicated_successfully": "Macro {{name}} duplicated successfully",
|
|
||||||
"Macro_name_updated_successfully": "Macro {{name}} updated successfully",
|
|
||||||
"Macro_order_updated_successfully": "Macro order updated successfully",
|
|
||||||
"Magic_Packet_sent_successfully": "Magic Packet sent successfully",
|
|
||||||
"Manage_the_Access_Control_of_the_device": "Manage the Access Control of the device",
|
|
||||||
"Manage_the_mode_of_Remote_access_to_the_device": "Manage the mode of Remote access to the device",
|
|
||||||
"Manage_the_mode_of_local_access_to_the_device": "Manage the mode of local access to the device",
|
|
||||||
"Manage_your_cloud_KVMs_and_connect_to_them_securely": "Manage your cloud KVMs and connect to them securely.",
|
|
||||||
"Manually_start_stream": "Manually start stream",
|
|
||||||
"Manufacturer": "Manufacturer",
|
|
||||||
"Max_Reached": "Max Reached",
|
|
||||||
"Max_keys_reached": "Max keys reached",
|
|
||||||
"Maximum_of_keys_per_step_allowed": "Maximum of {{max_key}} keys per step allowed",
|
|
||||||
"Maximum_of_max_macros_allowed": "Maximum of {{max}} macros allowed",
|
|
||||||
"Maximum_step_keys_per_step": "Maximum {{max}} keys per step.",
|
|
||||||
"Medium": "Medium",
|
|
||||||
"Meta": "Meta",
|
|
||||||
"Metric_not_supported": "Metric not supported",
|
|
||||||
"Microsoft_Wireless_MultiMedia_Keyboard": "Microsoft Wireless MultiMedia Keyboard",
|
|
||||||
"Modes": "Modes",
|
|
||||||
"Modes_description": "Modes description",
|
|
||||||
"Modifiers": "Modifiers",
|
|
||||||
"Modify_your_keyboard_macro": "Modify your keyboard macro",
|
|
||||||
"More_examples": "More examples",
|
|
||||||
"Most_Compatible": "Most Compatible",
|
|
||||||
"Most_convenient": "Most convenient",
|
|
||||||
"Mount_Error": "Mount Error",
|
|
||||||
"Mount_File": "Mount File",
|
|
||||||
"Mount_URL": "Mount URL",
|
|
||||||
"Mount_an_image_to_boot_from_or_install_an_operating_system": "Mount an image to boot from or install an operating system",
|
|
||||||
"Mount_as": "Mount as",
|
|
||||||
"Mount_files_from_any_public_web_address": "Mount files from any public web address",
|
|
||||||
"Mount_from_JetKVM_Storage": "Mount from JetKVM Storage",
|
|
||||||
"Mount_from_URL": "Mount from URL",
|
|
||||||
"Mount_previously_uploaded_files_from_the_JetKVM_storage": "Mount previously uploaded files from the JetKVM storage",
|
|
||||||
"Mounted_as": "Mounted as",
|
|
||||||
"Mounted_from_JetKVM_Storage": "Mounted from JetKVM Storage",
|
|
||||||
"Mouse": "Mouse",
|
|
||||||
"Mouse_icon": "Mouse icon",
|
|
||||||
"Move_name_down": "Move {{name}} down",
|
|
||||||
"Move_name_up": "Move {{name}} up",
|
|
||||||
"N/A": "N/A",
|
|
||||||
"NTP_Servers": "NTP Servers",
|
|
||||||
"NTP_and_HTTP": "NTP and HTTP",
|
|
||||||
"NTP_only": "NTP only",
|
|
||||||
"Name_is_required": "Name is required",
|
|
||||||
"Name_must_be_less_than_50_characters": "Name must be less than 50 characters",
|
|
||||||
"Name_your_device_so_you_can_easily_identify_it_later_You_can_change_this_name_at_any_time": "Name your device so you can easily identify it later. You can change this name at any time.",
|
|
||||||
"Network": "Network",
|
|
||||||
"Network_Stability": "Network Stability",
|
|
||||||
"Network_domain_suffix_for_the_device": "Network domain suffix for the device",
|
|
||||||
"Network_settings_saved": "Network settings saved",
|
|
||||||
"Never": "Never",
|
|
||||||
"Never_seen_online": "Never seen online",
|
|
||||||
"New_Password": "New Password",
|
|
||||||
"New_device_name": "New device name",
|
|
||||||
"New_to_JetKVM": "New to JetKVM?",
|
|
||||||
"Next": "Next",
|
|
||||||
"No": "No",
|
|
||||||
"No_DHCP_lease_information_available": "No DHCP lease information available",
|
|
||||||
"No_HDMI_signal_detected": "No HDMI signal detected.",
|
|
||||||
"No_IPv6_addresses_configured": "No IPv6 addresses configured",
|
|
||||||
"No_device_ID_available": "No device ID available",
|
|
||||||
"No_devices_added": "No devices added",
|
|
||||||
"No_devices_found": "No devices found",
|
|
||||||
"No_images_available": "No images available",
|
|
||||||
"No_macros_available": "No macros available",
|
|
||||||
"No_matching_keys_found": "No matching keys found",
|
|
||||||
"No_mounted_media": "No mounted media",
|
|
||||||
"No_password": "No Password",
|
|
||||||
"No_results_found": "No results found",
|
|
||||||
"None": "None",
|
|
||||||
"Normal": "Normal",
|
|
||||||
"Not_Now": "Not Now",
|
|
||||||
"Not_found": "Not found",
|
|
||||||
"Number_of_inbound_video_frames_displayed_per_second": "Number of inbound video frames displayed per second.",
|
|
||||||
"OIDC_OpenID_Connect_authentication": "OIDC (OpenID Connect) authentication",
|
|
||||||
"Odd": "Odd",
|
|
||||||
"Off": "Off",
|
|
||||||
"Oh_no!": "Oh no!",
|
|
||||||
"Only_one_active_session_is_supported_at_a_time_Would_you_like_to_take_over_this_session": "Only one active session is supported at a time. Would you like to take over\n this session?",
|
|
||||||
"Only_use_if_you_understand_the_risks": "Only use if you understand the risks",
|
|
||||||
"Open_Console": "Open Console",
|
|
||||||
"Packets_Lost": "Packets Lost",
|
|
||||||
"Parity": "Parity",
|
|
||||||
"Password": "Password",
|
|
||||||
"Password_Protection_Disabled": "Password Protection Disabled",
|
|
||||||
"Password_Set_Successfully": "Password Set Successfully",
|
|
||||||
"Password_Updated_Successfully": "Password Updated Successfully",
|
|
||||||
"Password_protected": "Password protected",
|
|
||||||
"Passwords_do_not_match": "Passwords do not match",
|
|
||||||
"Paste_Mode": "Paste Mode",
|
|
||||||
"Paste_from_host": "Paste from host",
|
|
||||||
"Paste_text": "Paste text",
|
|
||||||
"Paste_text_from_your_client_to_the_remote_host": "Paste text from your client to the remote host",
|
|
||||||
"Paste_your_TLS_certificate_below_For_certificate_chains": "Paste your TLS certificate below. For certificate chains, include the entire chain (leaf, intermediate, and root certificates).",
|
|
||||||
"Period_of_inactivity_before_display_automatically_turns_off": "Period of inactivity before display automatically turns off",
|
|
||||||
"Playback_Delay": "Playback Delay",
|
|
||||||
"Please_adjust_browser_settings_to_enable_autoplay": "Please adjust browser settings to enable autoplay",
|
|
||||||
"Please_dont_turn_off_your_device": "Please don't turn off your device...",
|
|
||||||
"Please_dont_turn_off_your_device_This_process_may_take_a_few_minutes": "Please don't turn off your device. This process may take a few minutes.",
|
|
||||||
"Please_enter_a_new_password": "Please enter a new password",
|
|
||||||
"Please_enter_a_password": "Please enter a password",
|
|
||||||
"Please_enter_your_current_password": "Please enter your current password",
|
|
||||||
"Please_enter_your_old_password": "Please enter your old password",
|
|
||||||
"Please_fix_the_validation_errors": "Please fix the validation errors",
|
|
||||||
"Please_note_that_local_access_will_still_be_possible": "Please note that local access will still be possible",
|
|
||||||
"Please_select_an_authentication_mode": "Please select an authentication mode",
|
|
||||||
"Please_specify_a_name": "Please specify a name",
|
|
||||||
"Plex_Media_Server": "Plex Media Server",
|
|
||||||
"Pointer": "Pointer",
|
|
||||||
"Pointer_lock_Disabled": "Pointer lock Disabled",
|
|
||||||
"Pointer_lock_Enabled_press_escape_to_unlock": "Pointer lock Enabled, press escape to unlock",
|
|
||||||
"Popular_images": "Popular images",
|
|
||||||
"Power": "Power",
|
|
||||||
"Power_LED": "Power LED",
|
|
||||||
"Power_Off": "Power Off",
|
|
||||||
"Power_On": "Power On",
|
|
||||||
"Power_Watt": "Power",
|
|
||||||
"Power_cycle_the_JetKVM": "Power cycle the JetKVM",
|
|
||||||
"Preferred_Lifetime": "Preferred Lifetime",
|
|
||||||
"Previous": "Previous",
|
|
||||||
"Private_Key": "Private Key",
|
|
||||||
"Product_ID": "Product ID",
|
|
||||||
"Product_Name": "Product Name",
|
|
||||||
"Properly_name_your_device_to_easily_identify_it": "Properly name your device to easily identify it",
|
|
||||||
"Proxy_server_for_outgoing_HTTP(S)_requests_from_the_device_Blank_for_none": "Proxy server for outgoing HTTP(S) requests from the device. Blank for none",
|
|
||||||
"Proxy_server_for_outgoing_HTTP_S_requests_from_the_device_Blank_for_none": "Proxy server for outgoing HTTP(S) requests from the device. Blank for none.",
|
|
||||||
"Quick_access_without_password_authentication": "Quick access without password authentication.",
|
|
||||||
"Random_delay": "Random delay",
|
|
||||||
"Re-enter_your_new_password": "Re-enter your new password",
|
|
||||||
"Re-enter_your_password": "Re-enter your password",
|
|
||||||
"Reboot_Device": "Reboot Device",
|
|
||||||
"Reboot_JetKVM": "Reboot JetKVM",
|
|
||||||
"Rebooting_to_complete_the_update": "Rebooting to complete the update...",
|
|
||||||
"Receive_early_updates_from_the_development_channel": "Receive early updates from the development channel",
|
|
||||||
"Reduce_the_frequency_of_scroll_events": "Reduce the frequency of scroll events",
|
|
||||||
"Relative": "Relative",
|
|
||||||
"Relayed_by_Cloudflare": "Relayed by Cloudflare",
|
|
||||||
"Remote": "Remote",
|
|
||||||
"Rename": "Rename",
|
|
||||||
"Rename_Device": "Rename Device",
|
|
||||||
"Renew_DHCP_Lease": "Renew DHCP Lease",
|
|
||||||
"Renew_Lease": "Renew Lease",
|
|
||||||
"Reset": "Reset",
|
|
||||||
"Reset_Config": "Reset Config",
|
|
||||||
"Reset_Configuration": "Reset Configuration",
|
|
||||||
"Reset_configuration_to_default_This_will_log_you_out": "Reset configuration to default. This will log you out.",
|
|
||||||
"Reset_to_Default": "Reset to Default",
|
|
||||||
"Resolution": "Resolution",
|
|
||||||
"Restore_Power_Loss": "Restore Power Loss",
|
|
||||||
"Restore_to_Default": "Restore to Default",
|
|
||||||
"Restrict_web_interface_access_to_localhost_only_127_0_0_1": "Restrict web interface access to localhost only (127.0.0.1)",
|
|
||||||
"Retry": "Retry",
|
|
||||||
"Retrying_connection": "Retrying connection",
|
|
||||||
"Return_to_Dashboard": "Return to Dashboard",
|
|
||||||
"Right": "Right",
|
|
||||||
"Round-Trip_Time": "Round-Trip Time",
|
|
||||||
"Round-trip_time_for_the_active_ICE_candidate_pair_between_peers": "Round-trip time for the active ICE candidate pair between peers",
|
|
||||||
"SSH_Access": "SSH Access",
|
|
||||||
"SSH_Public_Key": "SSH Public Key",
|
|
||||||
"SSH_access_configured_and_tested": "SSH access configured and tested",
|
|
||||||
"SSH_key_updated_successfully": "SSH key updated successfully",
|
|
||||||
"Saturation": "Saturation",
|
|
||||||
"Save_Changes": "Save Changes",
|
|
||||||
"Save_Device": "Save Device",
|
|
||||||
"Save_Jiggler_Config": "Save Jiggler Config",
|
|
||||||
"Save_Macro": "Save Macro",
|
|
||||||
"Save_Settings": "Save Settings",
|
|
||||||
"Saving...": "Saving...",
|
|
||||||
"Scroll_Throttling": "Scroll Throttling",
|
|
||||||
"Search_for_key": "Search for key...",
|
|
||||||
"Searching": "Search...",
|
|
||||||
"Secure_Device": "Secure Device",
|
|
||||||
"Secure_your_device_with_a_password_for_added_protection": "Secure your device with a password for added protection.",
|
|
||||||
"Security_is_weakened_while_active": "Security is weakened while active",
|
|
||||||
"Select": "Select",
|
|
||||||
"Select_an_image_file_to_upload_to_JetKVM_storage": "Select an image file to upload to JetKVM storage",
|
|
||||||
"Select_an_image_to_mount_from_the_JetKVM_storage": "Select an image to mount from the JetKVM storage",
|
|
||||||
"Select_how_you_d_like_to_secure_your_JetKVM_device_locally": "Select how you{\"'\"}d like to secure your JetKVM device locally.",
|
|
||||||
"Select_the_cloud_provider_for_your_device": "Select the cloud provider for your device",
|
|
||||||
"Self-signed": "Self-signed",
|
|
||||||
"Send_a_Magic_Packet_to_wake_up_a_remote_device": "Send a Magic Packet to wake up a remote device",
|
|
||||||
"Sending_text_using_keyboard_layout": "Sending text using keyboard layout",
|
|
||||||
"Serial_Console": "Serial Console",
|
|
||||||
"Serial_Number": "Serial Number",
|
|
||||||
"Set_Custom_EDID": "Set Custom EDID",
|
|
||||||
"Set_Password": "Set Password",
|
|
||||||
"Set_a_Password": "Set a Password",
|
|
||||||
"Set_how_long_to_wait_before_dimming_the_display": "Set how long to wait before dimming the display",
|
|
||||||
"Set_the_brightness_of_the_display": "Set the brightness of the display",
|
|
||||||
"Set_the_orientation_of_the_display": "Set the orientation of the display",
|
|
||||||
"Set_up_your_JetKVM": "Set up your JetKVM",
|
|
||||||
"Setting_remote_description": "Setting remote description",
|
|
||||||
"Setting_remote_session_description": "Setting remote session description...",
|
|
||||||
"Setting_up_connection_to_device": "Setting up connection to device...",
|
|
||||||
"Settings": "Settings",
|
|
||||||
"Shift": "Shift",
|
|
||||||
"Show_Pressed_Keys": "Show Pressed Keys",
|
|
||||||
"Showing": "Showing",
|
|
||||||
"Signup_Connect_device": "Signup & Connect device",
|
|
||||||
"Simulate_movement_of_a_computer_mouse": "Simulate movement of a computer mouse",
|
|
||||||
"Something_went_wrong_Please_try_again_later_or_contact_support": "Something went wrong. Please try again later or contact support",
|
|
||||||
"Sometimes_it_might_need_to_be_disabled_to_prevent_issues_with_certain_devices": "Sometimes it might need to be disabled to prevent issues with certain devices",
|
|
||||||
"Standard_1m": "Standard - 1m",
|
|
||||||
"Step_Duration": "Step Duration",
|
|
||||||
"Step_Duration_description": "Step Duration description",
|
|
||||||
"Steps": "Steps",
|
|
||||||
"Stop_Bits": "Stop Bits",
|
|
||||||
"Stream_Quality": "Stream Quality",
|
|
||||||
"Stream_quality_set_to_msg": "Stream quality set to {{msg}}",
|
|
||||||
"Streaming_from_URL": "Streaming from URL",
|
|
||||||
"Subnet_Mask": "Subnet Mask",
|
|
||||||
"Supported_formats": "Supported formats",
|
|
||||||
"System": "System",
|
|
||||||
"System_default": "System",
|
|
||||||
"System_is_up_to_date": "System is up to date",
|
|
||||||
"TLS_Certificate": "TLS Certificate",
|
|
||||||
"TLS_settings_updated_successfully": "TLS settings updated successfully",
|
|
||||||
"TTL": "TTL",
|
|
||||||
"The_connection_between_the_client_and_the_JetKVM": "The connection between the client and the JetKVM.",
|
|
||||||
"The_default_SSH_user_is": "The default SSH user is",
|
|
||||||
"The_display_will_wake_up_when_the_connection_state_changes_or_when_touched": "The display will wake up when the connection state changes, or when touched.",
|
|
||||||
"The_page_you_were_looking_for_does_not_exist": "The page you were looking for does not exist.",
|
|
||||||
"The_video_stream_from_the_JetKVM_to_the_client": "The video stream from the JetKVM to the client.",
|
|
||||||
"Theme": "Theme",
|
|
||||||
"Theme_description": "Theme description",
|
|
||||||
"There_was_an_error_deregistering_your_device_Please_try_again": "There was an error deregistering your device. Please try again.",
|
|
||||||
"There_was_an_error_renaming_your_device_Please_try_again": "There was an error renaming your device. Please try again",
|
|
||||||
"There_was_an_error_setting_the_jiggler_config": "There was an error setting the jiggler config",
|
|
||||||
"This_device_is_currently_registered_to_another_user_in_our_cloud_dashboard": "This device is currently registered to another user in our cloud dashboard.",
|
|
||||||
"This_password_will_be_used_to_secure_your_device_data_and_protect_against_unauthorized_access": "This password will be used to secure your device data and protect against unauthorized access. ",
|
|
||||||
"This_will_remove_the_device_from_your_cloud_account_and_revoke_remote_access_to_it": "This will remove the device from your cloud account and revoke\n remote access to it.",
|
|
||||||
"This_will_request_a_new_IP_address_from_your_DHCP_server_Your_device_may_temporarily_lose_network_connectivity_during_this_process": "This will request a new IP address from your DHCP server. Your device may temporarily lose network connectivity during this process.",
|
|
||||||
"Time_synchronization": "Time synchronization",
|
|
||||||
"Time_to_wait_before_executing_the_next_step": "Time to wait before executing the next step.",
|
|
||||||
"Timezone": "Timezone",
|
|
||||||
"Timezone_for_cron_schedule": "Timezone for cron schedule",
|
|
||||||
"To_avoid_recognizable_patterns": "To avoid recognizable patterns",
|
|
||||||
"Troubleshoot_Connection": "Troubleshoot Connection",
|
|
||||||
"Troubleshooting_Guide": "Troubleshooting Guide",
|
|
||||||
"Troubleshooting_Mode": "Troubleshooting Mode",
|
|
||||||
"Try_again": "Try again",
|
|
||||||
"Try_restarting_both_device_computer": "Try restarting both the device and your computer",
|
|
||||||
"Turn_off_Display_After": "Turn off Display After",
|
|
||||||
"URL_Mount": "URL Mount",
|
|
||||||
"USB_Config_set_to_msg": "USB Config set to {{m}} {{p}}",
|
|
||||||
"USB_Device": "USB Device",
|
|
||||||
"USB_Devices_updated": "USB Devices updated",
|
|
||||||
"USB_Emulation": "USB Emulation",
|
|
||||||
"USB_State": "USB State",
|
|
||||||
"USB_device_classes_in_the_composite_device": "USB device classes in the composite device",
|
|
||||||
"USB_device_identifiers_exposed_to_the_target_computer": "USB device identifiers exposed to the target computer",
|
|
||||||
"USB_devices_to_emulate_on_the_target_computer": "USB devices to emulate on the target computer",
|
|
||||||
"Unknown": "Unknown",
|
|
||||||
"Unknown_error": "Unknown error",
|
|
||||||
"Unload_Extension": "Unload Extension",
|
|
||||||
"Unlock_remote_access_and_advanced_features_for_your_device": "Unlock remote access and advanced features for your device.",
|
|
||||||
"Unmount": "Unmount",
|
|
||||||
"Update_Completed_Successfully": "Update Completed Successfully",
|
|
||||||
"Update_Error": "Update Error",
|
|
||||||
"Update_Now": "Update Now",
|
|
||||||
"Update_Password": "Update Password",
|
|
||||||
"Update_SSH_Key": "Update SSH Key",
|
|
||||||
"Update_TLS_Settings": "Update TLS Settings",
|
|
||||||
"Update_USB_Classes": "Update USB Classes",
|
|
||||||
"Update_USB_Identifiers": "Update USB Identifiers",
|
|
||||||
"Update_available": "Update available",
|
|
||||||
"Update_in_Background": "Update in Background",
|
|
||||||
"Update_in_Progress": "Update in Progress",
|
|
||||||
"Update_your_device_access_password": "Update your device access password",
|
|
||||||
"Updating_your_device": "Updating your device",
|
|
||||||
"Upload_New_Image": "Upload New Image",
|
|
||||||
"Upload_a_new_image": "Upload a new image",
|
|
||||||
"Upload_an_image_to_start_virtual_media_mounting": "Upload an image to start virtual media mounting.",
|
|
||||||
"Upload_failed_msg": "Upload failed: {{msg}}",
|
|
||||||
"Upload_successful": "Upload successful",
|
|
||||||
"Uploading": "Uploading",
|
|
||||||
"Uploading...": "Uploading...",
|
|
||||||
"Use_Here": "Use Here",
|
|
||||||
"Valid_Lifetime": "Valid Lifetime",
|
|
||||||
"Vendor_ID": "Vendor ID",
|
|
||||||
"Verify_device_powered_and_connected": "Verify that the device is powered on and properly connected",
|
|
||||||
"Verifying_type_update": "Verifying {{type}} update...",
|
|
||||||
"Very_High": "Very High",
|
|
||||||
"Video": "Video",
|
|
||||||
"Video_Enhancement": "Video Enhancement",
|
|
||||||
"Video_Size": "Video Size",
|
|
||||||
"View_Details": "View Details",
|
|
||||||
"Virtual_Keyboard": "Virtual Keyboard",
|
|
||||||
"Virtual_Media": "Virtual Media",
|
|
||||||
"Virtual_Media_Source": "Virtual Media Source",
|
|
||||||
"Voltage": "Voltage",
|
|
||||||
"WARNING_This_will_restrict_web_interface_access_to_localhost_127_0_0_1_only": "WARNING: This will restrict web interface access to localhost (127.0.0.1) only.",
|
|
||||||
"Waiting_for_data": "Waiting for data...",
|
|
||||||
"Wake": "Wake",
|
|
||||||
"Wake_on_LAN": "Wake on LAN",
|
|
||||||
"We_re_ensuring_your_device_has_the_latest_features_and_improvements": "We're ensuring your device has the latest features and improvements.",
|
|
||||||
"Web_Terminal": "Web Terminal",
|
|
||||||
"Welcome_back_to_JetKVM": "Welcome back to JetKVM",
|
|
||||||
"Welcome_to_JetKVM": "Welcome to JetKVM",
|
|
||||||
"Yes": "Yes",
|
|
||||||
"You_can_always_change_your_authentication_method_later_in_the_settings": "You can always change your authentication method later in the settings.",
|
|
||||||
"You_can_only_add_a_maximum_of_steps_per_macro": "You can only add a maximum of {{max_step}} steps per macro.",
|
|
||||||
"You_don_t_have_any_devices_with_enabled_JetKVM_Cloud_yet": "You don't have any devices with enabled JetKVM Cloud yet.",
|
|
||||||
"You_ve_successfully_changed_your_local_device_protection_password_Make_sure_to_remember_your_new_password_for_future_access": "You've successfully changed your local device protection password. Make sure to remember your new password for future access.",
|
|
||||||
"You_ve_successfully_disabled_the_password_protection_for_local_access_Remember": "You've successfully disabled the password protection for local access. Remember, your device is now less secure",
|
|
||||||
"You_ve_successfully_disabled_the_password_protection_for_local_access_Remember_your_device_is_now_less_secure": "You've successfully disabled the password protection for local access. Remember, your device is now less secure.",
|
|
||||||
"You_ve_successfully_set_up_local_device_protection_Your_device_is_now_secure_against_unauthorized_local_access": "You've successfully set up local device protection. Your device is now secure against unauthorized local access.",
|
|
||||||
"Your_device_has_been_successfully_updated_to_the_latest_version_Enjoy_the_new_features_and_improvements": "Your device has been successfully updated to the latest version. Enjoy the new features and improvements!",
|
|
||||||
"Your_device_is_adopted_to_the_Cloud": "Your device is adopted to the Cloud",
|
|
||||||
"Your_system_is_running_the_latest_version_No_updates_are_currently_available": "Your system is running the latest version. No updates are currently available.",
|
|
||||||
"Zero_Trust_security_model": "Zero Trust security model",
|
|
||||||
"_ms": "{{num}} ms",
|
|
||||||
"addressed": "addressed",
|
|
||||||
"already_registered_notice": "If you're the new owner, please ask the previous owner to de-register the device from their account in the cloud dashboard. If you believe this is an error, contact our support team for assistance.",
|
|
||||||
"attached": "attached",
|
|
||||||
"attempt_num": "(attempt {{num}})",
|
|
||||||
"closed": "closed",
|
|
||||||
"configured": "configured",
|
|
||||||
"connecting": "connecting",
|
|
||||||
"correctly": "correctly",
|
|
||||||
"disable": "disable",
|
|
||||||
"disabled": "disabled",
|
|
||||||
"enable": "enable",
|
|
||||||
"error": "error",
|
|
||||||
"fps": " fps",
|
|
||||||
"free": "free",
|
|
||||||
"handshaking": "handshaking",
|
|
||||||
"has_been_uploaded": "has been uploaded",
|
|
||||||
"keyboard_layout_notice": "The virtual keyboard, paste text, and keyboard macros send individual key strokes to the target device. The keyboard layout determines which key codes are being sent. Ensure that the keyboard layout in JetKVM matches the settings in the operating system.",
|
|
||||||
"ms": " ms",
|
|
||||||
"not_attached": "not attached",
|
|
||||||
"num_minute": "{{num}} Minutes",
|
|
||||||
"of": "of",
|
|
||||||
"open": "open",
|
|
||||||
"packets": " packets",
|
|
||||||
"ready": "ready",
|
|
||||||
"ready_(v1+u)": "ready (v1+u)",
|
|
||||||
"results": "results",
|
|
||||||
"suspended": "suspended",
|
|
||||||
"the_custom_EDID": "the custom EDID",
|
|
||||||
"to": "to ",
|
|
||||||
"used": "used"
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 913 B |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1008 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 736 B |
|
|
@ -1,15 +1 @@
|
||||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="transparent" d="M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7Z"/><path fill="currentColor" fill-rule="evenodd" d="M20 7H4v12h16V7ZM4 5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4Z" clip-rule="evenodd"/><path fill="transparent" d="M12 3h12v12H12V3Z"/><path fill="transparent" d="M14 6a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V6Z"/><path fill="currentColor" fill-rule="evenodd" d="M16 7v4h4V7h-4Zm-1-2a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-6Z" clip-rule="evenodd"/></svg>
|
||||||
<path
|
|
||||||
d="M2 7C2 5.89543 2.89543 5 4 5H20C21.1046 5 22 5.89543 22 7V19C22 20.1046 21.1046 21 20 21H4C2.89543 21 2 20.1046 2 19V7Z"
|
|
||||||
fill="transparent" />
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
||||||
d="M20 7H4V19H20V7ZM4 5C2.89543 5 2 5.89543 2 7V19C2 20.1046 2.89543 21 4 21H20C21.1046 21 22 20.1046 22 19V7C22 5.89543 21.1046 5 20 5H4Z"
|
|
||||||
fill="currentColor" />
|
|
||||||
<path d="M12 3H24V15H12V3Z" fill="transparent" />
|
|
||||||
<path
|
|
||||||
d="M14 6C14 5.44772 14.4477 5 15 5H21C21.5523 5 22 5.44772 22 6V12C22 12.5523 21.5523 13 21 13H15C14.4477 13 14 12.5523 14 12V6Z"
|
|
||||||
fill="transparent" />
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
||||||
d="M16 7V11H20V7H16ZM15 5C14.4477 5 14 5.44772 14 6V12C14 12.5523 14.4477 13 15 13H21C21.5523 13 22 12.5523 22 12V6C22 5.44772 21.5523 5 21 5H15Z"
|
|
||||||
fill="currentColor" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 991 B After Width: | Height: | Size: 647 B |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 921 B |
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 184 KiB After Width: | Height: | Size: 184 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 2.6 KiB |
|
|
@ -1,12 +1 @@
|
||||||
<svg width="89" height="24" viewBox="0 0 89 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg xmlns="http://www.w3.org/2000/svg" width="89" height="24" fill="none"><rect width="24" height="24" fill="#1D4ED8" rx="6"/><path fill="#1D4ED8" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/><path fill="#fff" d="M13.885 12a1.895 1.895 0 1 1-3.79 0 1.895 1.895 0 0 1 3.79 0Z"/><path fill="#fff" fill-rule="evenodd" d="M7.59 9.363c.49.182.74.727.558 1.218A4.103 4.103 0 0 0 12 16.105a4.103 4.103 0 0 0 3.852-5.526.947.947 0 0 1 1.777-.658A5.998 5.998 0 0 1 12 18a5.998 5.998 0 0 1-5.628-8.078.947.947 0 0 1 1.218-.56ZM11.993 7.895c-.628 0-1.22.14-1.75.39a.947.947 0 1 1-.808-1.714A5.985 5.985 0 0 1 11.993 6c.913 0 1.78.204 2.557.57a.947.947 0 1 1-.808 1.715 4.09 4.09 0 0 0-1.75-.39Z" clip-rule="evenodd"/><path fill="#1D4ED8" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/><path fill="#fff" d="M13.885 12a1.895 1.895 0 1 1-3.79 0 1.895 1.895 0 0 1 3.79 0Z"/><path fill="#fff" fill-rule="evenodd" d="M7.59 9.363c.49.182.74.727.558 1.218A4.103 4.103 0 0 0 12 16.105a4.103 4.103 0 0 0 3.852-5.526.947.947 0 0 1 1.777-.658A5.998 5.998 0 0 1 12 18a5.998 5.998 0 0 1-5.628-8.078.947.947 0 0 1 1.218-.56ZM11.993 7.895c-.628 0-1.22.14-1.75.39a.947.947 0 1 1-.808-1.714A5.985 5.985 0 0 1 11.993 6c.913 0 1.78.204 2.557.57a.947.947 0 1 1-.808 1.715 4.09 4.09 0 0 0-1.75-.39Z" clip-rule="evenodd"/><path fill="#1D4ED8" d="m28.32 13.84 1.872-.384v1.056c0 .672.165 1.163.496 1.472.33.299.747.448 1.248.448.512 0 .917-.16 1.216-.48.299-.33.448-.784.448-1.36V6.656h1.92v7.888c0 .501-.085.976-.256 1.424-.17.448-.41.843-.72 1.184a3.57 3.57 0 0 1-1.12.8 3.625 3.625 0 0 1-1.472.288 4.196 4.196 0 0 1-1.504-.256 3.424 3.424 0 0 1-1.152-.752c-.31-.32-.55-.704-.72-1.152a4.196 4.196 0 0 1-.256-1.504v-.736Zm14.672-.592a1.866 1.866 0 0 0-.144-.64 1.469 1.469 0 0 0-.352-.56 1.776 1.776 0 0 0-.592-.384 2.19 2.19 0 0 0-.832-.144c-.288 0-.55.053-.784.16-.224.096-.416.23-.576.4-.16.16-.288.347-.384.56a1.61 1.61 0 0 0-.16.608h3.824Zm1.776 2.528a3.633 3.633 0 0 1-.464.96c-.203.299-.454.56-.752.784-.299.224-.64.4-1.024.528s-.81.192-1.28.192c-.533 0-1.04-.09-1.52-.272a3.846 3.846 0 0 1-1.264-.816 4.23 4.23 0 0 1-.88-1.312c-.214-.523-.32-1.115-.32-1.776 0-.619.101-1.179.304-1.68.213-.501.496-.928.848-1.28.352-.363.757-.64 1.216-.832a3.487 3.487 0 0 1 1.424-.304c.597 0 1.13.096 1.6.288.48.192.88.464 1.2.816.33.352.581.779.752 1.28.17.49.256 1.045.256 1.664 0 .15-.005.283-.016.4a.814.814 0 0 1-.032.192H39.12c.01.299.075.57.192.816.117.245.272.459.464.64s.41.325.656.432c.256.096.528.144.816.144.565 0 .997-.128 1.296-.384.31-.267.528-.592.656-.976l1.568.496Zm4.221-5.568h1.617v1.648h-1.617v3.616c0 .341.08.592.24.752.16.15.411.224.752.224.128 0 .256-.005.384-.016.128-.021.214-.037.256-.048v1.536c-.053.021-.17.053-.352.096-.18.053-.442.08-.783.08-.726 0-1.296-.203-1.712-.608-.416-.405-.624-.976-.624-1.712v-3.92h-1.44v-1.648h.4c.416 0 .72-.117.912-.352a1.32 1.32 0 0 0 .288-.864V7.824h1.68v2.384Zm7.076 2.88-1.504 1.648V18h-1.92V6.656h1.92v5.44l4.88-5.44h2.528l-4.592 5.008L62.017 18h-2.416l-3.536-4.912ZM70.67 6.656h2.032L68.414 18h-1.952L62.238 6.656h2.08l3.168 8.832 3.184-8.832ZM84.795 18V9.648L81.26 18h-1.664l-3.504-8.32V18H74.22V6.656h2.56l3.68 8.656 3.632-8.656H86.7V18h-1.904Z"/></svg>
|
||||||
<rect width="24" height="24" rx="6" fill="#1D4ED8"/>
|
|
||||||
<path d="M0 6C0 2.68629 2.68629 0 6 0H18C21.3137 0 24 2.68629 24 6V18C24 21.3137 21.3137 24 18 24H6C2.68629 24 0 21.3137 0 18V6Z" fill="#1D4ED8"/>
|
|
||||||
<path d="M13.8854 12.0001C13.8854 13.0465 13.037 13.8949 11.9906 13.8949C10.9441 13.8949 10.0957 13.0465 10.0957 12.0001C10.0957 10.9536 10.9441 10.1052 11.9906 10.1052C13.037 10.1052 13.8854 10.9536 13.8854 12.0001Z" fill="white"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.58968 9.36279C8.08026 9.54475 8.33045 10.09 8.14849 10.5805C7.9844 11.0229 7.89433 11.5023 7.89433 12.0048C7.89433 14.2684 9.73148 16.1051 11.9998 16.1051C14.268 16.1051 16.1052 14.2684 16.1052 12.0048C16.1052 11.5023 16.0151 11.0229 15.851 10.5805C15.6691 10.09 15.9192 9.54475 16.4098 9.36279C16.9004 9.18083 17.4456 9.43101 17.6276 9.92159C17.8687 10.5717 18 11.274 18 12.0048C18 15.3167 15.3127 17.9999 11.9998 17.9999C8.68682 17.9999 5.99951 15.3167 5.99951 12.0048C5.99951 11.274 6.13081 10.5717 6.37194 9.92159C6.5539 9.43101 7.09911 9.18083 7.58968 9.36279Z" fill="white"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9927 7.89481C11.3649 7.89481 10.7726 8.03489 10.243 8.28454C9.7697 8.50765 9.20516 8.30483 8.98206 7.83154C8.75895 7.35825 8.96177 6.79371 9.43506 6.57061C10.2121 6.20432 11.0799 6 11.9927 6C12.9056 6 13.7733 6.20432 14.5504 6.57061C15.0237 6.79371 15.2265 7.35825 15.0034 7.83154C14.7803 8.30483 14.2157 8.50765 13.7424 8.28454C13.2128 8.03489 12.6205 7.89481 11.9927 7.89481Z" fill="white"/>
|
|
||||||
<path d="M0 6C0 2.68629 2.68629 0 6 0H18C21.3137 0 24 2.68629 24 6V18C24 21.3137 21.3137 24 18 24H6C2.68629 24 0 21.3137 0 18V6Z" fill="#1D4ED8"/>
|
|
||||||
<path d="M13.8854 12.0001C13.8854 13.0465 13.037 13.8949 11.9906 13.8949C10.9441 13.8949 10.0957 13.0465 10.0957 12.0001C10.0957 10.9536 10.9441 10.1052 11.9906 10.1052C13.037 10.1052 13.8854 10.9536 13.8854 12.0001Z" fill="white"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.58968 9.36279C8.08026 9.54475 8.33045 10.09 8.14849 10.5805C7.9844 11.0229 7.89433 11.5023 7.89433 12.0048C7.89433 14.2684 9.73148 16.1051 11.9998 16.1051C14.268 16.1051 16.1052 14.2684 16.1052 12.0048C16.1052 11.5023 16.0151 11.0229 15.851 10.5805C15.6691 10.09 15.9192 9.54475 16.4098 9.36279C16.9004 9.18083 17.4456 9.43101 17.6276 9.92159C17.8687 10.5717 18 11.274 18 12.0048C18 15.3167 15.3127 17.9999 11.9998 17.9999C8.68682 17.9999 5.99951 15.3167 5.99951 12.0048C5.99951 11.274 6.13081 10.5717 6.37194 9.92159C6.5539 9.43101 7.09911 9.18083 7.58968 9.36279Z" fill="white"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9927 7.89481C11.3649 7.89481 10.7726 8.03489 10.243 8.28454C9.7697 8.50765 9.20516 8.30483 8.98206 7.83154C8.75895 7.35825 8.96177 6.79371 9.43506 6.57061C10.2121 6.20432 11.0799 6 11.9927 6C12.9056 6 13.7733 6.20432 14.5504 6.57061C15.0237 6.79371 15.2265 7.35825 15.0034 7.83154C14.7803 8.30483 14.2157 8.50765 13.7424 8.28454C13.2128 8.03489 12.6205 7.89481 11.9927 7.89481Z" fill="white"/>
|
|
||||||
<path d="M28.32 13.84L30.192 13.456V14.512C30.192 15.184 30.3573 15.6747 30.688 15.984C31.0187 16.2827 31.4347 16.432 31.936 16.432C32.448 16.432 32.8533 16.272 33.152 15.952C33.4507 15.6213 33.6 15.168 33.6 14.592V6.656H35.52V14.544C35.52 15.0453 35.4347 15.52 35.264 15.968C35.0933 16.416 34.8533 16.8107 34.544 17.152C34.2347 17.4827 33.8613 17.7493 33.424 17.952C32.9867 18.144 32.496 18.24 31.952 18.24C31.3973 18.24 30.896 18.1547 30.448 17.984C30 17.8027 29.616 17.552 29.296 17.232C28.9867 16.912 28.7467 16.528 28.576 16.08C28.4053 15.632 28.32 15.1307 28.32 14.576V13.84ZM42.9919 13.248C42.9812 13.024 42.9332 12.8107 42.8479 12.608C42.7732 12.3947 42.6559 12.208 42.4959 12.048C42.3359 11.888 42.1385 11.76 41.9039 11.664C41.6692 11.568 41.3919 11.52 41.0719 11.52C40.7839 11.52 40.5225 11.5733 40.2879 11.68C40.0639 11.776 39.8719 11.9093 39.7119 12.08C39.5519 12.24 39.4239 12.4267 39.3279 12.64C39.2319 12.8427 39.1785 13.0453 39.1679 13.248H42.9919ZM44.7679 15.776C44.6612 16.1173 44.5065 16.4373 44.3039 16.736C44.1012 17.0347 43.8505 17.296 43.5519 17.52C43.2532 17.744 42.9119 17.92 42.5279 18.048C42.1439 18.176 41.7172 18.24 41.2479 18.24C40.7145 18.24 40.2079 18.1493 39.7279 17.968C39.2479 17.776 38.8265 17.504 38.4639 17.152C38.1012 16.7893 37.8079 16.352 37.5839 15.84C37.3705 15.3173 37.2639 14.7253 37.2639 14.064C37.2639 13.4453 37.3652 12.8853 37.5679 12.384C37.7812 11.8827 38.0639 11.456 38.4159 11.104C38.7679 10.7413 39.1732 10.464 39.6319 10.272C40.0905 10.0693 40.5652 9.968 41.0559 9.968C41.6532 9.968 42.1865 10.064 42.6559 10.256C43.1359 10.448 43.5359 10.72 43.8559 11.072C44.1865 11.424 44.4372 11.8507 44.6079 12.352C44.7785 12.8427 44.8639 13.3973 44.8639 14.016C44.8639 14.1653 44.8585 14.2987 44.8479 14.416C44.8372 14.5227 44.8265 14.5867 44.8159 14.608H39.1199C39.1305 14.9067 39.1945 15.1787 39.3119 15.424C39.4292 15.6693 39.5839 15.8827 39.7759 16.064C39.9679 16.2453 40.1865 16.3893 40.4319 16.496C40.6879 16.592 40.9599 16.64 41.2479 16.64C41.8132 16.64 42.2452 16.512 42.5439 16.256C42.8532 15.9893 43.0719 15.664 43.1999 15.28L44.7679 15.776ZM48.9895 10.208H50.6055V11.856H48.9895V15.472C48.9895 15.8133 49.0695 16.064 49.2295 16.224C49.3895 16.3733 49.6402 16.448 49.9815 16.448C50.1095 16.448 50.2375 16.4427 50.3655 16.432C50.4935 16.4107 50.5788 16.3947 50.6215 16.384V17.92C50.5682 17.9413 50.4508 17.9733 50.2695 18.016C50.0882 18.0693 49.8268 18.096 49.4855 18.096C48.7602 18.096 48.1895 17.8933 47.7735 17.488C47.3575 17.0827 47.1495 16.512 47.1495 15.776V11.856H45.7095V10.208H46.1095C46.5255 10.208 46.8295 10.0907 47.0215 9.856C47.2135 9.62133 47.3095 9.33333 47.3095 8.992V7.824H48.9895V10.208ZM56.0653 13.088L54.5613 14.736V18H52.6413V6.656H54.5613V12.096L59.4413 6.656H61.9693L57.3773 11.664L62.0173 18H59.6013L56.0653 13.088ZM70.6701 6.656H72.7021L68.4141 18H66.4621L62.2381 6.656H64.3181L67.4861 15.488L70.6701 6.656ZM84.7954 18V9.648L81.2594 18H79.5954L76.0914 9.68V18H74.2194V6.656H76.7794L80.4594 15.312L84.0914 6.656H86.6994V18H84.7954Z" fill="#1D4ED8"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 1.2 KiB |
|
|
@ -1,30 +1 @@
|
||||||
<svg viewBox="0 0 89 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 89 24"><rect width="24" height="24" fill="#1D4ED8" rx="6"/><path fill="#1D4ED8" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/><path fill="#fff" d="M13.885 12a1.895 1.895 0 1 1-3.79 0 1.895 1.895 0 0 1 3.79 0Z"/><path fill="#fff" fill-rule="evenodd" d="M7.59 9.363c.49.182.74.727.558 1.218A4.103 4.103 0 0 0 12 16.105a4.103 4.103 0 0 0 3.852-5.526.947.947 0 0 1 1.777-.658A5.998 5.998 0 0 1 12 18a5.998 5.998 0 0 1-5.628-8.078.947.947 0 0 1 1.218-.56ZM11.993 7.895c-.628 0-1.22.14-1.75.39a.947.947 0 1 1-.808-1.714A5.985 5.985 0 0 1 11.993 6c.913 0 1.78.204 2.557.57a.947.947 0 1 1-.808 1.715 4.09 4.09 0 0 0-1.75-.39Z" clip-rule="evenodd"/><path fill="#1D4ED8" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/><path fill="#fff" d="M13.885 12a1.895 1.895 0 1 1-3.79 0 1.895 1.895 0 0 1 3.79 0Z"/><path fill="#fff" fill-rule="evenodd" d="M7.59 9.363c.49.182.74.727.558 1.218A4.103 4.103 0 0 0 12 16.105a4.103 4.103 0 0 0 3.852-5.526.947.947 0 0 1 1.777-.658A5.998 5.998 0 0 1 12 18a5.998 5.998 0 0 1-5.628-8.078.947.947 0 0 1 1.218-.56ZM11.993 7.895c-.628 0-1.22.14-1.75.39a.947.947 0 1 1-.808-1.714A5.985 5.985 0 0 1 11.993 6c.913 0 1.78.204 2.557.57a.947.947 0 1 1-.808 1.715 4.09 4.09 0 0 0-1.75-.39Z" clip-rule="evenodd"/><path fill="#fff" d="m28.32 13.84 1.872-.384v1.056c0 .672.165 1.163.496 1.472.33.299.747.448 1.248.448.512 0 .917-.16 1.216-.48.299-.33.448-.784.448-1.36V6.656h1.92v7.888c0 .501-.085.976-.256 1.424-.17.448-.41.843-.72 1.184a3.57 3.57 0 0 1-1.12.8 3.625 3.625 0 0 1-1.472.288 4.196 4.196 0 0 1-1.504-.256 3.424 3.424 0 0 1-1.152-.752c-.31-.32-.55-.704-.72-1.152a4.196 4.196 0 0 1-.256-1.504v-.736Zm14.672-.592a1.866 1.866 0 0 0-.144-.64 1.469 1.469 0 0 0-.352-.56 1.776 1.776 0 0 0-.592-.384 2.19 2.19 0 0 0-.832-.144c-.288 0-.55.053-.784.16-.224.096-.416.23-.576.4-.16.16-.288.347-.384.56a1.61 1.61 0 0 0-.16.608h3.824Zm1.776 2.528a3.633 3.633 0 0 1-.464.96c-.203.299-.454.56-.752.784-.299.224-.64.4-1.024.528s-.81.192-1.28.192c-.533 0-1.04-.09-1.52-.272a3.846 3.846 0 0 1-1.264-.816 4.23 4.23 0 0 1-.88-1.312c-.214-.523-.32-1.115-.32-1.776 0-.619.101-1.179.304-1.68.213-.501.496-.928.848-1.28.352-.363.757-.64 1.216-.832a3.487 3.487 0 0 1 1.424-.304c.597 0 1.13.096 1.6.288.48.192.88.464 1.2.816.33.352.581.779.752 1.28.17.49.256 1.045.256 1.664 0 .15-.005.283-.016.4a.814.814 0 0 1-.032.192H39.12c.01.299.075.57.192.816.117.245.272.459.464.64s.41.325.656.432c.256.096.528.144.816.144.565 0 .997-.128 1.296-.384.31-.267.528-.592.656-.976l1.568.496Zm4.221-5.568h1.617v1.648h-1.617v3.616c0 .341.08.592.24.752.16.15.411.224.752.224.128 0 .256-.005.384-.016.128-.021.214-.037.256-.048v1.536c-.053.021-.17.053-.352.096-.18.053-.442.08-.783.08-.726 0-1.296-.203-1.712-.608-.416-.405-.624-.976-.624-1.712v-3.92h-1.44v-1.648h.4c.416 0 .72-.117.912-.352a1.32 1.32 0 0 0 .288-.864V7.824h1.68v2.384Zm7.076 2.88-1.504 1.648V18h-1.92V6.656h1.92v5.44l4.88-5.44h2.528l-4.592 5.008L62.017 18h-2.416l-3.536-4.912ZM70.67 6.656h2.032L68.414 18h-1.952L62.238 6.656h2.08l3.168 8.832 3.184-8.832ZM84.795 18V9.648L81.26 18h-1.664l-3.504-8.32V18H74.22V6.656h2.56l3.68 8.656 3.632-8.656H86.7V18h-1.904Z"/></svg>
|
||||||
<rect width="24" height="24" rx="6" fill="#1D4ED8" />
|
|
||||||
<path
|
|
||||||
d="M0 6C0 2.68629 2.68629 0 6 0H18C21.3137 0 24 2.68629 24 6V18C24 21.3137 21.3137 24 18 24H6C2.68629 24 0 21.3137 0 18V6Z"
|
|
||||||
fill="#1D4ED8" />
|
|
||||||
<path
|
|
||||||
d="M13.8854 12.0001C13.8854 13.0465 13.037 13.8949 11.9906 13.8949C10.9441 13.8949 10.0957 13.0465 10.0957 12.0001C10.0957 10.9536 10.9441 10.1052 11.9906 10.1052C13.037 10.1052 13.8854 10.9536 13.8854 12.0001Z"
|
|
||||||
fill="white" />
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
||||||
d="M7.58968 9.36279C8.08026 9.54475 8.33045 10.09 8.14849 10.5805C7.9844 11.0229 7.89433 11.5023 7.89433 12.0048C7.89433 14.2684 9.73148 16.1051 11.9998 16.1051C14.268 16.1051 16.1052 14.2684 16.1052 12.0048C16.1052 11.5023 16.0151 11.0229 15.851 10.5805C15.6691 10.09 15.9192 9.54475 16.4098 9.36279C16.9004 9.18083 17.4456 9.43101 17.6276 9.92159C17.8687 10.5717 18 11.274 18 12.0048C18 15.3167 15.3127 17.9999 11.9998 17.9999C8.68682 17.9999 5.99951 15.3167 5.99951 12.0048C5.99951 11.274 6.13081 10.5717 6.37194 9.92159C6.5539 9.43101 7.09911 9.18083 7.58968 9.36279Z"
|
|
||||||
fill="white" />
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
||||||
d="M11.9927 7.89481C11.3649 7.89481 10.7726 8.03489 10.243 8.28454C9.7697 8.50765 9.20516 8.30483 8.98206 7.83154C8.75895 7.35825 8.96177 6.79371 9.43506 6.57061C10.2121 6.20432 11.0799 6 11.9927 6C12.9056 6 13.7733 6.20432 14.5504 6.57061C15.0237 6.79371 15.2265 7.35825 15.0034 7.83154C14.7803 8.30483 14.2157 8.50765 13.7424 8.28454C13.2128 8.03489 12.6205 7.89481 11.9927 7.89481Z"
|
|
||||||
fill="white" />
|
|
||||||
<path
|
|
||||||
d="M0 6C0 2.68629 2.68629 0 6 0H18C21.3137 0 24 2.68629 24 6V18C24 21.3137 21.3137 24 18 24H6C2.68629 24 0 21.3137 0 18V6Z"
|
|
||||||
fill="#1D4ED8" />
|
|
||||||
<path
|
|
||||||
d="M13.8854 12.0001C13.8854 13.0465 13.037 13.8949 11.9906 13.8949C10.9441 13.8949 10.0957 13.0465 10.0957 12.0001C10.0957 10.9536 10.9441 10.1052 11.9906 10.1052C13.037 10.1052 13.8854 10.9536 13.8854 12.0001Z"
|
|
||||||
fill="white" />
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
||||||
d="M7.58968 9.36279C8.08026 9.54475 8.33045 10.09 8.14849 10.5805C7.9844 11.0229 7.89433 11.5023 7.89433 12.0048C7.89433 14.2684 9.73148 16.1051 11.9998 16.1051C14.268 16.1051 16.1052 14.2684 16.1052 12.0048C16.1052 11.5023 16.0151 11.0229 15.851 10.5805C15.6691 10.09 15.9192 9.54475 16.4098 9.36279C16.9004 9.18083 17.4456 9.43101 17.6276 9.92159C17.8687 10.5717 18 11.274 18 12.0048C18 15.3167 15.3127 17.9999 11.9998 17.9999C8.68682 17.9999 5.99951 15.3167 5.99951 12.0048C5.99951 11.274 6.13081 10.5717 6.37194 9.92159C6.5539 9.43101 7.09911 9.18083 7.58968 9.36279Z"
|
|
||||||
fill="white" />
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
||||||
d="M11.9927 7.89481C11.3649 7.89481 10.7726 8.03489 10.243 8.28454C9.7697 8.50765 9.20516 8.30483 8.98206 7.83154C8.75895 7.35825 8.96177 6.79371 9.43506 6.57061C10.2121 6.20432 11.0799 6 11.9927 6C12.9056 6 13.7733 6.20432 14.5504 6.57061C15.0237 6.79371 15.2265 7.35825 15.0034 7.83154C14.7803 8.30483 14.2157 8.50765 13.7424 8.28454C13.2128 8.03489 12.6205 7.89481 11.9927 7.89481Z"
|
|
||||||
fill="white" />
|
|
||||||
<path
|
|
||||||
d="M28.32 13.84L30.192 13.456V14.512C30.192 15.184 30.3573 15.6747 30.688 15.984C31.0187 16.2827 31.4347 16.432 31.936 16.432C32.448 16.432 32.8533 16.272 33.152 15.952C33.4507 15.6213 33.6 15.168 33.6 14.592V6.656H35.52V14.544C35.52 15.0453 35.4347 15.52 35.264 15.968C35.0933 16.416 34.8533 16.8107 34.544 17.152C34.2347 17.4827 33.8613 17.7493 33.424 17.952C32.9867 18.144 32.496 18.24 31.952 18.24C31.3973 18.24 30.896 18.1547 30.448 17.984C30 17.8027 29.616 17.552 29.296 17.232C28.9867 16.912 28.7467 16.528 28.576 16.08C28.4053 15.632 28.32 15.1307 28.32 14.576V13.84ZM42.9919 13.248C42.9812 13.024 42.9332 12.8107 42.8479 12.608C42.7732 12.3947 42.6559 12.208 42.4959 12.048C42.3359 11.888 42.1385 11.76 41.9039 11.664C41.6692 11.568 41.3919 11.52 41.0719 11.52C40.7839 11.52 40.5225 11.5733 40.2879 11.68C40.0639 11.776 39.8719 11.9093 39.7119 12.08C39.5519 12.24 39.4239 12.4267 39.3279 12.64C39.2319 12.8427 39.1785 13.0453 39.1679 13.248H42.9919ZM44.7679 15.776C44.6612 16.1173 44.5065 16.4373 44.3039 16.736C44.1012 17.0347 43.8505 17.296 43.5519 17.52C43.2532 17.744 42.9119 17.92 42.5279 18.048C42.1439 18.176 41.7172 18.24 41.2479 18.24C40.7145 18.24 40.2079 18.1493 39.7279 17.968C39.2479 17.776 38.8265 17.504 38.4639 17.152C38.1012 16.7893 37.8079 16.352 37.5839 15.84C37.3705 15.3173 37.2639 14.7253 37.2639 14.064C37.2639 13.4453 37.3652 12.8853 37.5679 12.384C37.7812 11.8827 38.0639 11.456 38.4159 11.104C38.7679 10.7413 39.1732 10.464 39.6319 10.272C40.0905 10.0693 40.5652 9.968 41.0559 9.968C41.6532 9.968 42.1865 10.064 42.6559 10.256C43.1359 10.448 43.5359 10.72 43.8559 11.072C44.1865 11.424 44.4372 11.8507 44.6079 12.352C44.7785 12.8427 44.8639 13.3973 44.8639 14.016C44.8639 14.1653 44.8585 14.2987 44.8479 14.416C44.8372 14.5227 44.8265 14.5867 44.8159 14.608H39.1199C39.1305 14.9067 39.1945 15.1787 39.3119 15.424C39.4292 15.6693 39.5839 15.8827 39.7759 16.064C39.9679 16.2453 40.1865 16.3893 40.4319 16.496C40.6879 16.592 40.9599 16.64 41.2479 16.64C41.8132 16.64 42.2452 16.512 42.5439 16.256C42.8532 15.9893 43.0719 15.664 43.1999 15.28L44.7679 15.776ZM48.9895 10.208H50.6055V11.856H48.9895V15.472C48.9895 15.8133 49.0695 16.064 49.2295 16.224C49.3895 16.3733 49.6402 16.448 49.9815 16.448C50.1095 16.448 50.2375 16.4427 50.3655 16.432C50.4935 16.4107 50.5788 16.3947 50.6215 16.384V17.92C50.5682 17.9413 50.4508 17.9733 50.2695 18.016C50.0882 18.0693 49.8268 18.096 49.4855 18.096C48.7602 18.096 48.1895 17.8933 47.7735 17.488C47.3575 17.0827 47.1495 16.512 47.1495 15.776V11.856H45.7095V10.208H46.1095C46.5255 10.208 46.8295 10.0907 47.0215 9.856C47.2135 9.62133 47.3095 9.33333 47.3095 8.992V7.824H48.9895V10.208ZM56.0653 13.088L54.5613 14.736V18H52.6413V6.656H54.5613V12.096L59.4413 6.656H61.9693L57.3773 11.664L62.0173 18H59.6013L56.0653 13.088ZM70.6701 6.656H72.7021L68.4141 18H66.4621L62.2381 6.656H64.3181L67.4861 15.488L70.6701 6.656ZM84.7954 18V9.648L81.2594 18H79.5954L76.0914 9.68V18H74.2194V6.656H76.7794L80.4594 15.312L84.0914 6.656H86.6994V18H84.7954Z"
|
|
||||||
fill="white" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 2.6 KiB |
|
|
@ -1,11 +1 @@
|
||||||
<svg viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 21 20"><g clip-path="url(#a)"><path fill="#000" d="M11.5 1v6.608h5.833c0-3.4-2.541-6.2-5.833-6.608ZM4 12.608a6.665 6.665 0 0 0 6.667 6.667 6.665 6.665 0 0 0 6.666-6.667V9.275H4v3.333ZM9.833 1A6.657 6.657 0 0 0 4 7.608h5.833V1Z"/></g><defs><clipPath id="a"><path fill="#fff" d="M.5 0h20v20H.5z"/></clipPath></defs></svg>
|
||||||
<g clip-path="url(#clip0_3161_210)">
|
|
||||||
<path d="M11.5 1V7.60833H17.3333C17.3333 4.20833 14.7917 1.40833 11.5 1ZM4 12.6083C4 16.2917 6.98333 19.275 10.6667 19.275C14.35 19.275 17.3333 16.2917 17.3333 12.6083V9.275H4V12.6083ZM9.83333 1C6.54167 1.40833 4 4.20833 4 7.60833H9.83333V1Z"
|
|
||||||
fill="black"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0_3161_210">
|
|
||||||
<rect width="20" height="20" fill="white" transform="translate(0.5)"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 575 B After Width: | Height: | Size: 384 B |
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 2.5 KiB |
|
|
@ -1,11 +1 @@
|
||||||
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><g clip-path="url(#a)"><path fill="#000" d="M7.5 9.367V6.25a2.083 2.083 0 0 1 4.166 0v3.117a3.738 3.738 0 0 0 1.667-3.117 3.745 3.745 0 0 0-3.75-3.75 3.745 3.745 0 0 0-3.75 3.75c0 1.3.658 2.442 1.667 3.117Zm8.2 3.858-3.784-1.883a1.172 1.172 0 0 0-.45-.092h-.633v-5c0-.692-.558-1.25-1.25-1.25s-1.25.558-1.25 1.25v8.95c-3-.633-2.95-.625-3.058-.625a.932.932 0 0 0-.659.275l-.658.667 4.117 4.116c.225.225.541.367.883.367h5.658c.625 0 1.109-.458 1.2-1.067l.625-4.391c.009-.059.017-.117.017-.167 0-.517-.317-.967-.758-1.15Z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h20v20H0z"/></clipPath></defs></svg>
|
||||||
<g clip-path="url(#clip0_3161_200)">
|
|
||||||
<path d="M7.49967 9.36667V6.25C7.49967 5.69747 7.71917 5.16756 8.10987 4.77686C8.50057 4.38616 9.03047 4.16667 9.58301 4.16667C10.1355 4.16667 10.6654 4.38616 11.0561 4.77686C11.4468 5.16756 11.6663 5.69747 11.6663 6.25V9.36667C12.6747 8.69167 13.333 7.55 13.333 6.25C13.333 4.175 11.658 2.5 9.58301 2.5C7.50801 2.5 5.83301 4.175 5.83301 6.25C5.83301 7.55 6.49134 8.69167 7.49967 9.36667ZM15.6997 13.225L11.9163 11.3417C11.7747 11.2833 11.6247 11.25 11.4663 11.25H10.833V6.25C10.833 5.55833 10.2747 5 9.58301 5C8.89134 5 8.33301 5.55833 8.33301 6.25V15.2C5.33301 14.5667 5.38301 14.575 5.27467 14.575C5.01634 14.575 4.78301 14.6833 4.61634 14.85L3.95801 15.5167L8.07467 19.6333C8.29967 19.8583 8.61634 20 8.95801 20H14.6163C15.2413 20 15.7247 19.5417 15.8163 18.9333L16.4413 14.5417C16.4497 14.4833 16.458 14.425 16.458 14.375C16.458 13.8583 16.1413 13.4083 15.6997 13.225Z"
|
|
||||||
fill="black"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0_3161_200">
|
|
||||||
<rect width="20" height="20" fill="white"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 680 B |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1005 B After Width: | Height: | Size: 857 B |
|
|
@ -207,8 +207,8 @@ export function MacroStepCard({
|
||||||
)}
|
)}
|
||||||
<div className="relative w-full">
|
<div className="relative w-full">
|
||||||
<Combobox
|
<Combobox
|
||||||
onChange={(value: { value: string; label: string }) => {
|
onChange={(value) => {
|
||||||
onKeySelect(value);
|
onKeySelect({ value: value as string | null });
|
||||||
onKeyQueryChange('');
|
onKeyQueryChange('');
|
||||||
}}
|
}}
|
||||||
displayValue={() => keyQuery}
|
displayValue={() => keyQuery}
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@ import { TextAreaWithLabel } from "@components/TextArea";
|
||||||
|
|
||||||
// uint32 max value / 4
|
// uint32 max value / 4
|
||||||
const pasteMaxLength = 1073741824;
|
const pasteMaxLength = 1073741824;
|
||||||
|
const defaultDelay = 20;
|
||||||
|
|
||||||
export default function PasteModal() {
|
export default function PasteModal() {
|
||||||
const TextAreaRef = useRef<HTMLTextAreaElement>(null);
|
const TextAreaRef = useRef<HTMLTextAreaElement>(null);
|
||||||
|
|
@ -29,10 +30,10 @@ export default function PasteModal() {
|
||||||
const { executeMacro, cancelExecuteMacro } = useKeyboard();
|
const { executeMacro, cancelExecuteMacro } = useKeyboard();
|
||||||
|
|
||||||
const [invalidChars, setInvalidChars] = useState<string[]>([]);
|
const [invalidChars, setInvalidChars] = useState<string[]>([]);
|
||||||
const [delayValue, setDelayValue] = useState(100);
|
const [delayValue, setDelayValue] = useState(defaultDelay);
|
||||||
const delay = useMemo(() => {
|
const delay = useMemo(() => {
|
||||||
if (delayValue < 50 || delayValue > 65534) {
|
if (delayValue < 0 || delayValue > 65534) {
|
||||||
return 100;
|
return defaultDelay;
|
||||||
}
|
}
|
||||||
return delayValue;
|
return delayValue;
|
||||||
}, [delayValue]);
|
}, [delayValue]);
|
||||||
|
|
@ -138,7 +139,8 @@ export default function PasteModal() {
|
||||||
<div
|
<div
|
||||||
className="w-full"
|
className="w-full"
|
||||||
onKeyUp={e => e.stopPropagation()}
|
onKeyUp={e => e.stopPropagation()}
|
||||||
onKeyDown={e => e.stopPropagation()} onKeyDownCapture={e => e.stopPropagation()}
|
onKeyDown={e => e.stopPropagation()}
|
||||||
|
onKeyDownCapture={e => e.stopPropagation()}
|
||||||
onKeyUpCapture={e => e.stopPropagation()}
|
onKeyUpCapture={e => e.stopPropagation()}
|
||||||
>
|
>
|
||||||
<TextAreaWithLabel
|
<TextAreaWithLabel
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,27 @@
|
||||||
|
import i18n from 'i18next';
|
||||||
|
import Backend from 'i18next-http-backend';
|
||||||
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
||||||
|
import { initReactI18next } from 'react-i18next';
|
||||||
|
|
||||||
|
async function initI18next() {
|
||||||
|
await i18n
|
||||||
|
.use(Backend)
|
||||||
|
.use(LanguageDetector)
|
||||||
|
.use(initReactI18next)
|
||||||
|
.init({
|
||||||
|
backend: {
|
||||||
|
loadPath: import.meta.env.DEV ? "/public/locales/{{lng}}.json" : "/static/locales/{{lng}}.json"
|
||||||
|
},
|
||||||
|
debug: import.meta.env.DEV,
|
||||||
|
fallbackLng: 'en-US',
|
||||||
|
interpolation: {
|
||||||
|
escapeValue: false,
|
||||||
|
},
|
||||||
|
react: {
|
||||||
|
useSuspense: false
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return i18n;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default initI18next();
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
import { LinkButton } from "@/components/Button";
|
import { LinkButton } from "@/components/Button";
|
||||||
import SimpleNavbar from "@/components/SimpleNavbar";
|
import SimpleNavbar from "@/components/SimpleNavbar";
|
||||||
import Container from "@/components/Container";
|
import Container from "@/components/Container";
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,6 @@ const loader: LoaderFunction = async () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const action: ActionFunction = async ({ request }: ActionFunctionArgs) => {
|
const action: ActionFunction = async ({ request }: ActionFunctionArgs) => {
|
||||||
const { t } = useTranslation();
|
|
||||||
const formData = await request.formData();
|
const formData = await request.formData();
|
||||||
const password = formData.get("password");
|
const password = formData.get("password");
|
||||||
|
|
||||||
|
|
@ -44,11 +43,11 @@ const action: ActionFunction = async ({ request }: ActionFunctionArgs) => {
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
return redirect("/");
|
return redirect("/");
|
||||||
} else {
|
} else {
|
||||||
return { error: t('Invalid_password') };
|
return { error: "Invalid password" };
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
return { error: t('An_error_occurred_while_logging_in') };
|
return { error: "An error occurred while logging in" };
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||