mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2025-06-15 13:36:35 +02:00
Compare commits
62 Commits
Author | SHA1 | Date | |
---|---|---|---|
db4a6fb763 | |||
caaa154d21 | |||
518fa30306 | |||
fb3562373a | |||
5afbbac74c | |||
f25832432b | |||
926cb2505f | |||
985fd08b46 | |||
da019b6d86 | |||
514f02a5f6 | |||
c6557aae5e | |||
92ed7f1ee7 | |||
46ce6ebbb9 | |||
1a4ba03ff5 | |||
e24cd76009 | |||
ae6b495683 | |||
272c97dc8a | |||
fd25ae04a8 | |||
cc1b0b3f81 | |||
3ba279f42c | |||
0167b7ce66 | |||
9db509ace3 | |||
d42347f169 | |||
82c34e5d42 | |||
7867a1a494 | |||
1bb8abd633 | |||
536ccc0f03 | |||
671c711a33 | |||
e2f3e6857e | |||
fe4ab298d8 | |||
0f7f89dfc0 | |||
be2e3fe3f0 | |||
577ad70c06 | |||
d17638eb6e | |||
13869336db | |||
7c46abcd5d | |||
894d92b683 | |||
ca335ab3a5 | |||
2161fc0b32 | |||
0a23506a38 | |||
d23c7cb790 | |||
0a143e7de6 | |||
7ec1c46a63 | |||
7ceccd5222 | |||
f868881b3d | |||
188ed87fc0 | |||
c0f64e8c6c | |||
b95cfb664d | |||
52cdaf5bc5 | |||
175a07a865 | |||
f952e25205 | |||
01eeb06f9e | |||
839e227feb | |||
4b239ed195 | |||
2bcbe0ae59 | |||
b1ff608337 | |||
b662ba5b52 | |||
a4115245fe | |||
e1a893874a | |||
dd383ef1b2 | |||
b6e2cb71bb | |||
048e686185 |
@ -1,4 +1,4 @@
|
|||||||
image: node:10-alpine
|
image: node:16-alpine
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- test
|
- test
|
||||||
|
88
Makefile
88
Makefile
@ -1,20 +1,30 @@
|
|||||||
.PHONY: all install-js watch-js build-js collect-files pack publish-beta publish-latest lint test test-js-update-snapshots create-messages update-messages docs docs-watch clean
|
# Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/)
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v3.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
|
||||||
|
PROJECT="Foris JS"
|
||||||
|
# Retrieve Foris JS version from package.json
|
||||||
|
VERSION= $(shell sed -En "s/.*version['\"]: ['\"](.+)['\"].*/\1/p" package.json)
|
||||||
|
COPYRIGHT_HOLDER="CZ.NIC, z.s.p.o. (https://www.nic.cz/)"
|
||||||
|
MSGID_BUGS_ADDRESS="tech.support@turris.cz"
|
||||||
|
|
||||||
DEV_PYTHON=python3
|
DEV_PYTHON=python3
|
||||||
VENV_NAME?=venv
|
VENV_NAME?=venv
|
||||||
VENV_BIN=$(shell pwd)/$(VENV_NAME)/bin
|
VENV_BIN=$(shell pwd)/$(VENV_NAME)/bin
|
||||||
|
|
||||||
|
.PHONY: all
|
||||||
all:
|
all:
|
||||||
@echo "make install-js"
|
@echo "make install-js"
|
||||||
@echo " Install dependencies"
|
@echo " Install npm dependencies."
|
||||||
@echo "make watch-js"
|
@echo "make lint"
|
||||||
@echo " Compile JS in watch mode."
|
@echo " Run linter on the project."
|
||||||
@echo "make build-js"
|
@echo "make test"
|
||||||
@echo " Compile JS."
|
@echo " Run tests on the project."
|
||||||
@echo "make lint-js"
|
@echo "make test-js-watch"
|
||||||
@echo " Run linter"
|
@echo " Run tests on the project in watch mode."
|
||||||
@echo "make test-js"
|
@echo "make test-js-update-snapshots"
|
||||||
@echo " Run tests"
|
@echo " Update snapshots."
|
||||||
@echo "make create-messages"
|
@echo "make create-messages"
|
||||||
@echo " Create locale messages (.pot)."
|
@echo " Create locale messages (.pot)."
|
||||||
@echo "make update-messages"
|
@echo "make update-messages"
|
||||||
@ -26,43 +36,93 @@ all:
|
|||||||
@echo "make clean"
|
@echo "make clean"
|
||||||
@echo " Remove python artifacts and virtualenv."
|
@echo " Remove python artifacts and virtualenv."
|
||||||
|
|
||||||
|
|
||||||
|
# Preparation
|
||||||
|
|
||||||
|
.PHONY: venv
|
||||||
venv: $(VENV_NAME)/bin/activate
|
venv: $(VENV_NAME)/bin/activate
|
||||||
$(VENV_NAME)/bin/activate:
|
$(VENV_NAME)/bin/activate:
|
||||||
test -d $(VENV_NAME) || $(DEV_PYTHON) -m virtualenv -p $(DEV_PYTHON) $(VENV_NAME)
|
test -d $(VENV_NAME) || $(DEV_PYTHON) -m virtualenv -p $(DEV_PYTHON) $(VENV_NAME)
|
||||||
$(VENV_BIN)/$(DEV_PYTHON) -m pip install -r requirements.txt
|
$(VENV_BIN)/$(DEV_PYTHON) -m pip install -r requirements.txt
|
||||||
touch $(VENV_NAME)/bin/activate
|
touch $(VENV_NAME)/bin/activate
|
||||||
|
|
||||||
|
|
||||||
|
# Installation
|
||||||
|
|
||||||
|
.PHONY: install-js
|
||||||
install-js: package.json
|
install-js: package.json
|
||||||
npm install --save-dev
|
npm install --save-dev
|
||||||
|
|
||||||
|
|
||||||
|
# Publishing
|
||||||
|
|
||||||
|
.PHONY: collect-files
|
||||||
collect-files:
|
collect-files:
|
||||||
sh scripts/collect_files.sh
|
sh scripts/collect_files.sh
|
||||||
|
|
||||||
|
.PHONY: pack
|
||||||
pack: collect-files
|
pack: collect-files
|
||||||
cd dist && npm pack
|
cd dist && npm pack
|
||||||
|
|
||||||
|
.PHONY: publish-beta
|
||||||
publish-beta: collect-files
|
publish-beta: collect-files
|
||||||
sh scripts/publish.sh beta
|
sh scripts/publish.sh beta
|
||||||
|
|
||||||
|
.PHONY: publish-latest
|
||||||
publish-latest: collect-files
|
publish-latest: collect-files
|
||||||
sh scripts/publish.sh latest
|
sh scripts/publish.sh latest
|
||||||
|
|
||||||
|
|
||||||
|
# Linting
|
||||||
|
|
||||||
|
.PHONY: lint
|
||||||
lint:
|
lint:
|
||||||
npm run lint
|
npm run lint
|
||||||
|
|
||||||
|
.PHONY: lint-js-fix
|
||||||
lint-js-fix:
|
lint-js-fix:
|
||||||
npm run lint:fix
|
npm run lint:fix
|
||||||
|
|
||||||
|
|
||||||
|
# Testing
|
||||||
|
|
||||||
|
.PHONY: test
|
||||||
test:
|
test:
|
||||||
npm test
|
npm test
|
||||||
|
|
||||||
|
.PHONY: test-js-watch
|
||||||
|
test-js-watch:
|
||||||
|
cd $(JS_DIR); npm test -- --watch
|
||||||
|
|
||||||
|
.PHONY: test-js-update-snapshots
|
||||||
test-js-update-snapshots:
|
test-js-update-snapshots:
|
||||||
npm test -- -u
|
npm test -- -u
|
||||||
|
|
||||||
create-messages: venv
|
|
||||||
$(VENV_BIN)/pybabel extract -F babel.cfg -o ./translations/forisjs.pot .
|
|
||||||
update-messages: venv
|
|
||||||
$(VENV_BIN)/pybabel update -i ./translations/forisjs.pot -d ./translations -D forisjs
|
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
|
||||||
|
.PHONY: create-messages
|
||||||
|
create-messages: venv
|
||||||
|
$(VENV_BIN)/pybabel extract -F babel.cfg -o ./translations/forisjs.pot . --project=$(PROJECT) --version=$(VERSION) --copyright-holder=$(COPYRIGHT_HOLDER) --msgid-bugs-address=$(MSGID_BUGS_ADDRESS)
|
||||||
|
|
||||||
|
.PHONY: update-messages
|
||||||
|
update-messages: venv
|
||||||
|
$(VENV_BIN)/pybabel update -i ./translations/forisjs.pot -d ./translations -D forisjs --update-header-comment
|
||||||
|
|
||||||
|
|
||||||
|
# Documentation
|
||||||
|
|
||||||
|
.PHONY: docs
|
||||||
docs:
|
docs:
|
||||||
npm run-script docs
|
npm run-script docs
|
||||||
|
|
||||||
|
.PHONY: docs-watch
|
||||||
docs-watch:
|
docs-watch:
|
||||||
npm run-script docs:watch
|
npm run-script docs:watch
|
||||||
|
|
||||||
|
|
||||||
|
# Other
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -rf node_modules dist
|
rm -rf node_modules dist
|
||||||
|
24171
package-lock.json
generated
24171
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "foris",
|
"name": "foris",
|
||||||
"version": "5.2.0",
|
"version": "5.4.0",
|
||||||
"description": "Set of components and utils for Foris and its plugins.",
|
"description": "Set of components and utils for Foris and its plugins.",
|
||||||
"author": "CZ.NIC, z.s.p.o.",
|
"author": "CZ.NIC, z.s.p.o.",
|
||||||
"repository": {
|
"repository": {
|
||||||
@ -17,8 +17,8 @@
|
|||||||
"axios": "^0.21.1",
|
"axios": "^0.21.1",
|
||||||
"immutability-helper": "3.0.1",
|
"immutability-helper": "3.0.1",
|
||||||
"moment": "^2.24.0",
|
"moment": "^2.24.0",
|
||||||
"qrcode.react": "^0.9.3",
|
"qrcode.react": "^1.0.1",
|
||||||
"react-datetime": "^3.0.4",
|
"react-datetime": "^3.1.1",
|
||||||
"react-uid": "^2.2.0"
|
"react-uid": "^2.2.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
@ -47,16 +47,16 @@
|
|||||||
"file-loader": "^6.0.0",
|
"file-loader": "^6.0.0",
|
||||||
"jest": "^25.2.0",
|
"jest": "^25.2.0",
|
||||||
"jest-mock-axios": "^3.2.0",
|
"jest-mock-axios": "^3.2.0",
|
||||||
"moment-timezone": "^0.5.28",
|
"moment-timezone": "^0.5.34",
|
||||||
"prettier": "2.0.5",
|
"prettier": "2.0.5",
|
||||||
"prop-types": "15.7.2",
|
"prop-types": "15.7.2",
|
||||||
"react": "16.9.0",
|
"react": "16.9.0",
|
||||||
"react-dom": "16.9.0",
|
"react-dom": "16.9.0",
|
||||||
"react-router-dom": "^5.1.2",
|
"react-router-dom": "^5.1.2",
|
||||||
"react-styleguidist": "^7.3.11",
|
"react-styleguidist": "^11.2.0",
|
||||||
"snapshot-diff": "^0.7.0",
|
"snapshot-diff": "^0.7.0",
|
||||||
"style-loader": "^1.2.1",
|
"style-loader": "^1.2.1",
|
||||||
"webpack": "^5.15.0"
|
"webpack": "^5.68.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "eslint src",
|
"lint": "eslint src",
|
||||||
|
@ -6,8 +6,7 @@ then
|
|||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
cd dist
|
cd dist
|
||||||
# Need to replace "_" with "-" as GitLab CI won't accept secret vars with "-"
|
echo "//registry.npmjs.org/:_authToken=$(echo "$NPM_TOKEN")" > .npmrc
|
||||||
echo "//registry.npmjs.org/:_authToken=$(echo "$NPM_TOKEN" | tr _ -)" > .npmrc
|
|
||||||
echo "unsafe-perm = true" >> ~/.npmrc
|
echo "unsafe-perm = true" >> ~/.npmrc
|
||||||
if test "$1" = "beta"
|
if test "$1" = "beta"
|
||||||
then
|
then
|
||||||
|
60
src/bootstrap/CopyInput.js
Normal file
60
src/bootstrap/CopyInput.js
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/)
|
||||||
|
*
|
||||||
|
* This is free software, licensed under the GNU General Public License v3.
|
||||||
|
* See /LICENSE for more information.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import React, { useState, useRef } from "react";
|
||||||
|
import PropTypes from "prop-types";
|
||||||
|
import { Input } from "./Input";
|
||||||
|
|
||||||
|
CopyInput.propTypes = {
|
||||||
|
/** Field label. */
|
||||||
|
label: PropTypes.string.isRequired,
|
||||||
|
/** Field value. */
|
||||||
|
value: PropTypes.string,
|
||||||
|
/** Help text message. */
|
||||||
|
helpText: PropTypes.string,
|
||||||
|
/** Disable input field */
|
||||||
|
disabled: PropTypes.bool,
|
||||||
|
/** Readonly input field */
|
||||||
|
readOnly: PropTypes.bool,
|
||||||
|
};
|
||||||
|
|
||||||
|
export function CopyInput({ value, ...props }) {
|
||||||
|
const inputTextRef = useRef();
|
||||||
|
const [isCopied, setIsCopied] = useState(false);
|
||||||
|
|
||||||
|
const handleCopyClick = async () => {
|
||||||
|
// Clipboard API works only in a secure (HTTPS) context.
|
||||||
|
if (navigator.clipboard) {
|
||||||
|
await navigator.clipboard.writeText(value);
|
||||||
|
} else {
|
||||||
|
// Fallback to the "classic" copy to clipboard implementation.
|
||||||
|
inputTextRef.current.focus();
|
||||||
|
inputTextRef.current.select();
|
||||||
|
document.execCommand("copy");
|
||||||
|
inputTextRef.current.blur();
|
||||||
|
}
|
||||||
|
|
||||||
|
setIsCopied(true);
|
||||||
|
setTimeout(() => {
|
||||||
|
setIsCopied(false);
|
||||||
|
}, 1500);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Input type="text" value={value} ref={inputTextRef} {...props}>
|
||||||
|
<div className="input-group-append">
|
||||||
|
<button
|
||||||
|
className="btn btn-outline-secondary"
|
||||||
|
type="button"
|
||||||
|
onClick={handleCopyClick}
|
||||||
|
>
|
||||||
|
<span>{isCopied ? _("Copied!") : _("Copy")}</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</Input>
|
||||||
|
);
|
||||||
|
}
|
17
src/bootstrap/CopyInput.md
Normal file
17
src/bootstrap/CopyInput.md
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
CopyInput Bootstrap component contains input with a label, predefined sizes, and
|
||||||
|
structure for use in ForisForm and the "Copy" button (copy to clipboard). It can
|
||||||
|
be used with `readOnly` and `disabled` parameters, please see an example.
|
||||||
|
|
||||||
|
All additional `props` are passed to the `<input type="text">` HTML component.
|
||||||
|
|
||||||
|
```js
|
||||||
|
import React, { useState } from "react";
|
||||||
|
const [value, setValue] = useState("Text to appear in clipboard.");
|
||||||
|
|
||||||
|
<CopyInput
|
||||||
|
label="Copy me"
|
||||||
|
value={value}
|
||||||
|
helpText="Read the small text!"
|
||||||
|
readOnly
|
||||||
|
/>;
|
||||||
|
```
|
@ -21,9 +21,14 @@ DownloadButton.defaultProps = {
|
|||||||
className: "btn-primary",
|
className: "btn-primary",
|
||||||
};
|
};
|
||||||
|
|
||||||
export function DownloadButton({ href, className, children }) {
|
export function DownloadButton({ href, className, children, ...props }) {
|
||||||
return (
|
return (
|
||||||
<a href={href} className={`btn ${className}`.trim()} download>
|
<a
|
||||||
|
href={href}
|
||||||
|
className={`btn ${className}`.trim()}
|
||||||
|
{...props}
|
||||||
|
download
|
||||||
|
>
|
||||||
{children}
|
{children}
|
||||||
</a>
|
</a>
|
||||||
);
|
);
|
||||||
|
@ -1,14 +1,60 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/)
|
||||||
*
|
*
|
||||||
* This is free software, licensed under the GNU General Public License v3.
|
* This is free software, licensed under the GNU General Public License v3.
|
||||||
* See /LICENSE for more information.
|
* See /LICENSE for more information.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import React from "react";
|
import React, { forwardRef } from "react";
|
||||||
import { useUID } from "react-uid";
|
import { useUID } from "react-uid";
|
||||||
import PropTypes from "prop-types";
|
import PropTypes from "prop-types";
|
||||||
|
|
||||||
|
/** Base bootstrap input component. */
|
||||||
|
export const Input = forwardRef(
|
||||||
|
(
|
||||||
|
{
|
||||||
|
type,
|
||||||
|
label,
|
||||||
|
helpText,
|
||||||
|
error,
|
||||||
|
className,
|
||||||
|
children,
|
||||||
|
labelClassName,
|
||||||
|
groupClassName,
|
||||||
|
...props
|
||||||
|
},
|
||||||
|
ref
|
||||||
|
) => {
|
||||||
|
const uid = useUID();
|
||||||
|
|
||||||
|
const inputClassName = `form-control ${className || ""} ${
|
||||||
|
error ? "is-invalid" : ""
|
||||||
|
}`.trim();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="form-group">
|
||||||
|
<label className={labelClassName} htmlFor={uid}>
|
||||||
|
{label}
|
||||||
|
</label>
|
||||||
|
<div className={`input-group ${groupClassName || ""}`.trim()}>
|
||||||
|
<input
|
||||||
|
className={inputClassName}
|
||||||
|
type={type}
|
||||||
|
id={uid}
|
||||||
|
ref={ref}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
|
{error ? <div className="invalid-feedback">{error}</div> : null}
|
||||||
|
{helpText ? (
|
||||||
|
<small className="form-text text-muted">{helpText}</small>
|
||||||
|
) : null}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
Input.propTypes = {
|
Input.propTypes = {
|
||||||
type: PropTypes.string.isRequired,
|
type: PropTypes.string.isRequired,
|
||||||
label: PropTypes.string.isRequired,
|
label: PropTypes.string.isRequired,
|
||||||
@ -22,41 +68,3 @@ Input.propTypes = {
|
|||||||
labelClassName: PropTypes.string,
|
labelClassName: PropTypes.string,
|
||||||
groupClassName: PropTypes.string,
|
groupClassName: PropTypes.string,
|
||||||
};
|
};
|
||||||
|
|
||||||
/** Base bootstrap input component. */
|
|
||||||
export function Input({
|
|
||||||
type,
|
|
||||||
label,
|
|
||||||
helpText,
|
|
||||||
error,
|
|
||||||
className,
|
|
||||||
children,
|
|
||||||
labelClassName,
|
|
||||||
groupClassName,
|
|
||||||
...props
|
|
||||||
}) {
|
|
||||||
const uid = useUID();
|
|
||||||
const inputClassName = `form-control ${className || ""} ${
|
|
||||||
error ? "is-invalid" : ""
|
|
||||||
}`.trim();
|
|
||||||
return (
|
|
||||||
<div className="form-group">
|
|
||||||
<label className={labelClassName} htmlFor={uid}>
|
|
||||||
{label}
|
|
||||||
</label>
|
|
||||||
<div className={`input-group ${groupClassName || ""}`.trim()}>
|
|
||||||
<input
|
|
||||||
className={inputClassName}
|
|
||||||
type={type}
|
|
||||||
id={uid}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
{children}
|
|
||||||
</div>
|
|
||||||
{error ? <div className="invalid-feedback">{error}</div> : null}
|
|
||||||
{helpText ? (
|
|
||||||
<small className="form-text text-muted">{helpText}</small>
|
|
||||||
) : null}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/)
|
||||||
*
|
*
|
||||||
* This is free software, licensed under the GNU General Public License v3.
|
* This is free software, licensed under the GNU General Public License v3.
|
||||||
* See /LICENSE for more information.
|
* See /LICENSE for more information.
|
||||||
@ -21,14 +21,17 @@ PasswordInput.propTypes = {
|
|||||||
helpText: PropTypes.string,
|
helpText: PropTypes.string,
|
||||||
/** Use show/hide password button. */
|
/** Use show/hide password button. */
|
||||||
withEye: PropTypes.bool,
|
withEye: PropTypes.bool,
|
||||||
|
/** Use new-password in autocomplete attribute. */
|
||||||
|
newPass: PropTypes.bool,
|
||||||
};
|
};
|
||||||
|
|
||||||
export function PasswordInput({ withEye, ...props }) {
|
export function PasswordInput({ withEye, newPass, ...props }) {
|
||||||
const [isHidden, setHidden] = useState(true);
|
const [isHidden, setHidden] = useState(true);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Input
|
<Input
|
||||||
type={withEye && !isHidden ? "text" : "password"}
|
type={withEye && !isHidden ? "text" : "password"}
|
||||||
autoComplete={isHidden ? "new-password" : null}
|
autoComplete={newPass ? "new-password" : "current-password"}
|
||||||
{...props}
|
{...props}
|
||||||
>
|
>
|
||||||
{withEye ? (
|
{withEye ? (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/)
|
||||||
*
|
*
|
||||||
* This is free software, licensed under the GNU General Public License v3.
|
* This is free software, licensed under the GNU General Public License v3.
|
||||||
* See /LICENSE for more information.
|
* See /LICENSE for more information.
|
||||||
@ -18,20 +18,14 @@ Select.propTypes = {
|
|||||||
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
|
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
|
||||||
/** Help text message. */
|
/** Help text message. */
|
||||||
helpText: PropTypes.string,
|
helpText: PropTypes.string,
|
||||||
/** Turns on/off alphabetical ordering of the Select options. */
|
|
||||||
customOrder: PropTypes.bool,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export function Select({ label, choices, helpText, customOrder, ...props }) {
|
export function Select({ label, choices, helpText, ...props }) {
|
||||||
const uid = useUID();
|
const uid = useUID();
|
||||||
|
|
||||||
const keys = Object.keys(choices);
|
const options = Object.keys(choices).map((choice) => (
|
||||||
if (!customOrder) {
|
<option key={choice} value={choice}>
|
||||||
keys.sort((a, b) => a - b || a.toString().localeCompare(b.toString()));
|
{choices[choice]}
|
||||||
}
|
|
||||||
const options = keys.map((key) => (
|
|
||||||
<option key={key} value={key}>
|
|
||||||
{choices[key]}
|
|
||||||
</option>
|
</option>
|
||||||
));
|
));
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ exports[`<PasswordInput/> Render password input 1`] = `
|
|||||||
class="input-group"
|
class="input-group"
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
autocomplete="new-password"
|
autocomplete="current-password"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="1"
|
id="1"
|
||||||
type="password"
|
type="password"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/)
|
||||||
*
|
*
|
||||||
* This is free software, licensed under the GNU General Public License v3.
|
* This is free software, licensed under the GNU General Public License v3.
|
||||||
* See /LICENSE for more information.
|
* See /LICENSE for more information.
|
||||||
@ -54,9 +54,9 @@ export function ResetWiFiSettings({ ws, endpoint }) {
|
|||||||
<div className={formFieldsSize}>
|
<div className={formFieldsSize}>
|
||||||
<h2>{_("Reset Wi-Fi Settings")}</h2>
|
<h2>{_("Reset Wi-Fi Settings")}</h2>
|
||||||
<p>
|
<p>
|
||||||
{_(`If a number of wireless cards doesn't match, you may try \
|
{_(
|
||||||
to reset the Wi-Fi settings. Note that this will remove the current Wi-Fi \
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-Fi settings. Note that this will remove the current Wi-Fi configuration and restore the default values."
|
||||||
configuration and restore the default values.`)}
|
)}
|
||||||
</p>
|
</p>
|
||||||
<div className="text-right">
|
<div className="text-right">
|
||||||
<Button
|
<Button
|
||||||
|
@ -64,6 +64,7 @@ DeviceForm.propTypes = {
|
|||||||
channel: PropTypes.string.isRequired,
|
channel: PropTypes.string.isRequired,
|
||||||
guest_wifi: PropTypes.object.isRequired,
|
guest_wifi: PropTypes.object.isRequired,
|
||||||
encryption: PropTypes.string.isRequired,
|
encryption: PropTypes.string.isRequired,
|
||||||
|
available_bands: PropTypes.array.isRequired,
|
||||||
}),
|
}),
|
||||||
formErrors: PropTypes.object.isRequired,
|
formErrors: PropTypes.object.isRequired,
|
||||||
setFormValue: PropTypes.func.isRequired,
|
setFormValue: PropTypes.func.isRequired,
|
||||||
@ -87,6 +88,7 @@ function DeviceForm({
|
|||||||
...props
|
...props
|
||||||
}) {
|
}) {
|
||||||
const deviceID = formData.id;
|
const deviceID = formData.id;
|
||||||
|
const bnds = formData.available_bands;
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Switch
|
<Switch
|
||||||
@ -159,23 +161,29 @@ function DeviceForm({
|
|||||||
value={formData.hwmode}
|
value={formData.hwmode}
|
||||||
helpText={HELP_TEXTS.hwmode}
|
helpText={HELP_TEXTS.hwmode}
|
||||||
inline
|
inline
|
||||||
onChange={setFormValue((value) => ({
|
onChange={setFormValue((value) => {
|
||||||
devices: {
|
// Get the last item in an array of available HT modes
|
||||||
[deviceIndex]: {
|
const [best2] = bnds[0].available_htmodes.slice(-1);
|
||||||
hwmode: { $set: value },
|
const [best5] = bnds[1].available_htmodes.slice(-1);
|
||||||
channel: { $set: "0" },
|
return {
|
||||||
htmode: {
|
devices: {
|
||||||
$set:
|
[deviceIndex]: {
|
||||||
value === "11a" ? "VHT80" : "HT20",
|
hwmode: { $set: value },
|
||||||
|
channel: { $set: "0" },
|
||||||
|
htmode: {
|
||||||
|
$set:
|
||||||
|
// Set HT mode depending on checked frequency
|
||||||
|
value === "11a" ? best5 : best2,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
}))}
|
})}
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Select
|
<Select
|
||||||
label={_("802.11n/ac mode")}
|
label={_("802.11n/ac/ax mode")}
|
||||||
choices={getHtmodeChoices(formData)}
|
choices={getHtmodeChoices(formData)}
|
||||||
value={formData.htmode}
|
value={formData.htmode}
|
||||||
helpText={HELP_TEXTS.htmode}
|
helpText={HELP_TEXTS.htmode}
|
||||||
@ -209,7 +217,6 @@ function DeviceForm({
|
|||||||
[deviceIndex]: { encryption: { $set: value } },
|
[deviceIndex]: { encryption: { $set: value } },
|
||||||
},
|
},
|
||||||
}))}
|
}))}
|
||||||
customOrder
|
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
@ -82,6 +82,10 @@ export function validator(formData) {
|
|||||||
|
|
||||||
if (device.password.length < 8)
|
if (device.password.length < 8)
|
||||||
errors.password = _("Password must contain at least 8 symbols");
|
errors.password = _("Password must contain at least 8 symbols");
|
||||||
|
if (device.password.length >= 64)
|
||||||
|
errors.password = _(
|
||||||
|
"Password must not contain more than 63 symbols"
|
||||||
|
);
|
||||||
|
|
||||||
if (!device.guest_wifi.enabled) return errors;
|
if (!device.guest_wifi.enabled) return errors;
|
||||||
|
|
||||||
@ -97,6 +101,10 @@ export function validator(formData) {
|
|||||||
guest_wifi_errors.password = _(
|
guest_wifi_errors.password = _(
|
||||||
"Password must contain at least 8 symbols"
|
"Password must contain at least 8 symbols"
|
||||||
);
|
);
|
||||||
|
if (device.guest_wifi.password.length >= 64)
|
||||||
|
guest_wifi_errors.password = _(
|
||||||
|
"Password must not contain more than 63 symbols"
|
||||||
|
);
|
||||||
|
|
||||||
if (guest_wifi_errors.SSID || guest_wifi_errors.password) {
|
if (guest_wifi_errors.SSID || guest_wifi_errors.password) {
|
||||||
errors.guest_wifi = guest_wifi_errors;
|
errors.guest_wifi = guest_wifi_errors;
|
||||||
|
@ -26,6 +26,7 @@ describe("<WiFiSettings/>", () => {
|
|||||||
let getAllByText;
|
let getAllByText;
|
||||||
let getAllByLabelText;
|
let getAllByLabelText;
|
||||||
let getByText;
|
let getByText;
|
||||||
|
let getByLabelText;
|
||||||
let asFragment;
|
let asFragment;
|
||||||
const endpoint = "/reforis/api/wifi";
|
const endpoint = "/reforis/api/wifi";
|
||||||
|
|
||||||
@ -41,6 +42,7 @@ describe("<WiFiSettings/>", () => {
|
|||||||
asFragment = renderRes.asFragment;
|
asFragment = renderRes.asFragment;
|
||||||
getAllByText = renderRes.getAllByText;
|
getAllByText = renderRes.getAllByText;
|
||||||
getAllByLabelText = renderRes.getAllByLabelText;
|
getAllByLabelText = renderRes.getAllByLabelText;
|
||||||
|
getByLabelText = renderRes.getByLabelText;
|
||||||
getByText = renderRes.getByText;
|
getByText = renderRes.getByText;
|
||||||
mockAxios.mockResponse({ data: wifiSettingsFixture() });
|
mockAxios.mockResponse({ data: wifiSettingsFixture() });
|
||||||
await wait(() => renderRes.getByText("Wi-Fi 1"));
|
await wait(() => renderRes.getByText("Wi-Fi 1"));
|
||||||
@ -51,7 +53,6 @@ describe("<WiFiSettings/>", () => {
|
|||||||
const webSockets = new WebSockets();
|
const webSockets = new WebSockets();
|
||||||
const { getByText } = render(
|
const { getByText } = render(
|
||||||
<WiFiSettings
|
<WiFiSettings
|
||||||
ws={webSockets}
|
|
||||||
ws={webSockets}
|
ws={webSockets}
|
||||||
endpoint={endpoint}
|
endpoint={endpoint}
|
||||||
resetEndpoint="foo"
|
resetEndpoint="foo"
|
||||||
@ -146,7 +147,7 @@ describe("<WiFiSettings/>", () => {
|
|||||||
enabled: true,
|
enabled: true,
|
||||||
guest_wifi: { enabled: false },
|
guest_wifi: { enabled: false },
|
||||||
hidden: false,
|
hidden: false,
|
||||||
htmode: "HT20",
|
htmode: "VHT80",
|
||||||
hwmode: "11g",
|
hwmode: "11g",
|
||||||
id: 0,
|
id: 0,
|
||||||
password: "TestPass",
|
password: "TestPass",
|
||||||
@ -220,4 +221,24 @@ describe("<WiFiSettings/>", () => {
|
|||||||
it("ByteCount function", () => {
|
it("ByteCount function", () => {
|
||||||
expect(byteCount("abc")).toEqual(3);
|
expect(byteCount("abc")).toEqual(3);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("Should validate password length", () => {
|
||||||
|
const shortErrorFeedback = /Password must contain/i;
|
||||||
|
const longErrorFeedback = /Password must not contain/i;
|
||||||
|
|
||||||
|
fireEvent.click(getByText("Wi-Fi 1"));
|
||||||
|
|
||||||
|
const passwordInput = getByLabelText("Password");
|
||||||
|
|
||||||
|
const changePassword = (value) =>
|
||||||
|
fireEvent.change(passwordInput, { target: { value } });
|
||||||
|
|
||||||
|
changePassword("12");
|
||||||
|
expect(getByText(shortErrorFeedback)).toBeDefined();
|
||||||
|
|
||||||
|
changePassword(
|
||||||
|
"longpasswordlongpasswordlongpasswordlongpasswordlongpasswordlong"
|
||||||
|
);
|
||||||
|
expect(getByText(longErrorFeedback)).toBeDefined();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
@ -5,7 +5,7 @@ exports[`<WiFiSettings/> Snapshot 2.4 GHz 1`] = `
|
|||||||
- First value
|
- First value
|
||||||
+ Second value
|
+ Second value
|
||||||
|
|
||||||
@@ -250,207 +250,95 @@
|
@@ -241,207 +241,95 @@
|
||||||
value=\\"0\\"
|
value=\\"0\\"
|
||||||
>
|
>
|
||||||
auto
|
auto
|
||||||
@ -337,9 +337,9 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
|
|||||||
- First value
|
- First value
|
||||||
+ Second value
|
+ Second value
|
||||||
|
|
||||||
@@ -513,10 +513,94 @@
|
@@ -500,10 +500,92 @@
|
||||||
Parameters of the guest network can be set in the Guest network tab.
|
>
|
||||||
|
Enables Wi-Fi for guests, which is separated from LAN network. Devices connected to this network are allowed to access the internet, but aren't allowed to access other devices and the configuration interface of the router. Parameters of the guest network can be set in the Guest network tab.
|
||||||
</small>
|
</small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -394,7 +394,7 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
|
|||||||
+ class=\\"input-group\\"
|
+ class=\\"input-group\\"
|
||||||
+ >
|
+ >
|
||||||
+ <input
|
+ <input
|
||||||
+ autocomplete=\\"new-password\\"
|
+ autocomplete=\\"current-password\\"
|
||||||
+ class=\\"form-control is-invalid\\"
|
+ class=\\"form-control is-invalid\\"
|
||||||
+ id=\\"23\\"
|
+ id=\\"23\\"
|
||||||
+ required=\\"\\"
|
+ required=\\"\\"
|
||||||
@ -422,9 +422,7 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
|
|||||||
+ <small
|
+ <small
|
||||||
+ class=\\"form-text text-muted\\"
|
+ class=\\"form-text text-muted\\"
|
||||||
+ >
|
+ >
|
||||||
+
|
+ WPA2/3 pre-shared key, that is required to connect to the network.
|
||||||
+ WPA2 pre-shared key, that is required to connect to the network.
|
|
||||||
+
|
|
||||||
+ </small>
|
+ </small>
|
||||||
+ </div>
|
+ </div>
|
||||||
<hr />
|
<hr />
|
||||||
@ -432,7 +430,7 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
|
|||||||
class=\\"form-group switch\\"
|
class=\\"form-group switch\\"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
@@ -540,10 +624,11 @@
|
@@ -527,10 +609,11 @@
|
||||||
<div
|
<div
|
||||||
class=\\"text-right\\"
|
class=\\"text-right\\"
|
||||||
>
|
>
|
||||||
@ -451,7 +449,7 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
|
|||||||
- First value
|
- First value
|
||||||
+ Second value
|
+ Second value
|
||||||
|
|
||||||
@@ -22,10 +22,501 @@
|
@@ -22,10 +22,488 @@
|
||||||
Wi-Fi 1
|
Wi-Fi 1
|
||||||
</h2>
|
</h2>
|
||||||
</label>
|
</label>
|
||||||
@ -509,7 +507,7 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
|
|||||||
+ class=\\"input-group\\"
|
+ class=\\"input-group\\"
|
||||||
+ >
|
+ >
|
||||||
+ <input
|
+ <input
|
||||||
+ autocomplete=\\"new-password\\"
|
+ autocomplete=\\"current-password\\"
|
||||||
+ class=\\"form-control\\"
|
+ class=\\"form-control\\"
|
||||||
+ id=\\"5\\"
|
+ id=\\"5\\"
|
||||||
+ required=\\"\\"
|
+ required=\\"\\"
|
||||||
@ -532,9 +530,7 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
|
|||||||
+ <small
|
+ <small
|
||||||
+ class=\\"form-text text-muted\\"
|
+ class=\\"form-text text-muted\\"
|
||||||
+ >
|
+ >
|
||||||
+
|
+ WPA2/3 pre-shared key, that is required to connect to the network.
|
||||||
+ WPA2 pre-shared key, that is required to connect to the network.
|
|
||||||
+
|
|
||||||
+ </small>
|
+ </small>
|
||||||
+ </div>
|
+ </div>
|
||||||
+ <div
|
+ <div
|
||||||
@ -608,10 +604,7 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
|
|||||||
+ <small
|
+ <small
|
||||||
+ class=\\"form-text text-muted\\"
|
+ class=\\"form-text text-muted\\"
|
||||||
+ >
|
+ >
|
||||||
+
|
+ The 2.4 GHz band is more widely supported by clients, but tends to have more interference. The 5 GHz band is a newer standard and may not be supported by all your devices. It usually has less interference, but the signal does not carry so well indoors.
|
||||||
+ The 2.4 GHz band is more widely supported by clients, but tends to have more interference. The 5 GHz band is a
|
|
||||||
+ newer standard and may not be supported by all your devices. It usually has less interference, but the signal
|
|
||||||
+ does not carry so well indoors.
|
|
||||||
+ </small>
|
+ </small>
|
||||||
+ </div>
|
+ </div>
|
||||||
+ <div
|
+ <div
|
||||||
@ -620,13 +613,18 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
|
|||||||
+ <label
|
+ <label
|
||||||
+ for=\\"8\\"
|
+ for=\\"8\\"
|
||||||
+ >
|
+ >
|
||||||
+ 802.11n/ac mode
|
+ 802.11n/ac/ax mode
|
||||||
+ </label>
|
+ </label>
|
||||||
+ <select
|
+ <select
|
||||||
+ class=\\"custom-select\\"
|
+ class=\\"custom-select\\"
|
||||||
+ id=\\"8\\"
|
+ id=\\"8\\"
|
||||||
+ >
|
+ >
|
||||||
+ <option
|
+ <option
|
||||||
|
+ value=\\"NOHT\\"
|
||||||
|
+ >
|
||||||
|
+ Disabled
|
||||||
|
+ </option>
|
||||||
|
+ <option
|
||||||
+ value=\\"HT20\\"
|
+ value=\\"HT20\\"
|
||||||
+ >
|
+ >
|
||||||
+ 802.11n - 20 MHz wide channel
|
+ 802.11n - 20 MHz wide channel
|
||||||
@ -637,11 +635,6 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
|
|||||||
+ 802.11n - 40 MHz wide channel
|
+ 802.11n - 40 MHz wide channel
|
||||||
+ </option>
|
+ </option>
|
||||||
+ <option
|
+ <option
|
||||||
+ value=\\"NOHT\\"
|
|
||||||
+ >
|
|
||||||
+ Disabled
|
|
||||||
+ </option>
|
|
||||||
+ <option
|
|
||||||
+ value=\\"VHT20\\"
|
+ value=\\"VHT20\\"
|
||||||
+ >
|
+ >
|
||||||
+ 802.11ac - 20 MHz wide channel
|
+ 802.11ac - 20 MHz wide channel
|
||||||
@ -660,11 +653,7 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
|
|||||||
+ <small
|
+ <small
|
||||||
+ class=\\"form-text text-muted\\"
|
+ class=\\"form-text text-muted\\"
|
||||||
+ >
|
+ >
|
||||||
+
|
+ Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 MHz wide channels can yield higher throughput but can cause more interference in the network. If you don't know what to choose, use the default option with 20 MHz wide channel.
|
||||||
+ Change this to adjust 802.11n/ac mode of operation. 802.11n with 40 MHz wide channels can yield higher
|
|
||||||
+ throughput but can cause more interference in the network. If you don't know what to choose, use the default
|
|
||||||
+ option with 20 MHz wide channel.
|
|
||||||
+
|
|
||||||
+ </small>
|
+ </small>
|
||||||
+ </div>
|
+ </div>
|
||||||
+ <div
|
+ <div
|
||||||
@ -940,11 +929,7 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
|
|||||||
+ <small
|
+ <small
|
||||||
+ class=\\"form-text text-muted mt-0 mb-3\\"
|
+ class=\\"form-text text-muted mt-0 mb-3\\"
|
||||||
+ >
|
+ >
|
||||||
+
|
+ Enables Wi-Fi for guests, which is separated from LAN network. Devices connected to this network are allowed to access the internet, but aren't allowed to access other devices and the configuration interface of the router. Parameters of the guest network can be set in the Guest network tab.
|
||||||
+ Enables Wi-Fi for guests, which is separated from LAN network. Devices connected to this network are allowed to
|
|
||||||
+ access the internet, but aren't allowed to access other devices and the configuration interface of the router.
|
|
||||||
+ Parameters of the guest network can be set in the Guest network tab.
|
|
||||||
+
|
|
||||||
+ </small>
|
+ </small>
|
||||||
+ </div>
|
+ </div>
|
||||||
+ </div>
|
+ </div>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/)
|
||||||
*
|
*
|
||||||
* This is free software, licensed under the GNU General Public License v3.
|
* This is free software, licensed under the GNU General Public License v3.
|
||||||
* See /LICENSE for more information.
|
* See /LICENSE for more information.
|
||||||
@ -13,6 +13,10 @@ export const HTMODES = {
|
|||||||
VHT40: _("802.11ac - 40 MHz wide channel"),
|
VHT40: _("802.11ac - 40 MHz wide channel"),
|
||||||
VHT80: _("802.11ac - 80 MHz wide channel"),
|
VHT80: _("802.11ac - 80 MHz wide channel"),
|
||||||
VHT160: _("802.11ac - 160 MHz wide channel"),
|
VHT160: _("802.11ac - 160 MHz wide channel"),
|
||||||
|
HE20: _("802.11ax - 20 MHz wide channel"),
|
||||||
|
HE40: _("802.11ax - 40 MHz wide channel"),
|
||||||
|
HE80: _("802.11ax - 80 MHz wide channel"),
|
||||||
|
HE160: _("802.11ax - 160 MHz wide channel"),
|
||||||
};
|
};
|
||||||
export const HWMODES = {
|
export const HWMODES = {
|
||||||
"11g": "2.4",
|
"11g": "2.4",
|
||||||
@ -25,28 +29,23 @@ export const ENCRYPTIONMODES = {
|
|||||||
};
|
};
|
||||||
export const HELP_TEXTS = {
|
export const HELP_TEXTS = {
|
||||||
ssid: _(
|
ssid: _(
|
||||||
`SSID which contains non-standard characters could cause problems on some devices.`
|
"SSID which contains non-standard characters could cause problems on some devices."
|
||||||
|
),
|
||||||
|
password: _(
|
||||||
|
"WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
),
|
),
|
||||||
password: _(`
|
|
||||||
WPA2 pre-shared key, that is required to connect to the network.
|
|
||||||
`),
|
|
||||||
hidden: _(
|
hidden: _(
|
||||||
"If set, network is not visible when scanning for available networks."
|
"If set, network is not visible when scanning for available networks."
|
||||||
),
|
),
|
||||||
hwmode: _(`
|
hwmode: _(
|
||||||
The 2.4 GHz band is more widely supported by clients, but tends to have more interference. The 5 GHz band is a
|
"The 2.4 GHz band is more widely supported by clients, but tends to have more interference. The 5 GHz band is a newer standard and may not be supported by all your devices. It usually has less interference, but the signal does not carry so well indoors."
|
||||||
newer standard and may not be supported by all your devices. It usually has less interference, but the signal
|
),
|
||||||
does not carry so well indoors.`),
|
htmode: _(
|
||||||
htmode: _(`
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 MHz wide channels can yield higher throughput but can cause more interference in the network. If you don't know what to choose, use the default option with 20 MHz wide channel."
|
||||||
Change this to adjust 802.11n/ac mode of operation. 802.11n with 40 MHz wide channels can yield higher
|
),
|
||||||
throughput but can cause more interference in the network. If you don't know what to choose, use the default
|
guest_wifi_enabled: _(
|
||||||
option with 20 MHz wide channel.
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices connected to this network are allowed to access the internet, but aren't allowed to access other devices and the configuration interface of the router. Parameters of the guest network can be set in the Guest network tab."
|
||||||
`),
|
),
|
||||||
guest_wifi_enabled: _(`
|
|
||||||
Enables Wi-Fi for guests, which is separated from LAN network. Devices connected to this network are allowed to
|
|
||||||
access the internet, but aren't allowed to access other devices and the configuration interface of the router.
|
|
||||||
Parameters of the guest network can be set in the Guest network tab.
|
|
||||||
`),
|
|
||||||
wpa3: _(
|
wpa3: _(
|
||||||
"The WPA3 standard is the new most secure encryption method that is suggested to be used with any device that supports it. The older devices without WPA3 support require older WPA2. If you experience issues with connecting older devices, try to enable WPA2."
|
"The WPA3 standard is the new most secure encryption method that is suggested to be used with any device that supports it. The older devices without WPA3 support require older WPA2. If you experience issues with connecting older devices, try to enable WPA2."
|
||||||
),
|
),
|
||||||
|
@ -1,16 +1,17 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/)
|
||||||
*
|
*
|
||||||
* This is free software, licensed under the GNU General Public License v3.
|
* This is free software, licensed under the GNU General Public License v3.
|
||||||
* See /LICENSE for more information.
|
* See /LICENSE for more information.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import {
|
import {
|
||||||
validateDomain,
|
|
||||||
validateDUID,
|
|
||||||
validateIPv4Address,
|
validateIPv4Address,
|
||||||
validateIPv6Address,
|
validateIPv6Address,
|
||||||
validateIPv6Prefix,
|
validateIPv6Prefix,
|
||||||
|
validateDomain,
|
||||||
|
validateHostname,
|
||||||
|
validateDUID,
|
||||||
validateMAC,
|
validateMAC,
|
||||||
} from "utils/validations";
|
} from "utils/validations";
|
||||||
|
|
||||||
@ -68,6 +69,15 @@ describe("Validation functions", () => {
|
|||||||
expect(validateDomain(".")).not.toBe(undefined);
|
expect(validateDomain(".")).not.toBe(undefined);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("validateHostname valid", () => {
|
||||||
|
expect(validateHostname("new-android")).toBe(undefined);
|
||||||
|
expect(validateHostname("local")).toBe(undefined);
|
||||||
|
});
|
||||||
|
it("validateHostname invalid", () => {
|
||||||
|
expect(validateHostname("-android")).not.toBe(undefined);
|
||||||
|
expect(validateHostname("local.")).not.toBe(undefined);
|
||||||
|
});
|
||||||
|
|
||||||
it("validateDUID valid", () => {
|
it("validateDUID valid", () => {
|
||||||
expect(validateDUID("abcdefAB")).toBe(undefined);
|
expect(validateDUID("abcdefAB")).toBe(undefined);
|
||||||
expect(validateDUID("ABCDEF12")).toBe(undefined);
|
expect(validateDUID("ABCDEF12")).toBe(undefined);
|
||||||
|
@ -20,6 +20,7 @@ export { API_STATE } from "./api/utils";
|
|||||||
export { Alert, ALERT_TYPES } from "./bootstrap/Alert";
|
export { Alert, ALERT_TYPES } from "./bootstrap/Alert";
|
||||||
export { Button } from "./bootstrap/Button";
|
export { Button } from "./bootstrap/Button";
|
||||||
export { CheckBox } from "./bootstrap/CheckBox";
|
export { CheckBox } from "./bootstrap/CheckBox";
|
||||||
|
export { CopyInput } from "./bootstrap/CopyInput";
|
||||||
export { DownloadButton } from "./bootstrap/DownloadButton";
|
export { DownloadButton } from "./bootstrap/DownloadButton";
|
||||||
export { DataTimeInput } from "./bootstrap/DataTimeInput";
|
export { DataTimeInput } from "./bootstrap/DataTimeInput";
|
||||||
export { EmailInput } from "./bootstrap/EmailInput";
|
export { EmailInput } from "./bootstrap/EmailInput";
|
||||||
@ -82,6 +83,7 @@ export {
|
|||||||
validateIPv6Address,
|
validateIPv6Address,
|
||||||
validateIPv6Prefix,
|
validateIPv6Prefix,
|
||||||
validateDomain,
|
validateDomain,
|
||||||
|
validateHostname,
|
||||||
validateDUID,
|
validateDUID,
|
||||||
validateMAC,
|
validateMAC,
|
||||||
validateMultipleEmails,
|
validateMultipleEmails,
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/)
|
||||||
*
|
*
|
||||||
* This is free software, licensed under the GNU General Public License v3.
|
* This is free software, licensed under the GNU General Public License v3.
|
||||||
* See /LICENSE for more information.
|
* See /LICENSE for more information.
|
||||||
@ -14,6 +14,7 @@ export const ERROR_MESSAGES = {
|
|||||||
IPv6: _("This is not a valid IPv6 address."),
|
IPv6: _("This is not a valid IPv6 address."),
|
||||||
IPv6Prefix: _("This is not a valid IPv6 prefix."),
|
IPv6Prefix: _("This is not a valid IPv6 prefix."),
|
||||||
domain: _("This is not a valid domain name."),
|
domain: _("This is not a valid domain name."),
|
||||||
|
hostname: _("This is not a valid hostname."),
|
||||||
DUID: _("This is not a valid DUID."),
|
DUID: _("This is not a valid DUID."),
|
||||||
MAC: _("This is not a valid MAC address."),
|
MAC: _("This is not a valid MAC address."),
|
||||||
MultipleEmails: _("Doesn't contain a list of emails separated by commas."),
|
MultipleEmails: _("Doesn't contain a list of emails separated by commas."),
|
||||||
@ -23,7 +24,8 @@ const REs = {
|
|||||||
IPv4: /^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,
|
IPv4: /^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,
|
||||||
IPv6: /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/,
|
IPv6: /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/,
|
||||||
IPv6Prefix: /^s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:)))(%.+)?s*(\/([0-9]|[1-9][0-9]|1[0-1][0-9]|12[0-8]))$/,
|
IPv6Prefix: /^s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:)))(%.+)?s*(\/([0-9]|[1-9][0-9]|1[0-1][0-9]|12[0-8]))$/,
|
||||||
domain: /^[A-Za-z0-9][A-Za-z0-9.-]{1,255}$/,
|
domain: /^([a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,}$/,
|
||||||
|
hostname: /^[a-z\d]([a-z\d-]{0,61}[a-z\d])?(\.[a-z\d]([a-z\d-]{0,61}[a-z\d])?)*$/i,
|
||||||
DUID: /^([0-9a-fA-F]{2}){4}([0-9a-fA-F]{2})*$/,
|
DUID: /^([0-9a-fA-F]{2}){4}([0-9a-fA-F]{2})*$/,
|
||||||
MAC: /^([a-fA-F0-9]{2}:){5}[a-fA-F0-9]{2}$/,
|
MAC: /^([a-fA-F0-9]{2}:){5}[a-fA-F0-9]{2}$/,
|
||||||
MultipleEmails: /^([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+ *)( *, *[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+ *)*$/,
|
MultipleEmails: /^([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+ *)( *, *[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+ *)*$/,
|
||||||
@ -40,6 +42,7 @@ const validateIPv4Address = createValidator("IPv4");
|
|||||||
const validateIPv6Address = createValidator("IPv6");
|
const validateIPv6Address = createValidator("IPv6");
|
||||||
const validateIPv6Prefix = createValidator("IPv6Prefix");
|
const validateIPv6Prefix = createValidator("IPv6Prefix");
|
||||||
const validateDomain = createValidator("domain");
|
const validateDomain = createValidator("domain");
|
||||||
|
const validateHostname = createValidator("hostname");
|
||||||
const validateDUID = createValidator("DUID");
|
const validateDUID = createValidator("DUID");
|
||||||
const validateMAC = createValidator("MAC");
|
const validateMAC = createValidator("MAC");
|
||||||
const validateMultipleEmails = createValidator("MultipleEmails");
|
const validateMultipleEmails = createValidator("MultipleEmails");
|
||||||
@ -49,6 +52,7 @@ export {
|
|||||||
validateIPv6Address,
|
validateIPv6Address,
|
||||||
validateIPv6Prefix,
|
validateIPv6Prefix,
|
||||||
validateDomain,
|
validateDomain,
|
||||||
|
validateHostname,
|
||||||
validateDUID,
|
validateDUID,
|
||||||
validateMAC,
|
validateMAC,
|
||||||
validateMultipleEmails,
|
validateMultipleEmails,
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2020-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
* Copyright (C) 2020-2022 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
||||||
*
|
*
|
||||||
* This is free software, licensed under the GNU General Public License v3.
|
* This is free software, licensed under the GNU General Public License v3.
|
||||||
* See /LICENSE for more information.
|
* See /LICENSE for more information.
|
||||||
@ -10,8 +10,10 @@
|
|||||||
const PROTOCOL = window.location.protocol === "http:" ? "ws" : "wss";
|
const PROTOCOL = window.location.protocol === "http:" ? "ws" : "wss";
|
||||||
|
|
||||||
const URL = process.env.LIGHTTPD
|
const URL = process.env.LIGHTTPD
|
||||||
? `${PROTOCOL}://${window.location.host}/foris-ws`
|
? `${PROTOCOL}://${window.location.host}/${
|
||||||
: `${PROTOCOL}://${window.location.hostname}:${9081}`;
|
process.env.WSPATH || "foris-ws"
|
||||||
|
}`
|
||||||
|
: `${PROTOCOL}://${window.location.hostname}:9081`;
|
||||||
|
|
||||||
const WAITING_FOR_CONNECTION_TIMEOUT = 500;
|
const WAITING_FOR_CONNECTION_TIMEOUT = 500;
|
||||||
|
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
# Czech translations for PROJECT.
|
# Czech translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2021-08-18 15:36+0000\n"
|
"PO-Revision-Date: 2022-03-15 22:41+0000\n"
|
||||||
"Last-Translator: Lukas Jelinek <lukas.jelinek@nic.cz>\n"
|
"Last-Translator: Koli <lukas.koluch@gmail.com>\n"
|
||||||
"Language: cs\n"
|
"Language: cs\n"
|
||||||
"Language-Team: Czech <https://hosted.weblate.org/projects/turris/foris-"
|
"Language-Team: Czech <https://hosted.weblate.org/projects/turris/foris-"
|
||||||
"js/cs/>\n"
|
"js/cs/>\n"
|
||||||
@ -35,6 +35,14 @@ msgstr "Neobdržena žádná odezva."
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr "Došlo k neznámé chybě v aplikačním programovém rozhraní."
|
msgstr "Došlo k neznámé chybě v aplikačním programovém rozhraní."
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr "Vyžadován restart."
|
msgstr "Vyžadován restart."
|
||||||
@ -72,36 +80,44 @@ msgstr "Nastavení Wi-Fi jsou uvedena do výchozího stavu."
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr "Resetovat nastavení Wi-Fi"
|
msgstr "Resetovat nastavení Wi-Fi"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr "Wi-Fi ${deviceID + 1}"
|
msgstr "Wi-Fi ${deviceID + 1}"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Heslo"
|
msgstr "Heslo"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr "Skrýt SSID"
|
msgstr "Skrýt SSID"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
#, fuzzy
|
||||||
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr "Režim 802.11n/ac"
|
msgstr "Režim 802.11n/ac"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr "Kanál"
|
msgstr "Kanál"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr "Šifrování"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr "automaticky"
|
msgstr "automaticky"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "automaticky"
|
msgstr "automaticky"
|
||||||
@ -119,25 +135,31 @@ msgid "Download PDF"
|
|||||||
msgstr "Stáhnout PDF"
|
msgstr "Stáhnout PDF"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr "SSID nemůže být delší než 32 znaků"
|
msgstr "SSID nemůže být delší než 32 znaků"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr "SSID je třeba vyplnit"
|
msgstr "SSID je třeba vyplnit"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr "SSID nemůže být delší než 32 bajtů"
|
msgstr "SSID nemůže být delší než 32 bajtů"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr "Je třeba, aby heslo obsahovalo alespoň 8 znaků"
|
msgstr "Je třeba, aby heslo obsahovalo alespoň 8 znaků"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr "Je třeba, aby heslo obsahovalo alespoň 8 znaků"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Vypnuto"
|
msgstr "Vypnuto"
|
||||||
@ -166,19 +188,39 @@ msgstr "802.11ac – kanál šíře 80 MHz"
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr "802.11ac – kanál šíře 160 MHz"
|
msgstr "802.11ac – kanál šíře 160 MHz"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
msgid "WPA3 only"
|
#, fuzzy
|
||||||
msgstr ""
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr "802.11ac – kanál šíře 20 MHz"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr "802.11ac – kanál šíře 40 MHz"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr "802.11ac – kanál šíře 80 MHz"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr "802.11ac – kanál šíře 160 MHz"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
|
msgid "WPA3 only"
|
||||||
|
msgstr "pouze WPA3"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr "pouze WPA2"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
@ -186,31 +228,28 @@ msgstr ""
|
|||||||
"SSID obsahující nestandardní znaky může na některých zařízení způsobovat "
|
"SSID obsahující nestandardní znaky může na některých zařízení způsobovat "
|
||||||
"problémy."
|
"problémy."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
#, fuzzy
|
||||||
"\n"
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" WPA2 předsdílený klíč, který je vyžadován pro připojení se k "
|
" WPA2 předsdílený klíč, který je vyžadován pro připojení se k "
|
||||||
"síti.\n"
|
"síti.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Při zapnutí této volby se síť nebude zobrazovat zařízením když budou "
|
"Při zapnutí této volby se síť nebude zobrazovat zařízením když budou "
|
||||||
"vyhledávat dostupné sítě."
|
"vyhledávat dostupné sítě."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" newer standard and may not be supported by all your devices. It "
|
"signal does not carry so well indoors."
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" Pásmo 2,4 GHz je v klientských zařízeních podporováno nejčastěji,"
|
" Pásmo 2,4 GHz je v klientských zařízeních podporováno nejčastěji,"
|
||||||
@ -219,15 +258,13 @@ msgstr ""
|
|||||||
"zařízeními. Obvykle bývá méně zarušené,\n"
|
"zařízeními. Obvykle bývá méně zarušené,\n"
|
||||||
" ale signál se hůře šíři uvnitř budov."
|
" ale signál se hůře šíři uvnitř budov."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"default option with 20 MHz wide channel."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" Změna tohoto upraví režim fungování 802.11n/ac. 802.11n s kanály "
|
" Změna tohoto upraví režim fungování 802.11n/ac. 802.11n s kanály "
|
||||||
@ -237,16 +274,14 @@ msgstr ""
|
|||||||
" 20 MHz.\n"
|
" 20 MHz.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
"Devices connected to this network are allowed to\n"
|
"allowed to access other devices and the configuration interface of the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
"and the configuration interface of the router.\n"
|
"tab."
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" Zapíná Wi-Fi pro hosty, která je oddělená od místní sítě (LAN). "
|
" Zapíná Wi-Fi pro hosty, která je oddělená od místní sítě (LAN). "
|
||||||
@ -257,7 +292,7 @@ msgstr ""
|
|||||||
"hosty“.\n"
|
"hosty“.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -308,14 +343,19 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr "Toto není platné doménové jméno."
|
msgstr "Toto není platné doménové jméno."
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "This is not a valid hostname."
|
||||||
|
msgstr "Toto není platné doménové jméno."
|
||||||
|
|
||||||
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid DUID."
|
||||||
msgstr "Tohle není platné DUID."
|
msgstr "Tohle není platné DUID."
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:19
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid MAC address."
|
||||||
msgstr "Toto není platná MAC adresa."
|
msgstr "Toto není platná MAC adresa."
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr "Neobsahuje seznam e-mailů oddělených čárkou."
|
msgstr "Neobsahuje seznam e-mailů oddělených čárkou."
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Danish translations for PROJECT.
|
# Danish translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language: da\n"
|
"Language: da\n"
|
||||||
@ -34,6 +34,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -71,36 +79,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -117,25 +132,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -164,69 +184,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -275,14 +300,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -308,3 +337,71 @@ msgstr ""
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# German translations for PROJECT.
|
# German translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2021-09-24 19:38+0000\n"
|
"PO-Revision-Date: 2021-09-24 19:38+0000\n"
|
||||||
"Last-Translator: CryptKid <CryptKiddie@chaospott.de>\n"
|
"Last-Translator: CryptKid <CryptKiddie@chaospott.de>\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
@ -35,6 +35,14 @@ msgstr "Keine Antwort erhalten."
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr "Ein unbekannter API-Fehler ist aufgetreten."
|
msgstr "Ein unbekannter API-Fehler ist aufgetreten."
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr "Neustart-Einleitung fehlgeschlagen."
|
msgstr "Neustart-Einleitung fehlgeschlagen."
|
||||||
@ -74,36 +82,44 @@ msgstr "WLAN-Einstellungen wurden auf Standard zurückgesetzt."
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr "WLAN-Einstellungen zurücksetzen"
|
msgstr "WLAN-Einstellungen zurücksetzen"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr "WLAN ${deviceID + 1}"
|
msgstr "WLAN ${deviceID + 1}"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Passwort"
|
msgstr "Passwort"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr "SSID verbergen"
|
msgstr "SSID verbergen"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
#, fuzzy
|
||||||
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr "802.11n/ac Modus"
|
msgstr "802.11n/ac Modus"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr "Kanal"
|
msgstr "Kanal"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr "automatisch"
|
msgstr "automatisch"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "automatisch"
|
msgstr "automatisch"
|
||||||
@ -121,25 +137,31 @@ msgid "Download PDF"
|
|||||||
msgstr "PDF herunterladen"
|
msgstr "PDF herunterladen"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr "SSID darf nicht länger als 32 Symbole sein"
|
msgstr "SSID darf nicht länger als 32 Symbole sein"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr "SSID darf nicht leer sein"
|
msgstr "SSID darf nicht leer sein"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr "SSID darf nicht länger als 32 Symbole sein"
|
msgstr "SSID darf nicht länger als 32 Symbole sein"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr "Das Passwort muss mindestens 8 Zeichen enthalten"
|
msgstr "Das Passwort muss mindestens 8 Zeichen enthalten"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr "Das Passwort muss mindestens 8 Zeichen enthalten"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Deaktiviert"
|
msgstr "Deaktiviert"
|
||||||
@ -169,49 +191,66 @@ msgstr "802.11ac - 80 MHz breiter Kanal"
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr "802.11ac - 80 MHz breiter Kanal"
|
msgstr "802.11ac - 80 MHz breiter Kanal"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr "802.11ac - 20 MHz breiter Kanal"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr "802.11ac - 40 MHz breiter Kanal"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr "802.11ac - 80 MHz breiter Kanal"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr "802.11ac - 80 MHz breiter Kanal"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
#, fuzzy
|
||||||
"\n"
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" WPA2 Pre-Shared Key, der für die Verbindung mit dem Netzwerk "
|
" WPA2 Pre-Shared Key, der für die Verbindung mit dem Netzwerk "
|
||||||
"benötigt wird.\n"
|
"benötigt wird.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Falls aktiviert, wird das Netzwerk nicht in der Liste der verfügbaren "
|
"Falls aktiviert, wird das Netzwerk nicht in der Liste der verfügbaren "
|
||||||
"drahtlosen Netzwerke angezeigt."
|
"drahtlosen Netzwerke angezeigt."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" newer standard and may not be supported by all your devices. It "
|
"signal does not carry so well indoors."
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" Das 2,4 GHz-Band wird stärker von Clients unterstützt, hat aber "
|
" Das 2,4 GHz-Band wird stärker von Clients unterstützt, hat aber "
|
||||||
@ -220,15 +259,13 @@ msgstr ""
|
|||||||
"unterstützt. Es hat in der Regel weniger Interferenzen, aber das Signal\n"
|
"unterstützt. Es hat in der Regel weniger Interferenzen, aber das Signal\n"
|
||||||
" trägt nicht so gut drinnen."
|
" trägt nicht so gut drinnen."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"default option with 20 MHz wide channel."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" Ändern Sie diese Option, um den Betriebsmodus 802.11n/ac "
|
" Ändern Sie diese Option, um den Betriebsmodus 802.11n/ac "
|
||||||
@ -239,16 +276,14 @@ msgstr ""
|
|||||||
" Option mit 20 MHz breitem Kanal.\n"
|
" Option mit 20 MHz breitem Kanal.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
"Devices connected to this network are allowed to\n"
|
"allowed to access other devices and the configuration interface of the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
"and the configuration interface of the router.\n"
|
"tab."
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" Ermöglicht Wi-Fi für Gäste, das vom LAN-Netzwerk getrennt ist. "
|
" Ermöglicht Wi-Fi für Gäste, das vom LAN-Netzwerk getrennt ist. "
|
||||||
@ -259,7 +294,7 @@ msgstr ""
|
|||||||
"Gastnetzwerk eingestellt werden.\n"
|
"Gastnetzwerk eingestellt werden.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -308,14 +343,19 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr "Dies ist kein gültiger Domainname."
|
msgstr "Dies ist kein gültiger Domainname."
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "This is not a valid hostname."
|
||||||
|
msgstr "Dies ist kein gültiger Domainname."
|
||||||
|
|
||||||
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid DUID."
|
||||||
msgstr "Dies ist keine gültige DUID."
|
msgstr "Dies ist keine gültige DUID."
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:19
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid MAC address."
|
||||||
msgstr "Dies ist keine gültige MAC-Adresse."
|
msgstr "Dies ist keine gültige MAC-Adresse."
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr "Enthält keine Liste von E-Mails, die durch Kommas getrennt sind."
|
msgstr "Enthält keine Liste von E-Mails, die durch Kommas getrennt sind."
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Greek translations for PROJECT.
|
# Greek translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2021-02-09 16:50+0000\n"
|
"PO-Revision-Date: 2021-02-09 16:50+0000\n"
|
||||||
"Last-Translator: Michalis <michalisntovas@yahoo.gr>\n"
|
"Last-Translator: Michalis <michalisntovas@yahoo.gr>\n"
|
||||||
"Language: el\n"
|
"Language: el\n"
|
||||||
@ -35,6 +35,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -72,37 +80,44 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr "Άκυρο"
|
msgstr "Άκυρο"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -119,25 +134,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -166,69 +186,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -277,14 +302,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -310,3 +339,71 @@ msgstr ""
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# English translations for PROJECT.
|
# English translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2019-10-17 09:28+0000\n"
|
"PO-Revision-Date: 2019-10-17 09:28+0000\n"
|
||||||
"Last-Translator: Scott Anecito <scott.anecito@protonmail.com>\n"
|
"Last-Translator: Scott Anecito <scott.anecito@protonmail.com>\n"
|
||||||
"Language: en\n"
|
"Language: en\n"
|
||||||
@ -35,6 +35,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -72,36 +80,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -118,25 +133,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -165,69 +185,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -276,14 +301,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -306,3 +335,71 @@ msgstr ""
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Spanish translations for PROJECT.
|
# Spanish translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2020-05-25 13:41+0000\n"
|
"PO-Revision-Date: 2020-05-25 13:41+0000\n"
|
||||||
"Last-Translator: Eduardo Cuthbert <elguber@gmail.com>\n"
|
"Last-Translator: Eduardo Cuthbert <elguber@gmail.com>\n"
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
@ -37,6 +37,14 @@ msgstr ""
|
|||||||
"Un error desconocido ha ocurrido. Compruebe la consola para mas "
|
"Un error desconocido ha ocurrido. Compruebe la consola para mas "
|
||||||
"informaciòn."
|
"informaciòn."
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -74,36 +82,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -120,25 +135,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -167,69 +187,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -280,14 +305,19 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr "Esto no es un nombre de dominio vàlido."
|
msgstr "Esto no es un nombre de dominio vàlido."
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "This is not a valid hostname."
|
||||||
|
msgstr "Esto no es un nombre de dominio vàlido."
|
||||||
|
|
||||||
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid DUID."
|
||||||
msgstr "Este no es un DUID vàlido."
|
msgstr "Este no es un DUID vàlido."
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:19
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid MAC address."
|
||||||
msgstr "Esta no es una direcciòn MAC vàlida."
|
msgstr "Esta no es una direcciòn MAC vàlida."
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr "No contiene una lista de E-mails separados por comas."
|
msgstr "No contiene una lista de E-mails separados por comas."
|
||||||
|
|
||||||
@ -304,3 +334,71 @@ msgstr "No contiene una lista de E-mails separados por comas."
|
|||||||
#~ "Compruebe la consola para mas "
|
#~ "Compruebe la consola para mas "
|
||||||
#~ "informaciòn."
|
#~ "informaciòn."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Finnish translations for PROJECT.
|
# Finnish translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language: fi\n"
|
"Language: fi\n"
|
||||||
@ -34,6 +34,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -71,36 +79,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -117,25 +132,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -164,69 +184,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -275,14 +300,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -308,3 +337,71 @@ msgstr ""
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Faroese translations for PROJECT.
|
# Faroese translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language: fo\n"
|
"Language: fo\n"
|
||||||
@ -34,6 +34,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -71,36 +79,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -117,25 +132,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -164,69 +184,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -275,14 +300,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -308,3 +337,71 @@ msgstr ""
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
# Translations template for PROJECT.
|
# Translations template for Foris JS.
|
||||||
# Copyright (C) 2021 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: Foris JS 5.3.0\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: tech.support@turris.cz\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -33,6 +33,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -70,36 +78,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -116,25 +131,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -163,69 +183,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -274,14 +299,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
# French translations for PROJECT.
|
# French translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2022-01-14 05:53+0000\n"
|
"PO-Revision-Date: 2022-01-14 05:53+0000\n"
|
||||||
"Last-Translator: Gabriel GRONDIN <gglinnk@protonmail.com>\n"
|
"Last-Translator: Gabriel GRONDIN <gglinnk@protonmail.com>\n"
|
||||||
"Language-Team: French <https://hosted.weblate.org/projects/turris/foris-js/"
|
|
||||||
"fr/>\n"
|
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
|
"Language-Team: French <https://hosted.weblate.org/projects/turris/foris-"
|
||||||
|
"js/fr/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
||||||
"X-Generator: Weblate 4.10.1\n"
|
|
||||||
"Generated-By: Babel 2.9.0\n"
|
"Generated-By: Babel 2.9.0\n"
|
||||||
|
|
||||||
#: src/api/utils.js:61
|
#: src/api/utils.js:61
|
||||||
@ -36,6 +35,14 @@ msgstr "Aucun réponse reçue."
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr "Une erreur d’API inconnue s’est produite."
|
msgstr "Une erreur d’API inconnue s’est produite."
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr "La demande de redémarrage a échoué."
|
msgstr "La demande de redémarrage a échoué."
|
||||||
@ -75,36 +82,44 @@ msgstr "Les paramètres Wi-Fi sont définis par défaut."
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr "Réinitialiser les paramètres Wi-Fi"
|
msgstr "Réinitialiser les paramètres Wi-Fi"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr "Wi-Fi ${deviceID + 1}"
|
msgstr "Wi-Fi ${deviceID + 1}"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Mot de passe"
|
msgstr "Mot de passe"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr "Masquer le SSID"
|
msgstr "Masquer le SSID"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
#, fuzzy
|
||||||
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr "Mode 802.11n/ac"
|
msgstr "Mode 802.11n/ac"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr "Canal"
|
msgstr "Canal"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr "Chiffrement"
|
msgstr "Chiffrement"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr "automatique"
|
msgstr "automatique"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "Personnalisé"
|
msgstr "Personnalisé"
|
||||||
|
|
||||||
@ -121,25 +136,31 @@ msgid "Download PDF"
|
|||||||
msgstr "Télécharger le PDF"
|
msgstr "Télécharger le PDF"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr "Le SSID ne peut pas être plus long que 32 symboles"
|
msgstr "Le SSID ne peut pas être plus long que 32 symboles"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr "Le SSID ne peut pas être vide"
|
msgstr "Le SSID ne peut pas être vide"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr "Le SSID ne peut pas dépasser 32 octets"
|
msgstr "Le SSID ne peut pas dépasser 32 octets"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr "Le mot de passe doit contenir au moins 8 symboles"
|
msgstr "Le mot de passe doit contenir au moins 8 symboles"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr "Le mot de passe doit contenir au moins 8 symboles"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Désactivé"
|
msgstr "Désactivé"
|
||||||
@ -168,19 +189,39 @@ msgstr "802.11ac - canal large de 80 MHz"
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr "802.11ac - canal large de 160 MHz"
|
msgstr "802.11ac - canal large de 160 MHz"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr "802.11ac - canal large de 20 MHz"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr "802.11ac - canal large de 40 MHz"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr "802.11ac - canal large de 80 MHz"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr "802.11ac - canal large de 160 MHz"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr "WPA3 seulement"
|
msgstr "WPA3 seulement"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr "WPA3 avec WPA2 comme solution de repli (par défaut)"
|
msgstr "WPA3 avec WPA2 comme solution de repli (par défaut)"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr "WPA2 seulement"
|
msgstr "WPA2 seulement"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
@ -188,31 +229,28 @@ msgstr ""
|
|||||||
"Un SSID qui contient des caractères non standard peut causer des "
|
"Un SSID qui contient des caractères non standard peut causer des "
|
||||||
"problèmes sur certains appareils."
|
"problèmes sur certains appareils."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
#, fuzzy
|
||||||
"\n"
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" Clé pré-partagée WPA2, qui est nécessaire pour se connecter au "
|
" Clé pré-partagée WPA2, qui est nécessaire pour se connecter au "
|
||||||
"réseau.\n"
|
"réseau.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"S'il est défini, le réseau n'est pas visible lors de la recherche de "
|
"S'il est défini, le réseau n'est pas visible lors de la recherche de "
|
||||||
"réseaux disponibles."
|
"réseaux disponibles."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" newer standard and may not be supported by all your devices. It "
|
"signal does not carry so well indoors."
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" La bande 2,4 GHz est plus largement prise en charge par les "
|
" La bande 2,4 GHz est plus largement prise en charge par les "
|
||||||
@ -223,15 +261,13 @@ msgstr ""
|
|||||||
"signal\n"
|
"signal\n"
|
||||||
" mais le signal ne passe pas aussi bien à l'intérieur."
|
" mais le signal ne passe pas aussi bien à l'intérieur."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"default option with 20 MHz wide channel."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" Modifiez ce paramètre pour régler le mode de fonctionnement "
|
" Modifiez ce paramètre pour régler le mode de fonctionnement "
|
||||||
@ -243,16 +279,14 @@ msgstr ""
|
|||||||
" l'option par défaut avec un canal large de 20 MHz.\n"
|
" l'option par défaut avec un canal large de 20 MHz.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
"Devices connected to this network are allowed to\n"
|
"allowed to access other devices and the configuration interface of the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
"and the configuration interface of the router.\n"
|
"tab."
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" Active le Wi-Fi pour les invités, qui est séparé du réseau LAN. "
|
" Active le Wi-Fi pour les invités, qui est séparé du réseau LAN. "
|
||||||
@ -263,18 +297,18 @@ msgstr ""
|
|||||||
"l'onglet Réseau invité.\n"
|
"l'onglet Réseau invité.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
"without WPA3 support require older WPA2. If you experience issues with "
|
"without WPA3 support require older WPA2. If you experience issues with "
|
||||||
"connecting older devices, try to enable WPA2."
|
"connecting older devices, try to enable WPA2."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"La norme WPA3 est la nouvelle méthode de chiffrement la plus sûre qu'il est "
|
"La norme WPA3 est la nouvelle méthode de chiffrement la plus sûre qu'il "
|
||||||
"suggéré d'utiliser avec tout appareil qui la prend en charge. Les appareils "
|
"est suggéré d'utiliser avec tout appareil qui la prend en charge. Les "
|
||||||
"plus anciens qui ne prennent pas en charge la norme WPA3 nécessitent la "
|
"appareils plus anciens qui ne prennent pas en charge la norme WPA3 "
|
||||||
"norme WPA2. Si vous rencontrez des problèmes pour connecter des appareils "
|
"nécessitent la norme WPA2. Si vous rencontrez des problèmes pour "
|
||||||
"plus anciens, essayez d'activer WPA2."
|
"connecter des appareils plus anciens, essayez d'activer WPA2."
|
||||||
|
|
||||||
#: src/form/components/ForisForm.js:121
|
#: src/form/components/ForisForm.js:121
|
||||||
msgid "Settings saved successfully"
|
msgid "Settings saved successfully"
|
||||||
@ -319,14 +353,19 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr "Le nom de domaine est invalide."
|
msgstr "Le nom de domaine est invalide."
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "This is not a valid hostname."
|
||||||
|
msgstr "Le nom de domaine est invalide."
|
||||||
|
|
||||||
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid DUID."
|
||||||
msgstr "Ce n’est pas un DUID valide."
|
msgstr "Ce n’est pas un DUID valide."
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:19
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid MAC address."
|
||||||
msgstr "Ce n’est pas une adresse MAC valide."
|
msgstr "Ce n’est pas une adresse MAC valide."
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Il ne contient pas une liste d’adresses de messagerie séparées par des "
|
"Il ne contient pas une liste d’adresses de messagerie séparées par des "
|
||||||
@ -353,3 +392,4 @@ msgstr ""
|
|||||||
#~ "current Wi-Fi configuration and restore the default values.\n"
|
#~ "current Wi-Fi configuration and restore the default values.\n"
|
||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Croatian translations for PROJECT.
|
# Croatian translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language: hr\n"
|
"Language: hr\n"
|
||||||
@ -35,6 +35,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -72,36 +80,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -118,25 +133,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -165,69 +185,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -276,14 +301,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -309,3 +338,71 @@ msgstr ""
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Hungarian translations for PROJECT.
|
# Hungarian translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2021-01-07 01:26+0000\n"
|
"PO-Revision-Date: 2021-01-07 01:26+0000\n"
|
||||||
"Last-Translator: Zoli <boritek@gmail.com>\n"
|
"Last-Translator: Zoli <boritek@gmail.com>\n"
|
||||||
"Language: hu\n"
|
"Language: hu\n"
|
||||||
@ -35,6 +35,14 @@ msgstr "Nem érkezett válasz."
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr "Ismeretlen API-hiba történt."
|
msgstr "Ismeretlen API-hiba történt."
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -72,36 +80,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -118,25 +133,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -165,69 +185,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -278,14 +303,19 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr "Érvénytelen tartománynév."
|
msgstr "Érvénytelen tartománynév."
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "This is not a valid hostname."
|
||||||
|
msgstr "Érvénytelen tartománynév."
|
||||||
|
|
||||||
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid DUID."
|
||||||
msgstr "Érvénytelen DUID."
|
msgstr "Érvénytelen DUID."
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:19
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid MAC address."
|
||||||
msgstr "Érvénytelen MAC-cím."
|
msgstr "Érvénytelen MAC-cím."
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr "Nem tartalmaz vesszővel elválasztott e-mail listát."
|
msgstr "Nem tartalmaz vesszővel elválasztott e-mail listát."
|
||||||
|
|
||||||
@ -302,3 +332,71 @@ msgstr "Nem tartalmaz vesszővel elválasztott e-mail listát."
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Italian translations for PROJECT.
|
# Italian translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
@ -34,6 +34,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -71,36 +79,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -117,25 +132,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -164,69 +184,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -275,14 +300,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -308,3 +337,71 @@ msgstr ""
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Japanese translations for PROJECT.
|
# Japanese translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2019-10-16 10:08+0000\n"
|
"PO-Revision-Date: 2019-10-16 10:08+0000\n"
|
||||||
"Last-Translator: Scott Anecito <scott.anecito@protonmail.com>\n"
|
"Last-Translator: Scott Anecito <scott.anecito@protonmail.com>\n"
|
||||||
"Language: ja\n"
|
"Language: ja\n"
|
||||||
@ -35,6 +35,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -72,36 +80,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr "自動"
|
msgstr "自動"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "自動"
|
msgstr "自動"
|
||||||
@ -119,25 +134,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "無効"
|
msgstr "無効"
|
||||||
@ -166,69 +186,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -277,14 +302,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -310,3 +339,71 @@ msgstr ""
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Korean translations for PROJECT.
|
# Korean translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language: ko\n"
|
"Language: ko\n"
|
||||||
@ -34,6 +34,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -71,36 +79,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -117,25 +132,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -164,69 +184,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -275,14 +300,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -308,3 +337,71 @@ msgstr ""
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Lithuanian translations for PROJECT.
|
# Lithuanian translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language: lt\n"
|
"Language: lt\n"
|
||||||
@ -35,6 +35,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -72,36 +80,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -118,25 +133,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -165,69 +185,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -276,14 +301,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -309,3 +338,71 @@ msgstr ""
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
# Norwegian Bokmål translations for PROJECT.
|
# Norwegian Bokmål (Norway) translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2021-11-20 12:50+0000\n"
|
"PO-Revision-Date: 2022-03-10 23:09+0000\n"
|
||||||
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
|
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
|
||||||
"Language: nb_NO\n"
|
"Language: nb_NO\n"
|
||||||
"Language-Team: Norwegian Bokmål "
|
"Language-Team: Norwegian Bokmål "
|
||||||
@ -36,6 +36,14 @@ msgstr "Fikk ikke svar."
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr "Ukjent API-feil."
|
msgstr "Ukjent API-feil."
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
@ -75,37 +83,48 @@ msgstr "Wi-Fi-innstillinger satt til forvalg."
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr "Tilbakestill Wi-Fi-innstillinger"
|
msgstr "Tilbakestill Wi-Fi-innstillinger"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
"Hvis antallet trådløskort ikke samsvarer kan du prøve å tilbakestille Wi-"
|
||||||
|
"Fi-innstillingene. Merk at dette fjerner nåværende Wi-Fi-oppsett og "
|
||||||
|
"gjenoppretter forvalgte verdier."
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr "Wi-Fi ${deviceID + 1}"
|
msgstr "Wi-Fi ${deviceID + 1}"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Passord"
|
msgstr "Passord"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr "Skjul SSID"
|
msgstr "Skjul SSID"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
#, fuzzy
|
||||||
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr "802.11n/ac mode"
|
msgstr "802.11n/ac mode"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr "Kanal"
|
msgstr "Kanal"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr "Kryptering"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr "automatisk"
|
msgstr "automatisk"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "automatisk"
|
msgstr "automatisk"
|
||||||
@ -124,26 +143,32 @@ msgid "Download PDF"
|
|||||||
msgstr "Last ned PDF"
|
msgstr "Last ned PDF"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr "SSID kan ikke være lengre enn 32 symboler"
|
msgstr "SSID kan ikke være lengre enn 32 symboler"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr "SSID kan ikke stå tomt."
|
msgstr "SSID kan ikke stå tomt."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr "SSID kan ikke være lengre enn 32 symboler"
|
msgstr "SSID kan ikke være lengre enn 32 symboler"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr "Passordet må inneholde minst 8 tegn"
|
msgstr "Passordet må inneholde minst 8 tegn"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr "Passordet må inneholde minst 8 tegn"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Avskrudd"
|
msgstr "Avskrudd"
|
||||||
@ -173,47 +198,64 @@ msgstr "802.11ac - 80 MHz vid kanal"
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr "802.11ac - 80 MHz vid kanal"
|
msgstr "802.11ac - 80 MHz vid kanal"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr "802.11ac - 20 MHz vid kanal"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr "802.11ac - 40 MHz vid kanal"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr "802.11ac - 80 MHz vid kanal"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr "802.11ac - 80 MHz vid kanal"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr "Kun WPA3"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
|
||||||
msgid "WPA2 only"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
|
msgstr "WPA3 med WPA2 som tilbakefall (forvalg)"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
|
msgid "WPA2 only"
|
||||||
|
msgstr "Kun WPA2"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr "SSID som inneholder uvanlige tegn kan forårsake problemer på noen enheter."
|
msgstr "SSID som inneholder uvanlige tegn kan forårsake problemer på noen enheter."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
#, fuzzy
|
||||||
"\n"
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" WPA2 med forhåndsdelt nøkkel, (som kreves for å koble til "
|
" WPA2 med forhåndsdelt nøkkel, (som kreves for å koble til "
|
||||||
"nettverket).\n"
|
"nettverket).\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr "Skjuler nettverket fra nettverkslister."
|
msgstr "Skjuler nettverket fra nettverkslister."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" newer standard and may not be supported by all your devices. It "
|
"signal does not carry so well indoors."
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" 2.4 GHz-båndet støttes av flere klienter, men har vanligvis flere"
|
" 2.4 GHz-båndet støttes av flere klienter, men har vanligvis flere"
|
||||||
@ -222,15 +264,13 @@ msgstr ""
|
|||||||
"vanligvis mindre forstyrrelse, men signalet\n"
|
"vanligvis mindre forstyrrelse, men signalet\n"
|
||||||
" er mer utsatt for hindringer innendørs."
|
" er mer utsatt for hindringer innendørs."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"default option with 20 MHz wide channel."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" Endringer har justerer 802.11n/ac-modus. 802.11.n med 40 Mhz "
|
" Endringer har justerer 802.11n/ac-modus. 802.11.n med 40 Mhz "
|
||||||
@ -240,16 +280,14 @@ msgstr ""
|
|||||||
" forvalget på 20 MHz brede kanaler.\n"
|
" forvalget på 20 MHz brede kanaler.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
"Devices connected to this network are allowed to\n"
|
"allowed to access other devices and the configuration interface of the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
"and the configuration interface of the router.\n"
|
"tab."
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" Skrur på Wi-Fi for gjester, som er adskilt LAN-nettverket. "
|
" Skrur på Wi-Fi for gjester, som er adskilt LAN-nettverket. "
|
||||||
@ -260,13 +298,18 @@ msgstr ""
|
|||||||
"\n"
|
"\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
"without WPA3 support require older WPA2. If you experience issues with "
|
"without WPA3 support require older WPA2. If you experience issues with "
|
||||||
"connecting older devices, try to enable WPA2."
|
"connecting older devices, try to enable WPA2."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"WPA3-standarden er den nye mest sikre krypteringsmetoden som anbefales "
|
||||||
|
"for alle enheter som støtter den. De eldre enhetene uten WPA3-støtte "
|
||||||
|
"krever eldre WPA2. Hvis du har problemer med å koble til eldre enheter "
|
||||||
|
"bør du skru på WPA2."
|
||||||
|
|
||||||
#: src/form/components/ForisForm.js:121
|
#: src/form/components/ForisForm.js:121
|
||||||
msgid "Settings saved successfully"
|
msgid "Settings saved successfully"
|
||||||
@ -311,14 +354,19 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr "Dette er ikke et gyldig domenenavn."
|
msgstr "Dette er ikke et gyldig domenenavn."
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "This is not a valid hostname."
|
||||||
|
msgstr "Dette er ikke et gyldig domenenavn."
|
||||||
|
|
||||||
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid DUID."
|
||||||
msgstr "Dette er ikke en gyldig DUID."
|
msgstr "Dette er ikke en gyldig DUID."
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:19
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid MAC address."
|
||||||
msgstr "Dette er ikke en gyldig MAC-adresse."
|
msgstr "Dette er ikke en gyldig MAC-adresse."
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr "Inneholder ikke en kommainndelt liste med e-postadresser."
|
msgstr "Inneholder ikke en kommainndelt liste med e-postadresser."
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Dutch translations for PROJECT.
|
# Dutch translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2020-11-29 19:29+0000\n"
|
"PO-Revision-Date: 2020-11-29 19:29+0000\n"
|
||||||
"Last-Translator: Johan van de Wetering <mail@jvdwetering.nl>\n"
|
"Last-Translator: Johan van de Wetering <mail@jvdwetering.nl>\n"
|
||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
@ -35,6 +35,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
@ -73,36 +81,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Wachtwoord"
|
msgstr "Wachtwoord"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr "auto"
|
msgstr "auto"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "auto"
|
msgstr "auto"
|
||||||
@ -120,25 +135,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Uitgeschakeld"
|
msgstr "Uitgeschakeld"
|
||||||
@ -167,69 +187,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -278,14 +303,19 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr "Dit is geen geldige domeinnaam."
|
msgstr "Dit is geen geldige domeinnaam."
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "This is not a valid hostname."
|
||||||
|
msgstr "Dit is geen geldige domeinnaam."
|
||||||
|
|
||||||
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid DUID."
|
||||||
msgstr "Dit is geen geldig DUID."
|
msgstr "Dit is geen geldig DUID."
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:19
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid MAC address."
|
||||||
msgstr "Dit is geen geldig MAC-adres."
|
msgstr "Dit is geen geldig MAC-adres."
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr "Bevat geen lijst met e-mails gescheiden door komma's."
|
msgstr "Bevat geen lijst met e-mails gescheiden door komma's."
|
||||||
|
|
||||||
@ -311,3 +341,71 @@ msgstr "Bevat geen lijst met e-mails gescheiden door komma's."
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Polish translations for PROJECT.
|
# Polish translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2020-12-23 12:29+0000\n"
|
"PO-Revision-Date: 2020-12-23 12:29+0000\n"
|
||||||
"Last-Translator: Adam Stańczyk <a.stanczyk@onet.pl>\n"
|
"Last-Translator: Adam Stańczyk <a.stanczyk@onet.pl>\n"
|
||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
@ -36,6 +36,14 @@ msgstr "Brak odpowiedzi."
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr "Wystąpił nieznany błąd API."
|
msgstr "Wystąpił nieznany błąd API."
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -73,36 +81,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Hasło"
|
msgstr "Hasło"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -119,25 +134,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -166,69 +186,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -279,14 +304,19 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr "To nie jest prawidłowa nazwa domeny."
|
msgstr "To nie jest prawidłowa nazwa domeny."
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "This is not a valid hostname."
|
||||||
|
msgstr "To nie jest prawidłowa nazwa domeny."
|
||||||
|
|
||||||
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid DUID."
|
||||||
msgstr "To nie jest prawidłowy DUID."
|
msgstr "To nie jest prawidłowy DUID."
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:19
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid MAC address."
|
||||||
msgstr "To nie jest prawidłowy adres MAC."
|
msgstr "To nie jest prawidłowy adres MAC."
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr "Nie zawiera listy e-maili oddzielonych przecinkami."
|
msgstr "Nie zawiera listy e-maili oddzielonych przecinkami."
|
||||||
|
|
||||||
@ -309,3 +339,71 @@ msgstr "Nie zawiera listy e-maili oddzielonych przecinkami."
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
# Translations template for PROJECT.
|
# Portuguese (Brazil) translations for Foris JS.
|
||||||
# Copyright (C) 2021 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2021-12-21 12:52+0000\n"
|
"PO-Revision-Date: 2021-12-21 12:52+0000\n"
|
||||||
"Last-Translator: c10l <weblate.org@a.c10l.cc>\n"
|
"Last-Translator: c10l <weblate.org@a.c10l.cc>\n"
|
||||||
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
|
|
||||||
"turris/foris-js/pt_BR/>\n"
|
|
||||||
"Language: pt_BR\n"
|
"Language: pt_BR\n"
|
||||||
|
"Language-Team: Portuguese (Brazil) "
|
||||||
|
"<https://hosted.weblate.org/projects/turris/foris-js/pt_BR/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
||||||
"X-Generator: Weblate 4.10\n"
|
|
||||||
"Generated-By: Babel 2.9.0\n"
|
"Generated-By: Babel 2.9.0\n"
|
||||||
|
|
||||||
#: src/api/utils.js:61
|
#: src/api/utils.js:61
|
||||||
@ -36,6 +35,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -73,36 +80,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -119,25 +133,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -166,69 +185,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -277,13 +301,86 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Romanian translations for PROJECT.
|
# Romanian translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2019-02-19 13:35+0100\n"
|
"PO-Revision-Date: 2019-02-19 13:35+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language: ro\n"
|
"Language: ro\n"
|
||||||
@ -35,6 +35,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -72,36 +80,43 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -118,25 +133,30 @@ msgid "Download PDF"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -165,69 +185,74 @@ msgstr ""
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -276,14 +301,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid hostname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
|
msgid "This is not a valid MAC address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -309,3 +338,71 @@ msgstr ""
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -1,24 +1,23 @@
|
|||||||
# Russian translations for PROJECT.
|
# Russian translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2021-12-18 00:07+0000\n"
|
"PO-Revision-Date: 2022-03-12 06:58+0000\n"
|
||||||
"Last-Translator: Алексей Леньшин <alenshin@gmail.com>\n"
|
"Last-Translator: Алексей Леньшин <alenshin@gmail.com>\n"
|
||||||
"Language-Team: Russian <https://hosted.weblate.org/projects/turris/foris-js/"
|
|
||||||
"ru/>\n"
|
|
||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
|
"Language-Team: Russian <https://hosted.weblate.org/projects/turris/foris-"
|
||||||
|
"js/ru/>\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||||
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
|
||||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
||||||
"X-Generator: Weblate 4.10\n"
|
|
||||||
"Generated-By: Babel 2.9.0\n"
|
"Generated-By: Babel 2.9.0\n"
|
||||||
|
|
||||||
#: src/api/utils.js:61
|
#: src/api/utils.js:61
|
||||||
@ -37,6 +36,14 @@ msgstr "Ответ не получен."
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr "Неизвестная ошибка программного интерфейса приложения."
|
msgstr "Неизвестная ошибка программного интерфейса приложения."
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr "Запрос на перезагрузку не выполнен."
|
msgstr "Запрос на перезагрузку не выполнен."
|
||||||
@ -74,36 +81,47 @@ msgstr "Настройки Wi-Fi установлены по умолчанию.
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr "Сбросить настройки Wi-Fi"
|
msgstr "Сбросить настройки Wi-Fi"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
"Если количество беспроводных карт не совпадает, вы можете попробовать "
|
||||||
|
"сбросить настройки Wi-Fi. Обратите внимание, что при этом будет удалена "
|
||||||
|
"текущая конфигурация Wi-Fi и восстановлены значения по умолчанию."
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr "Wi-Fi ${deviceID + 1}"
|
msgstr "Wi-Fi ${deviceID + 1}"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Пароль"
|
msgstr "Пароль"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr "Скрыть SSID"
|
msgstr "Скрыть SSID"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
#, fuzzy
|
||||||
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr "Режим 802.11n/ac"
|
msgstr "Режим 802.11n/ac"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr "Канал"
|
msgstr "Канал"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr "Шифрование"
|
msgstr "Шифрование"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr "авто"
|
msgstr "авто"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "Ручная настройка"
|
msgstr "Ручная настройка"
|
||||||
|
|
||||||
@ -120,66 +138,87 @@ msgid "Download PDF"
|
|||||||
msgstr "Скачать PDF"
|
msgstr "Скачать PDF"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr "SSID не может быть длиннее 32 символов"
|
msgstr "SSID не может быть длиннее 32 символов"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr "SSID не может быть пустым"
|
msgstr "SSID не может быть пустым"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr "SSID не может быть длиннее 32 байт"
|
msgstr "SSID не может быть длиннее 32 байт"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr "Пароль должен содержать не менее 8 символов"
|
msgstr "Пароль должен содержать не менее 8 символов"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr "Пароль не должен содержать более 63 символов"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Отключён"
|
msgstr "Отключён"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:10
|
#: src/common/WiFiSettings/constants.js:10
|
||||||
msgid "802.11n - 20 MHz wide channel"
|
msgid "802.11n - 20 MHz wide channel"
|
||||||
msgstr "802.11n - ширина канала в 20 МГц"
|
msgstr "802.11n - ширина канала 20 МГц"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:11
|
#: src/common/WiFiSettings/constants.js:11
|
||||||
msgid "802.11n - 40 MHz wide channel"
|
msgid "802.11n - 40 MHz wide channel"
|
||||||
msgstr "802.11n - ширина канала в 40 МГц"
|
msgstr "802.11n - ширина канала 40 МГц"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:12
|
#: src/common/WiFiSettings/constants.js:12
|
||||||
msgid "802.11ac - 20 MHz wide channel"
|
msgid "802.11ac - 20 MHz wide channel"
|
||||||
msgstr "802.11ac - ширина канала в 20 МГц"
|
msgstr "802.11ac - ширина канала 20 МГц"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:13
|
#: src/common/WiFiSettings/constants.js:13
|
||||||
msgid "802.11ac - 40 MHz wide channel"
|
msgid "802.11ac - 40 MHz wide channel"
|
||||||
msgstr "802.11ac - ширина канала в 40 МГц"
|
msgstr "802.11ac - ширина канала 40 МГц"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:14
|
#: src/common/WiFiSettings/constants.js:14
|
||||||
msgid "802.11ac - 80 MHz wide channel"
|
msgid "802.11ac - 80 MHz wide channel"
|
||||||
msgstr "802.11ac - ширина канала в 80 МГц"
|
msgstr "802.11ac - ширина канала 80 МГц"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:15
|
#: src/common/WiFiSettings/constants.js:15
|
||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr "802.11ac - ширина канала в 160 МГц"
|
msgstr "802.11ac - ширина канала 160 МГц"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr "802.11ax - ширина канала 20 МГц"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr "802.11ax - ширина канала 40 МГц"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr "802.11ax - ширина канала 80 МГц"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr "802.11ax - ширина канала 160 МГц"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr "Только WPA3"
|
msgstr "Только WPA3"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr "WPA3 с WPA2 в качестве резервного (по умолчанию)"
|
msgstr "WPA3 с WPA2 в качестве резервного (по умолчанию)"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr "Только WPA2"
|
msgstr "Только WPA2"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
@ -187,75 +226,56 @@ msgstr ""
|
|||||||
"SSID, содержащий нестандартные символы, может вызвать проблемы на "
|
"SSID, содержащий нестандартные символы, может вызвать проблемы на "
|
||||||
"некоторых устройствах."
|
"некоторых устройствах."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
#, fuzzy
|
||||||
"\n"
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
msgstr "Общий ключ WPA2, необходимый для подключения к сети."
|
||||||
" "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
" Предварительный общий ключ WPA2, необходимый для подключения к "
|
|
||||||
"сети.\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Если установлено, сеть не будет отображаться при сканировании доступных "
|
"Если установлено, сеть не будет отображаться при сканировании доступных "
|
||||||
"сетей."
|
"сетей."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
" Частота 2,4 ГГц более широко поддерживается клиентами, но имеет "
|
|
||||||
"больше помех. Частота 5 ГГц является новым стандартом и может "
|
|
||||||
"поддерживаться не всеми вашими устройствами. Он обычно имеет меньше "
|
|
||||||
"помех, но сигнал не очень хорошо распространяется в помещении."
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"Диапазон 2,4 ГГц поддерживается всеми клиентами, но имеет больше помех. "
|
||||||
" Измените это, чтобы настроить режим работы 802.11n/ac. 802.11n с "
|
"Диапазон 5 ГГц – это более современный стандарт, который может "
|
||||||
"каналами шириной 40 МГц обеспечивает более высокую пропускную способность, "
|
"поддерживаться не всеми устройствами. В нем обычно меньше помех, но в "
|
||||||
"но может вызывать больше помех в сети. Если вы не знаете, что выбрать, "
|
"помещении сигнал проходит не так хорошо."
|
||||||
"используйте опцию по умолчанию с каналом шириной 20 МГц.\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"Измените это, чтобы настроить режим работы 802.11n/ac. 802.11n с каналами"
|
||||||
" Включает Wi-Fi для гостей, который отделен от локальной сети. "
|
" шириной 40 МГц обеспечивает более высокую пропускную способность, но "
|
||||||
"Устройства, подключенные к этой сети, могут доступ в Интернет, но им не "
|
"может вызывать больше помех в сети. Если вы не знаете, что выбрать, "
|
||||||
"разрешен доступ к другим устройствам и интерфейсу конфигурации "
|
"используйте опцию по умолчанию с каналом шириной 20 МГц."
|
||||||
"маршрутизатора. Параметры гостевой сети можно настроить на вкладке "
|
|
||||||
"Гостевая сеть.\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
"Включает Wi-Fi для гостей, который отделен от локальной сети. Устройства,"
|
||||||
|
" подключенные к этой сети, могут доступ в Интернет, но им не разрешен "
|
||||||
|
"доступ к другим устройствам и интерфейсу конфигурации маршрутизатора. "
|
||||||
|
"Параметры гостевой сети можно настроить на вкладке Гостевая сеть."
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -265,7 +285,8 @@ msgstr ""
|
|||||||
"Стандарт WPA3 - это новый наиболее безопасный метод шифрования, который "
|
"Стандарт WPA3 - это новый наиболее безопасный метод шифрования, который "
|
||||||
"предлагается использовать с любым устройством, которое его поддерживает. "
|
"предлагается использовать с любым устройством, которое его поддерживает. "
|
||||||
"Старые устройства без поддержки WPA3 требуют старого WPA2. Если у вас "
|
"Старые устройства без поддержки WPA3 требуют старого WPA2. Если у вас "
|
||||||
"возникли проблемы с подключением старых устройств, попробуйте включить WPA2."
|
"возникли проблемы с подключением старых устройств, попробуйте включить "
|
||||||
|
"WPA2."
|
||||||
|
|
||||||
#: src/form/components/ForisForm.js:121
|
#: src/form/components/ForisForm.js:121
|
||||||
msgid "Settings saved successfully"
|
msgid "Settings saved successfully"
|
||||||
@ -310,14 +331,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr "Некорректное доменное имя."
|
msgstr "Некорректное доменное имя."
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
|
msgid "This is not a valid hostname."
|
||||||
|
msgstr "Это недопустимое имя хоста."
|
||||||
|
|
||||||
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid DUID."
|
||||||
msgstr "Это некорректный уникальный идентификатор DHCP (DUID)."
|
msgstr "Это некорректный уникальный идентификатор DHCP (DUID)."
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:19
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid MAC address."
|
||||||
msgstr "Это некорректный MAC-адрес."
|
msgstr "Это некорректный MAC-адрес."
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr "Не содержит списка электронных адресов, разделенных запятыми."
|
msgstr "Не содержит списка электронных адресов, разделенных запятыми."
|
||||||
|
|
||||||
@ -349,3 +374,4 @@ msgstr "Не содержит списка электронных адресов
|
|||||||
#~ "конфигурации Wi-Fi и восстановлению "
|
#~ "конфигурации Wi-Fi и восстановлению "
|
||||||
#~ "значений по умолчанию.\n"
|
#~ "значений по умолчанию.\n"
|
||||||
#~ " "
|
#~ " "
|
||||||
|
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
# Slovak translations for PROJECT.
|
# Slovak translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2021-12-18 00:07+0000\n"
|
"PO-Revision-Date: 2022-03-17 17:58+0000\n"
|
||||||
"Last-Translator: Atec <dr.atec@gmail.com>\n"
|
"Last-Translator: Atec <dr.atec@gmail.com>\n"
|
||||||
"Language-Team: Slovak <https://hosted.weblate.org/projects/turris/foris-js/"
|
|
||||||
"sk/>\n"
|
|
||||||
"Language: sk\n"
|
"Language: sk\n"
|
||||||
|
"Language-Team: Slovak <https://hosted.weblate.org/projects/turris/foris-"
|
||||||
|
"js/sk/>\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
|
||||||
"X-Generator: Weblate 4.10\n"
|
|
||||||
"Generated-By: Babel 2.9.0\n"
|
"Generated-By: Babel 2.9.0\n"
|
||||||
|
|
||||||
#: src/api/utils.js:61
|
#: src/api/utils.js:61
|
||||||
@ -30,15 +29,23 @@ msgstr "Nastala chyba z dôvodu prekročenia časového limitu."
|
|||||||
|
|
||||||
#: src/api/utils.js:69
|
#: src/api/utils.js:69
|
||||||
msgid "No response received."
|
msgid "No response received."
|
||||||
msgstr "Nedošlo k žiadnej odozve."
|
msgstr "Nenastala žiadna odozva."
|
||||||
|
|
||||||
#: src/api/utils.js:79
|
#: src/api/utils.js:79
|
||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr "Nastala neznáma chyba v aplikačnom programovom rozhraní."
|
msgstr "Nastala neznáma chyba v API."
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr "Žiadosť o reštart neúspešná."
|
msgstr "Požiadavka na reštart neúspešná."
|
||||||
|
|
||||||
#: src/common/RebootButton.js:51
|
#: src/common/RebootButton.js:51
|
||||||
msgid "Reboot"
|
msgid "Reboot"
|
||||||
@ -73,42 +80,53 @@ msgstr "Nastavenia Wi-Fi sa zmenili do východiskového stavu."
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr "Resetovať nastavenia Wi-Fi"
|
msgstr "Resetovať nastavenia Wi-Fi"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
"Ak sa počet bezdrôtových kariet nezhoduje, môžete skúsiť obnoviť "
|
||||||
|
"nastavenia Wi-Fi. Upozorňujeme, že sa tým odstráni aktuálna konfigurácia "
|
||||||
|
"Wi-Fi a obnovia sa predvolené hodnoty."
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr "Wi-Fi ${deviceID + 1}"
|
msgstr "Wi-Fi ${deviceID + 1}"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Heslo"
|
msgstr "Heslo"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr "Skryť SSID"
|
msgstr "Skryť SSID"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
#, fuzzy
|
||||||
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr "802.11 n/ac mód"
|
msgstr "802.11 n/ac mód"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr "Kanál"
|
msgstr "Kanál"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr "Šifrovanie"
|
msgstr "Šifrovanie"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr "automaticky"
|
msgstr "automaticky"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "Vlastné"
|
msgstr "Vlastné"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:42
|
#: src/common/WiFiSettings/WiFiGuestForm.js:42
|
||||||
msgid "Enable Guest Wi-Fi"
|
msgid "Enable Guest Wi-Fi"
|
||||||
msgstr "Zapnúť Wi-Fi pre hostí"
|
msgstr "Povoliť Wi-Fi pre hostí"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiQRCode.js:71
|
#: src/common/WiFiSettings/WiFiQRCode.js:71
|
||||||
msgid "Wi-Fi QR Code"
|
msgid "Wi-Fi QR Code"
|
||||||
@ -119,25 +137,30 @@ msgid "Download PDF"
|
|||||||
msgstr "Stiahnuť PDF"
|
msgstr "Stiahnuť PDF"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr "SSID nemôže mať viac ako 32 znakov"
|
msgstr "SSID nemôže obsahovať viac ako 32 znakov"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr "SSID nesmie byť prázdne"
|
msgstr "SSID nesmie byť prázdne"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr "SSID nesmie byť dlhšie ako 32 byteov"
|
msgstr "SSID nesmie byť dlhšie ako 32 byteov"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr "Heslo musí obsahovať aspoň 8 znakov"
|
msgstr "Heslo musí obsahovať aspoň 8 znakov"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr "Heslo nesmie obsahovať viac ako 63 znakov"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Zakázané"
|
msgstr "Zakázané"
|
||||||
@ -166,19 +189,35 @@ msgstr "802.11ac – šírka kanála 80 MHz"
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr "802.11ac – šírka kanála 160 MHz"
|
msgstr "802.11ac – šírka kanála 160 MHz"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
msgid "WPA3 only"
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
msgstr "Len WPA3"
|
msgstr "802.11ax – šírka kanála 20 MHz"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr "802.11ax – šírka kanála 40 MHz"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr "802.11ax – šírka kanála 80 MHz"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr "802.11ax – šírka kanála 160 MHz"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
|
msgid "WPA3 only"
|
||||||
|
msgstr "len WPA3"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr "WPA3 s WPA2 ako náhradným riešením (predvolené)"
|
msgstr "WPA3 s WPA2 ako náhradným riešením (predvolené)"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr "Len WPA2"
|
msgstr "Len WPA2"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
@ -186,88 +225,66 @@ msgstr ""
|
|||||||
"SSID s neštandardnými znakmi môže na niektorých zariadeniach spôsobovať "
|
"SSID s neštandardnými znakmi môže na niektorých zariadeniach spôsobovať "
|
||||||
"problémy."
|
"problémy."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
#, fuzzy
|
||||||
"\n"
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
msgstr "WPA2 vopred zdieľaný kľúč, ktorý sa vyžaduje na pripojenie k sieti."
|
||||||
" "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
" WPA2 vopred zdieľaný kľúč, ktorý sa vyžaduje na pripojenie k "
|
|
||||||
"sieti.\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pri zapnutí tejto voľby sa sieť zariadeniam pri vyhľadávaní dostupných "
|
"Pri zapnutí tejto voľby sa sieť zariadeniam pri vyhľadávaní dostupných "
|
||||||
"sietí nezobrazí."
|
"sietí nezobrazí."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
" Pásmo 2,4 GHz podporujú klientské zariadenia najčastejšie, ale "
|
|
||||||
"dochádza v ňom k väčšiemu rušeniu.\n"
|
|
||||||
" Pásmo 5 GHz je novým štandardom a nemusia ho podporovať všetky "
|
|
||||||
"vaše zariadenia.\n"
|
|
||||||
" Rušenie je obvykle nižšie, ale signál sa vnútri budov šíri horšie."
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"Pásmo 2,4 GHz je klientmi podporované najčastejšie, ale je viac zaťažené "
|
||||||
" Týmto sa zmení režim prevádzky 802.11n/ac. 802.11n so šírkou "
|
"rušením. Pásmo 5 GHz je novší štandard a nemusia ho podporovať všetky "
|
||||||
"kanála 40 MHz môže poskytnúť vyššiu\n"
|
"zariadenia. Zvyčajne je rušením postihnuté menej, ale signál sa vnútri "
|
||||||
" priepustnosť, ale tiež spôsobovať vyššie rušenie v sieti. Ak si "
|
"budov šíri horšie."
|
||||||
"nie ste istí, použite východiskovú voľbu\n"
|
|
||||||
" so šírkou kanála 20 MHz.\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\n"
|
"Zmenou tejto položky sa nastavuje režim prevádzky 802.11n/ac. Štandard "
|
||||||
" Zapnutie Wi-Fi pre hostí, ktorá je oddelená od miestnej siete "
|
"802.11n so šírkou kanálov 40 MHz môže priniesť vyššiu priepustnosť, ale "
|
||||||
"(LAN). Zariadenia pripojené do tejto siete majú povolený\n"
|
"môže spôsobiť väčšie rušenie. Ak si nie ste istí, použite predvolenú "
|
||||||
" prístup na internet, ale zakázané pripojenie k iným zariadeniam a"
|
"možnosť so šírkou kanála 20 MHz."
|
||||||
" ku konfiguračnému rozhraniu routera.\n"
|
|
||||||
" Parametre siete pre hostí je možné nastaviť na záložke „Sieť pre "
|
|
||||||
"hostí“.\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
"Zapína Wi-Fi pre hostí, ktorá je oddelená od miestnej siete LAN. "
|
||||||
|
"Zariadenia pripojené k tejto sieti majú povolený prístup na internet, ale"
|
||||||
|
" nemajú prístup k iným zariadeniam a ku konfiguračnému rozhraniu routera."
|
||||||
|
" Parametre siete pre hostí je možné nastaviť na karte Sieť pre hostí."
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
"without WPA3 support require older WPA2. If you experience issues with "
|
"without WPA3 support require older WPA2. If you experience issues with "
|
||||||
"connecting older devices, try to enable WPA2."
|
"connecting older devices, try to enable WPA2."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Štandard WPA3 je nová najbezpečnejšia metóda šifrovania, ktorú sa odporúča "
|
"Štandard WPA3 je nová, najbezpečnejšia metóda šifrovania a odporúča sa "
|
||||||
"používať s každým zariadením, ktoré ju podporuje. Staršie zariadenia bez "
|
"používať ju s každým zariadením, ktoré ju podporuje. Staršie zariadenia "
|
||||||
"podpory WPA3 vyžadujú staršie WPA2. Ak sa vyskytnú problémy s pripojením "
|
"bez podpory WPA3 vyžadujú staršie WPA2. Ak sa vyskytnú problémy s "
|
||||||
"starších zariadení, skúste povoliť WPA2."
|
"pripojením starších zariadení, skúste povoliť WPA2."
|
||||||
|
|
||||||
#: src/form/components/ForisForm.js:121
|
#: src/form/components/ForisForm.js:121
|
||||||
msgid "Settings saved successfully"
|
msgid "Settings saved successfully"
|
||||||
@ -310,14 +327,18 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr "Toto nie je platné doménové meno."
|
msgstr "Toto nie je platné doménové meno."
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
|
msgid "This is not a valid hostname."
|
||||||
|
msgstr "Toto nie je platné meno hostiteľa."
|
||||||
|
|
||||||
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid DUID."
|
||||||
msgstr "Toto nie je platné DUID."
|
msgstr "Toto nie je platné DUID."
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:19
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid MAC address."
|
||||||
msgstr "Toto nie je platná MAC adresa."
|
msgstr "Toto nie je platná MAC adresa."
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr "Neobsahuje zoznam e-mailov oddelených čiarkami."
|
msgstr "Neobsahuje zoznam e-mailov oddelených čiarkami."
|
||||||
|
|
||||||
@ -349,3 +370,4 @@ msgstr "Neobsahuje zoznam e-mailov oddelených čiarkami."
|
|||||||
#~ "že sa tým odstráni aktuálna konfigurácia"
|
#~ "že sa tým odstráni aktuálna konfigurácia"
|
||||||
#~ " a obnovia sa východiskové hodnoty.\n"
|
#~ " a obnovia sa východiskové hodnoty.\n"
|
||||||
#~ " "
|
#~ " "
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Swedish translations for PROJECT.
|
# Swedish translations for Foris JS.
|
||||||
# Copyright (C) 2019 ORGANIZATION
|
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
|
||||||
# This file is distributed under the same license as the PROJECT project.
|
# This file is distributed under the same license as the Foris JS project.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2021-12-15 19:17+0300\n"
|
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
|
||||||
"PO-Revision-Date: 2021-09-26 03:39+0000\n"
|
"PO-Revision-Date: 2021-09-26 03:39+0000\n"
|
||||||
"Last-Translator: Kristoffer Grundström "
|
"Last-Translator: Kristoffer Grundström "
|
||||||
"<swedishsailfishosuser@tutanota.com>\n"
|
"<swedishsailfishosuser@tutanota.com>\n"
|
||||||
@ -36,6 +36,14 @@ msgstr ""
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copied!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/bootstrap/CopyInput.js:55
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#: src/common/RebootButton.js:27
|
||||||
msgid "Reboot request failed."
|
msgid "Reboot request failed."
|
||||||
msgstr "Förfrågning för omstart misslyckades."
|
msgstr "Förfrågning för omstart misslyckades."
|
||||||
@ -73,37 +81,44 @@ msgstr ""
|
|||||||
msgid "Reset Wi-Fi Settings"
|
msgid "Reset Wi-Fi Settings"
|
||||||
msgstr "Återställ Wi-Fi-inställningarna"
|
msgstr "Återställ Wi-Fi-inställningarna"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:93
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
|
||||||
|
msgid ""
|
||||||
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
|
"and restore the default values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiForm.js:95
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
msgstr "Wi-Fi ${deviceID + 1}"
|
msgstr "Wi-Fi ${deviceID + 1}"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:130
|
#: src/common/WiFiSettings/WiFiForm.js:132
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
#: src/common/WiFiSettings/WiFiGuestForm.js:80
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Lösenord"
|
msgstr "Lösenord"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:144
|
#: src/common/WiFiSettings/WiFiForm.js:146
|
||||||
msgid "Hide SSID"
|
msgid "Hide SSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:178
|
#: src/common/WiFiSettings/WiFiForm.js:186
|
||||||
msgid "802.11n/ac mode"
|
msgid "802.11n/ac/ax mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:191
|
#: src/common/WiFiSettings/WiFiForm.js:199
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr "Avbryt"
|
msgstr "Avbryt"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:203
|
#: src/common/WiFiSettings/WiFiForm.js:211
|
||||||
msgid "Encryption"
|
msgid "Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:236
|
#: src/common/WiFiSettings/WiFiForm.js:243
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr "auto"
|
msgstr "auto"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:277
|
#: src/common/WiFiSettings/WiFiForm.js:284
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "auto"
|
msgstr "auto"
|
||||||
@ -121,25 +136,31 @@ msgid "Download PDF"
|
|||||||
msgstr "Ladda ner PDF"
|
msgstr "Ladda ner PDF"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:78
|
#: src/common/WiFiSettings/WiFiSettings.js:78
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
|
#: src/common/WiFiSettings/WiFiSettings.js:94
|
||||||
msgid "SSID can't be longer than 32 symbols"
|
msgid "SSID can't be longer than 32 symbols"
|
||||||
msgstr "SSID kan inte vara längre än 32 symboler"
|
msgstr "SSID kan inte vara längre än 32 symboler"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:79
|
#: src/common/WiFiSettings/WiFiSettings.js:79
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:92
|
#: src/common/WiFiSettings/WiFiSettings.js:96
|
||||||
msgid "SSID can't be empty"
|
msgid "SSID can't be empty"
|
||||||
msgstr "SSID kan inte vara tomt"
|
msgstr "SSID kan inte vara tomt"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:81
|
#: src/common/WiFiSettings/WiFiSettings.js:81
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:94
|
#: src/common/WiFiSettings/WiFiSettings.js:98
|
||||||
msgid "SSID can't be longer than 32 bytes"
|
msgid "SSID can't be longer than 32 bytes"
|
||||||
msgstr "SSID kan inte vara längre än 32 bytes"
|
msgstr "SSID kan inte vara längre än 32 bytes"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:84
|
#: src/common/WiFiSettings/WiFiSettings.js:84
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:97
|
#: src/common/WiFiSettings/WiFiSettings.js:101
|
||||||
msgid "Password must contain at least 8 symbols"
|
msgid "Password must contain at least 8 symbols"
|
||||||
msgstr "Lösenord måste innehålla åtminstone 8 symboler"
|
msgstr "Lösenord måste innehålla åtminstone 8 symboler"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:86
|
||||||
|
#: src/common/WiFiSettings/WiFiSettings.js:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Password must not contain more than 63 symbols"
|
||||||
|
msgstr "Lösenord måste innehålla åtminstone 8 symboler"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Avstängt"
|
msgstr "Avstängt"
|
||||||
@ -168,69 +189,78 @@ msgstr "802.11ac - 80 MHz bred kanal"
|
|||||||
msgid "802.11ac - 160 MHz wide channel"
|
msgid "802.11ac - 160 MHz wide channel"
|
||||||
msgstr "802.11ac - 160 MHz bred kanal"
|
msgstr "802.11ac - 160 MHz bred kanal"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:22
|
#: src/common/WiFiSettings/constants.js:16
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 20 MHz wide channel"
|
||||||
|
msgstr "802.11ac - 20 MHz bred kanal"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 40 MHz wide channel"
|
||||||
|
msgstr "802.11ac - 40 MHz bred kanal"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:18
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 80 MHz wide channel"
|
||||||
|
msgstr "802.11ac - 80 MHz bred kanal"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:19
|
||||||
|
#, fuzzy
|
||||||
|
msgid "802.11ax - 160 MHz wide channel"
|
||||||
|
msgstr "802.11ac - 160 MHz bred kanal"
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:26
|
||||||
msgid "WPA3 only"
|
msgid "WPA3 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:23
|
#: src/common/WiFiSettings/constants.js:27
|
||||||
msgid "WPA3 with WPA2 as fallback (default)"
|
msgid "WPA3 with WPA2 as fallback (default)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:24
|
#: src/common/WiFiSettings/constants.js:28
|
||||||
msgid "WPA2 only"
|
msgid "WPA2 only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:27
|
#: src/common/WiFiSettings/constants.js:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"SSID which contains non-standard characters could cause problems on some "
|
"SSID which contains non-standard characters could cause problems on some "
|
||||||
"devices."
|
"devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:30
|
#: src/common/WiFiSettings/constants.js:34
|
||||||
msgid ""
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
"\n"
|
|
||||||
" WPA2 pre-shared key, that is required to connect to the network.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:33
|
#: src/common/WiFiSettings/constants.js:37
|
||||||
msgid "If set, network is not visible when scanning for available networks."
|
msgid "If set, network is not visible when scanning for available networks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:36
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
" The 2.4 GHz band is more widely supported by clients, but tends "
|
|
||||||
"to have more interference. The 5 GHz band is a\n"
|
|
||||||
" newer standard and may not be supported by all your devices. It "
|
|
||||||
"usually has less interference, but the signal\n"
|
|
||||||
" does not carry so well indoors."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
" Change this to adjust 802.11n/ac mode of operation. 802.11n with "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"40 MHz wide channels can yield higher\n"
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
" throughput but can cause more interference in the network. If you"
|
"signal does not carry so well indoors."
|
||||||
" don't know what to choose, use the default\n"
|
|
||||||
" option with 20 MHz wide channel.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:45
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
" Enables Wi-Fi for guests, which is separated from LAN network. "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"Devices connected to this network are allowed to\n"
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
" access the internet, but aren't allowed to access other devices "
|
"default option with 20 MHz wide channel."
|
||||||
"and the configuration interface of the router.\n"
|
|
||||||
" Parameters of the guest network can be set in the Guest network "
|
|
||||||
"tab.\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:50
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
|
msgid ""
|
||||||
|
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
||||||
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
|
"allowed to access other devices and the configuration interface of the "
|
||||||
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"suggested to be used with any device that supports it. The older devices "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
@ -279,14 +309,19 @@ msgid "This is not a valid domain name."
|
|||||||
msgstr "Detta är inte ett giltigt domännamn."
|
msgstr "Detta är inte ett giltigt domännamn."
|
||||||
|
|
||||||
#: src/utils/validations.js:17
|
#: src/utils/validations.js:17
|
||||||
|
#, fuzzy
|
||||||
|
msgid "This is not a valid hostname."
|
||||||
|
msgstr "Detta är inte ett giltigt domännamn."
|
||||||
|
|
||||||
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid DUID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:19
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid MAC address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:20
|
||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -312,3 +347,71 @@ msgstr ""
|
|||||||
#~ " "
|
#~ " "
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " WPA2 pre-shared key, that "
|
||||||
|
#~ "is required to connect to the "
|
||||||
|
#~ "network.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " The 2.4 GHz band is more"
|
||||||
|
#~ " widely supported by clients, but "
|
||||||
|
#~ "tends to have more interference. The "
|
||||||
|
#~ "5 GHz band is a\n"
|
||||||
|
#~ " newer standard and may not "
|
||||||
|
#~ "be supported by all your devices. "
|
||||||
|
#~ "It usually has less interference, but"
|
||||||
|
#~ " the signal\n"
|
||||||
|
#~ " does not carry so well indoors."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Change this to adjust 802.11n/ac"
|
||||||
|
#~ " mode of operation. 802.11n with 40"
|
||||||
|
#~ " MHz wide channels can yield higher"
|
||||||
|
#~ "\n"
|
||||||
|
#~ " throughput but can cause more"
|
||||||
|
#~ " interference in the network. If you"
|
||||||
|
#~ " don't know what to choose, use "
|
||||||
|
#~ "the default\n"
|
||||||
|
#~ " option with 20 MHz wide channel.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ " Enables Wi-Fi for guests, "
|
||||||
|
#~ "which is separated from LAN network. "
|
||||||
|
#~ "Devices connected to this network are"
|
||||||
|
#~ " allowed to\n"
|
||||||
|
#~ " access the internet, but aren't"
|
||||||
|
#~ " allowed to access other devices and"
|
||||||
|
#~ " the configuration interface of the "
|
||||||
|
#~ "router.\n"
|
||||||
|
#~ " Parameters of the guest network"
|
||||||
|
#~ " can be set in the Guest "
|
||||||
|
#~ "network tab.\n"
|
||||||
|
#~ " "
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "802.11n/ac mode"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "WPA2 pre-shared key, that is required to connect to the network."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Change this to adjust 802.11n/ac mode"
|
||||||
|
#~ " of operation. 802.11n with 40 MHz"
|
||||||
|
#~ " wide channels can yield higher "
|
||||||
|
#~ "throughput but can cause more "
|
||||||
|
#~ "interference in the network. If you "
|
||||||
|
#~ "don't know what to choose, use the"
|
||||||
|
#~ " default option with 20 MHz wide "
|
||||||
|
#~ "channel."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user