1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2025-06-16 13:46:16 +02:00

Compare commits

..

2 Commits

Author SHA1 Message Date
cfe517fe76 Bump v5.1.7 2020-11-27 15:10:54 +01:00
02e59ccae8 Add storage link 2020-11-27 14:43:06 +01:00
57 changed files with 13666 additions and 32585 deletions

View File

@ -1,4 +1,4 @@
image: node:16-alpine image: node:10-alpine
stages: stages:
- test - test

View File

@ -1,30 +1,20 @@
# Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/) .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
#
# This is free software, licensed under the GNU General Public License v3.
# See /LICENSE for more information.
PROJECT="Foris JS" DEV_PYTHON=python3.7
# 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
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 npm dependencies." @echo " Install dependencies"
@echo "make lint" @echo "make watch-js"
@echo " Run linter on the project." @echo " Compile JS in watch mode."
@echo "make test" @echo "make build-js"
@echo " Run tests on the project." @echo " Compile JS."
@echo "make test-js-watch" @echo "make lint-js"
@echo " Run tests on the project in watch mode." @echo " Run linter"
@echo "make test-js-update-snapshots" @echo "make test-js"
@echo " Update snapshots." @echo " Run tests"
@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"
@ -36,93 +26,43 @@ 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
# Translations
.PHONY: create-messages
create-messages: venv 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) $(VENV_BIN)/pybabel extract -F babel.cfg -o ./translations/forisjs.pot .
.PHONY: update-messages
update-messages: venv update-messages: venv
$(VENV_BIN)/pybabel update -i ./translations/forisjs.pot -d ./translations -D forisjs --update-header-comment $(VENV_BIN)/pybabel update -i ./translations/forisjs.pot -d ./translations -D forisjs
# 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

36191
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "foris", "name": "foris",
"version": "5.4.1", "version": "5.1.7",
"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": {
@ -14,23 +14,22 @@
"license": "GPL-3.0", "license": "GPL-3.0",
"main": "./src/index.js", "main": "./src/index.js",
"dependencies": { "dependencies": {
"socket.io-client": "4.4.1", "axios": "^0.19.2",
"axios": "^0.21.1",
"immutability-helper": "3.0.1", "immutability-helper": "3.0.1",
"moment": "^2.24.0", "moment": "^2.24.0",
"qrcode.react": "^1.0.1", "qrcode.react": "^0.9.3",
"react-datetime": "^3.1.1", "react-datetime": "^3.0.4",
"react-uid": "^2.2.0" "react-uid": "^2.2.0"
}, },
"peerDependencies": { "peerDependencies": {
"bootstrap": "4.4.1", "bootstrap": "4.4.1",
"prop-types": "15.8.1", "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"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.12.10", "@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0", "@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0", "@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0", "@babel/preset-env": "^7.9.0",
@ -40,7 +39,7 @@
"babel-loader": "^8.1.0", "babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0", "babel-polyfill": "^6.26.0",
"bootstrap": "^4.5.0", "bootstrap": "^4.5.0",
"css-loader": "^5.2.4", "css-loader": "^3.5.3",
"eslint": "^6.8.0", "eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0", "eslint-config-prettier": "^6.11.0",
"eslint-config-reforis": "^1.0.0", "eslint-config-reforis": "^1.0.0",
@ -48,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.34", "moment-timezone": "^0.5.28",
"prettier": "2.0.5", "prettier": "2.0.5",
"prop-types": "15.8.1", "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": "^11.2.0", "react-styleguidist": "^10.6.2",
"snapshot-diff": "^0.7.0", "snapshot-diff": "^0.7.0",
"style-loader": "^1.2.1", "style-loader": "^1.2.1",
"webpack": "^5.68.0" "webpack": "^4.43.0"
}, },
"scripts": { "scripts": {
"lint": "eslint src", "lint": "eslint src",

View File

@ -6,7 +6,8 @@ then
exit 1 exit 1
else else
cd dist cd dist
echo "//registry.npmjs.org/:_authToken=$(echo "$NPM_TOKEN")" > .npmrc # Need to replace "_" with "-" as GitLab CI won't accept secret vars with "-"
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

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/) * Copyright (C) 2019 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.
@ -7,6 +7,7 @@
import { useCallback, useEffect, useReducer, useState } from "react"; import { useCallback, useEffect, useReducer, useState } from "react";
import { ForisURLs } from "../utils/forisUrls";
import { import {
API_ACTIONS, API_ACTIONS,
API_METHODS, API_METHODS,
@ -83,8 +84,8 @@ function APIReducer(state, action) {
data: action.payload, data: action.payload,
}; };
case API_ACTIONS.FAILURE: case API_ACTIONS.FAILURE:
if (action.status === 401) { if (action.status === 403) {
window.location.reload(); window.location.assign(ForisURLs.login);
} }
// Not an API error - should be rethrown. // Not an API error - should be rethrown.

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/) * Copyright (C) 2019 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.
@ -11,7 +11,6 @@ export const HEADERS = {
Accept: "application/json", Accept: "application/json",
"Content-Type": "application/json", "Content-Type": "application/json",
"X-CSRFToken": getCookie("_csrf_token"), "X-CSRFToken": getCookie("_csrf_token"),
"X-Requested-With": "json",
}; };
export const TIMEOUT = 30500; export const TIMEOUT = 30500;
@ -57,7 +56,7 @@ function getCookie(name) {
export function getErrorPayload(error) { export function getErrorPayload(error) {
if (error.response) { if (error.response) {
if (error.response.status === 401) { if (error.response.status === 403) {
return _("The session is expired. Please log in again."); return _("The session is expired. Please log in again.");
} }
return getJSONErrorMessage(error); return getJSONErrorMessage(error);

View File

@ -1,60 +0,0 @@
/*
* 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>
);
}

View File

@ -1,17 +0,0 @@
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
/>;
```

View File

@ -21,14 +21,9 @@ DownloadButton.defaultProps = {
className: "btn-primary", className: "btn-primary",
}; };
export function DownloadButton({ href, className, children, ...props }) { export function DownloadButton({ href, className, children }) {
return ( return (
<a <a href={href} className={`btn ${className}`.trim()} download>
href={href}
className={`btn ${className}`.trim()}
{...props}
download
>
{children} {children}
</a> </a>
); );

View File

@ -1,60 +1,14 @@
/* /*
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/) * Copyright (C) 2019 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.
*/ */
import React, { forwardRef } from "react"; import React 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,
@ -68,3 +22,41 @@ 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>
);
}

View File

@ -69,7 +69,7 @@ export function Modal({ shown, setShown, scrollable, size, children }) {
> >
<div <div
ref={dialogRef} ref={dialogRef}
className={`${modalSize.trim()} modal-dialog modal-dialog-centered ${ className={`modal-dialog ${modalSize} modal-dialog-centered ${
scrollable ? "modal-dialog-scrollable" : "" scrollable ? "modal-dialog-scrollable" : ""
}`.trim()} }`.trim()}
role="document" role="document"

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/) * Copyright (C) 2019 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.
@ -21,17 +21,14 @@ 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, newPass, ...props }) { export function PasswordInput({ withEye, ...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={newPass ? "new-password" : "current-password"} autoComplete={isHidden ? "new-password" : null}
{...props} {...props}
> >
{withEye ? ( {withEye ? (

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/) * Copyright (C) 2019 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.
@ -23,12 +23,13 @@ Select.propTypes = {
export function Select({ label, choices, helpText, ...props }) { export function Select({ label, choices, helpText, ...props }) {
const uid = useUID(); const uid = useUID();
const options = Object.keys(choices).map((choice) => ( const options = Object.keys(choices)
<option key={choice} value={choice}> .sort((a, b) => a - b || a.toString().localeCompare(b.toString()))
{choices[choice]} .map((key) => (
<option key={key} value={key}>
{choices[key]}
</option> </option>
)); ));
return ( return (
<div className="form-group"> <div className="form-group">
<label htmlFor={uid}>{label}</label> <label htmlFor={uid}>{label}</label>

View File

@ -13,7 +13,7 @@ exports[`<PasswordInput/> Render password input 1`] = `
class="input-group" class="input-group"
> >
<input <input
autocomplete="current-password" autocomplete="new-password"
class="form-control" class="form-control"
id="1" id="1"
type="password" type="password"

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/) * Copyright (C) 2019 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.
@ -7,5 +7,5 @@
/** Bootstrap column size for form fields */ /** Bootstrap column size for form fields */
// eslint-disable-next-line import/prefer-default-export // eslint-disable-next-line import/prefer-default-export
export const formFieldsSize = "card p-4 col-sm-12 col-lg-12 p-0 mb-4"; export const formFieldsSize = "card p-4 col-sm-12 col-lg-12 p-0 mb-3";
export const buttonFormFieldsSize = "col-sm-12 col-lg-12 p-0 mb-3"; export const buttonFormFieldsSize = "col-sm-12 col-lg-12 p-0 mb-3";

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/) * Copyright (C) 2019 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.
@ -13,19 +13,19 @@ import { useAlert } from "../../alertContext/AlertContext";
import { ALERT_TYPES } from "../../bootstrap/Alert"; import { ALERT_TYPES } from "../../bootstrap/Alert";
import { useAPIPost } from "../../api/hooks"; import { useAPIPost } from "../../api/hooks";
import { API_STATE } from "../../api/utils"; import { API_STATE } from "../../api/utils";
import { formFieldsSize } from "../../bootstrap/constants"; import { buttonFormFieldsSize } from "../../bootstrap/constants";
ResetWiFiSettings.propTypes = { ResetWiFiSettings.propTypes = {
ws: PropTypes.object.isRequired, ws: PropTypes.object.isRequired,
endpoint: PropTypes.string.isRequired, endpoint: PropTypes.string.isRequired,
}; };
export function ResetWiFiSettings({ ws, endpoint }) { export default function ResetWiFiSettings({ ws, endpoint }) {
const [isLoading, setIsLoading] = useState(false); const [isLoading, setIsLoading] = useState(false);
useEffect(() => { useEffect(() => {
const module = "wifi"; const module = "wifi";
ws.bind(module, "reset", () => { ws.subscribe(module).bind(module, "reset", () => {
// eslint-disable-next-line no-restricted-globals // eslint-disable-next-line no-restricted-globals
setTimeout(() => location.reload(), 1000); setTimeout(() => location.reload(), 1000);
}); });
@ -51,16 +51,17 @@ export function ResetWiFiSettings({ ws, endpoint }) {
} }
return ( return (
<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 configuration and restore the default values." 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.
`)}
</p> </p>
<div className="text-right"> <div className={`${buttonFormFieldsSize} text-right`}>
<Button <Button
className="btn-primary" className="btn-warning"
forisFormSize forisFormSize
loading={isLoading} loading={isLoading}
disabled={isLoading} disabled={isLoading}
@ -69,6 +70,6 @@ export function ResetWiFiSettings({ ws, endpoint }) {
{_("Reset Wi-Fi Settings")} {_("Reset Wi-Fi Settings")}
</Button> </Button>
</div> </div>
</div> </>
); );
} }

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/) * Copyright (C) 2019 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.
@ -15,7 +15,7 @@ import { Select } from "../../bootstrap/Select";
import { TextInput } from "../../bootstrap/TextInput"; import { TextInput } from "../../bootstrap/TextInput";
import WiFiQRCode from "./WiFiQRCode"; import WiFiQRCode from "./WiFiQRCode";
import WifiGuestForm from "./WiFiGuestForm"; import WifiGuestForm from "./WiFiGuestForm";
import { HELP_TEXTS, HTMODES, HWMODES, ENCRYPTIONMODES } from "./constants"; import { HELP_TEXTS, HTMODES, HWMODES } from "./constants";
WiFiForm.propTypes = { WiFiForm.propTypes = {
formData: PropTypes.shape({ devices: PropTypes.arrayOf(PropTypes.object) }) formData: PropTypes.shape({ devices: PropTypes.arrayOf(PropTypes.object) })
@ -63,8 +63,6 @@ DeviceForm.propTypes = {
htmode: PropTypes.string.isRequired, htmode: PropTypes.string.isRequired,
channel: PropTypes.string.isRequired, channel: PropTypes.string.isRequired,
guest_wifi: PropTypes.object.isRequired, guest_wifi: PropTypes.object.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,
@ -88,7 +86,6 @@ function DeviceForm({
...props ...props
}) { }) {
const deviceID = formData.id; const deviceID = formData.id;
const bnds = formData.available_bands;
return ( return (
<> <>
<Switch <Switch
@ -129,7 +126,7 @@ function DeviceForm({
<PasswordInput <PasswordInput
withEye withEye
label={_("Password")} label="Password"
value={formData.password} value={formData.password}
error={formErrors.password} error={formErrors.password}
helpText={HELP_TEXTS.password} helpText={HELP_TEXTS.password}
@ -143,7 +140,7 @@ function DeviceForm({
/> />
<CheckBox <CheckBox
label={_("Hide SSID")} label="Hide SSID"
helpText={HELP_TEXTS.hidden} helpText={HELP_TEXTS.hidden}
checked={formData.hidden} checked={formData.hidden}
onChange={setFormValue((value) => ({ onChange={setFormValue((value) => ({
@ -161,29 +158,19 @@ function DeviceForm({
value={formData.hwmode} value={formData.hwmode}
helpText={HELP_TEXTS.hwmode} helpText={HELP_TEXTS.hwmode}
inline inline
onChange={setFormValue((value) => { onChange={setFormValue((value) => ({
// Get the last item in an array of available HT modes
const [best2] = bnds[0].available_htmodes.slice(-1);
const [best5] = bnds[1].available_htmodes.slice(-1);
return {
devices: { devices: {
[deviceIndex]: { [deviceIndex]: {
hwmode: { $set: value }, hwmode: { $set: value },
channel: { $set: "0" }, channel: { $set: "0" },
htmode: {
$set:
// Set HT mode depending on checked frequency
value === "11a" ? best5 : best2,
}, },
}, },
}, }))}
};
})}
{...props} {...props}
/> />
<Select <Select
label={_("802.11n/ac/ax mode")} label="802.11n/ac mode"
choices={getHtmodeChoices(formData)} choices={getHtmodeChoices(formData)}
value={formData.htmode} value={formData.htmode}
helpText={HELP_TEXTS.htmode} helpText={HELP_TEXTS.htmode}
@ -196,7 +183,7 @@ function DeviceForm({
/> />
<Select <Select
label={_("Channel")} label="Channel"
choices={getChannelChoices(formData)} choices={getChannelChoices(formData)}
value={formData.channel} value={formData.channel}
onChange={setFormValue((value) => ({ onChange={setFormValue((value) => ({
@ -207,19 +194,6 @@ function DeviceForm({
{...props} {...props}
/> />
<Select
label={_("Encryption")}
choices={getEncryptionChoices(formData)}
helpText={HELP_TEXTS.wpa3}
value={formData.encryption}
onChange={setFormValue((value) => ({
devices: {
[deviceIndex]: { encryption: { $set: value } },
},
}))}
{...props}
/>
{hasGuestNetwork && ( {hasGuestNetwork && (
<WifiGuestForm <WifiGuestForm
formData={{ formData={{
@ -278,10 +252,3 @@ function getHwmodeChoices(device) {
value: availableBand.hwmode, value: availableBand.hwmode,
})); }));
} }
function getEncryptionChoices(device) {
if (device.encryption === "custom") {
ENCRYPTIONMODES.custom = _("Custom");
}
return ENCRYPTIONMODES;
}

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/) * Copyright (C) 2019 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,7 +10,7 @@ import PropTypes from "prop-types";
import { ForisForm } from "../../form/components/ForisForm"; import { ForisForm } from "../../form/components/ForisForm";
import WiFiForm from "./WiFiForm"; import WiFiForm from "./WiFiForm";
import { ResetWiFiSettings } from "./ResetWiFiSettings"; import ResetWiFiSettings from "./ResetWiFiSettings";
WiFiSettings.propTypes = { WiFiSettings.propTypes = {
ws: PropTypes.object.isRequired, ws: PropTypes.object.isRequired,
@ -82,10 +82,6 @@ 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;
@ -101,10 +97,6 @@ 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;

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/) * Copyright (C) 2019 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.
@ -14,7 +14,7 @@ import { mockJSONError } from "testUtils/network";
import { mockSetAlert } from "testUtils/alertContextMock"; import { mockSetAlert } from "testUtils/alertContextMock";
import { ALERT_TYPES } from "../../../bootstrap/Alert"; import { ALERT_TYPES } from "../../../bootstrap/Alert";
import { ResetWiFiSettings } from "../ResetWiFiSettings"; import ResetWiFiSettings from "../ResetWiFiSettings";
describe("<ResetWiFiSettings/>", () => { describe("<ResetWiFiSettings/>", () => {
const webSockets = new WebSockets(); const webSockets = new WebSockets();

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/) * Copyright (C) 2019 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.
@ -26,7 +26,6 @@ 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";
@ -42,7 +41,6 @@ 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"));
@ -53,6 +51,7 @@ 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"
@ -117,11 +116,10 @@ describe("<WiFiSettings/>", () => {
enabled: true, enabled: true,
guest_wifi: { enabled: false }, guest_wifi: { enabled: false },
hidden: false, hidden: false,
htmode: "HT80", htmode: "HT40",
hwmode: "11a", hwmode: "11a",
id: 0, id: 0,
password: "TestPass", password: "TestPass",
encryption: "WPA3",
}, },
{ enabled: false, id: 1 }, { enabled: false, id: 1 },
], ],
@ -147,11 +145,10 @@ describe("<WiFiSettings/>", () => {
enabled: true, enabled: true,
guest_wifi: { enabled: false }, guest_wifi: { enabled: false },
hidden: false, hidden: false,
htmode: "VHT80", htmode: "HT40",
hwmode: "11g", hwmode: "11g",
id: 0, id: 0,
password: "TestPass", password: "TestPass",
encryption: "WPA3",
}, },
{ enabled: false, id: 1 }, { enabled: false, id: 1 },
], ],
@ -184,11 +181,10 @@ describe("<WiFiSettings/>", () => {
password: "test_password", password: "test_password",
}, },
hidden: false, hidden: false,
htmode: "HT80", htmode: "HT40",
hwmode: "11a", hwmode: "11a",
id: 0, id: 0,
password: "TestPass", password: "TestPass",
encryption: "WPA3",
}, },
{ enabled: false, id: 1 }, { enabled: false, id: 1 },
], ],
@ -221,24 +217,4 @@ 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();
});
}); });

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/) * Copyright (C) 2019 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.
@ -226,11 +226,10 @@ export function wifiSettingsFixture() {
password: "", password: "",
}, },
hidden: false, hidden: false,
htmode: "HT80", htmode: "HT40",
hwmode: "11a", hwmode: "11a",
id: 0, id: 0,
password: "TestPass", password: "TestPass",
encryption: "WPA3",
}, },
{ {
SSID: "Turris", SSID: "Turris",
@ -309,7 +308,6 @@ export function wifiSettingsFixture() {
hwmode: "11g", hwmode: "11g",
id: 1, id: 1,
password: "TestPass", password: "TestPass",
encryption: "WPA3",
}, },
], ],
}; };
@ -326,7 +324,6 @@ const oneDevice = {
hwmode: "11a", hwmode: "11a",
id: 0, id: 0,
password: "TestPass", password: "TestPass",
encryption: "WPA3",
}, },
], ],
}; };
@ -343,7 +340,6 @@ const twoDevices = {
hwmode: "11a", hwmode: "11a",
id: 0, id: 0,
password: "TestPass", password: "TestPass",
encryption: "WPA3",
}, },
{ {
SSID: "Turris2", SSID: "Turris2",
@ -353,9 +349,8 @@ const twoDevices = {
hidden: false, hidden: false,
htmode: "HT40", htmode: "HT40",
hwmode: "11a", hwmode: "11a",
id: 1, id: 0,
password: "TestPass", password: "TestPass",
encryption: "WPA3",
}, },
], ],
}; };
@ -372,7 +367,6 @@ const threeDevices = {
hwmode: "11a", hwmode: "11a",
id: 0, id: 0,
password: "TestPass", password: "TestPass",
encryption: "WPA3",
}, },
{ {
SSID: "Turris2", SSID: "Turris2",
@ -382,9 +376,8 @@ const threeDevices = {
hidden: false, hidden: false,
htmode: "HT40", htmode: "HT40",
hwmode: "11a", hwmode: "11a",
id: 1, id: 0,
password: "TestPass", password: "TestPass",
encryption: "WPA3",
}, },
{ {
SSID: "Turris3", SSID: "Turris3",
@ -394,9 +387,8 @@ const threeDevices = {
hidden: false, hidden: false,
htmode: "HT40", htmode: "HT40",
hwmode: "11a", hwmode: "11a",
id: 2, id: 0,
password: "", password: "",
encryption: "WPA3",
}, },
], ],
}; };

View File

@ -5,7 +5,7 @@ exports[`<WiFiSettings/> Snapshot 2.4 GHz 1`] = `
- First value - First value
+ Second value + Second value
@@ -241,207 +241,95 @@ @@ -250,207 +250,95 @@
value=\\"0\\" value=\\"0\\"
> >
auto auto
@ -251,7 +251,7 @@ exports[`<WiFiSettings/> Snapshot 2.4 GHz 1`] = `
exports[`<WiFiSettings/> Snapshot both modules disabled. 1`] = ` exports[`<WiFiSettings/> Snapshot both modules disabled. 1`] = `
<DocumentFragment> <DocumentFragment>
<div <div
class="card p-4 col-sm-12 col-lg-12 p-0 mb-4" class="card p-4 col-sm-12 col-lg-12 p-0 mb-3"
> >
<form> <form>
<div <div
@ -309,26 +309,25 @@ exports[`<WiFiSettings/> Snapshot both modules disabled. 1`] = `
</div> </div>
</form> </form>
</div> </div>
<div
class="card p-4 col-sm-12 col-lg-12 p-0 mb-4"
>
<h2> <h2>
Reset Wi-Fi Settings Reset Wi-Fi Settings
</h2> </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 configuration and restore the default values.
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.
</p> </p>
<div <div
class="text-right" class="col-sm-12 col-lg-12 p-0 mb-3 text-right"
> >
<button <button
class="btn btn-primary col-sm-12 col-md-3 col-lg-2" class="btn btn-warning col-sm-12 col-md-3 col-lg-2"
type="button" type="button"
> >
Reset Wi-Fi Settings Reset Wi-Fi Settings
</button> </button>
</div> </div>
</div>
</DocumentFragment> </DocumentFragment>
`; `;
@ -337,9 +336,9 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
- First value - First value
+ Second value + Second value
@@ -500,10 +500,92 @@ @@ -479,10 +479,94 @@
> 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>
@ -347,7 +346,7 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
+ class=\\"form-group\\" + class=\\"form-group\\"
+ > + >
+ <label + <label
+ for=\\"22\\" + for=\\"20\\"
+ > + >
+ SSID + SSID
+ </label> + </label>
@ -356,7 +355,7 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
+ > + >
+ <input + <input
+ class=\\"form-control\\" + class=\\"form-control\\"
+ id=\\"22\\" + id=\\"20\\"
+ type=\\"text\\" + type=\\"text\\"
+ value=\\"TestGuestSSID\\" + value=\\"TestGuestSSID\\"
+ /> + />
@ -386,7 +385,7 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
+ class=\\"form-group\\" + class=\\"form-group\\"
+ > + >
+ <label + <label
+ for=\\"23\\" + for=\\"21\\"
+ > + >
+ Password + Password
+ </label> + </label>
@ -394,9 +393,9 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
+ class=\\"input-group\\" + class=\\"input-group\\"
+ > + >
+ <input + <input
+ autocomplete=\\"current-password\\" + autocomplete=\\"new-password\\"
+ class=\\"form-control is-invalid\\" + class=\\"form-control is-invalid\\"
+ id=\\"23\\" + id=\\"21\\"
+ required=\\"\\" + required=\\"\\"
+ type=\\"password\\" + type=\\"password\\"
+ value=\\"\\" + value=\\"\\"
@ -422,7 +421,9 @@ 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 />
@ -430,7 +431,7 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
class=\\"form-group switch\\" class=\\"form-group switch\\"
> >
<div <div
@@ -527,10 +609,11 @@ @@ -506,10 +590,11 @@
<div <div
class=\\"text-right\\" class=\\"text-right\\"
> >
@ -449,7 +450,7 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
- First value - First value
+ Second value + Second value
@@ -22,10 +22,488 @@ @@ -22,10 +22,467 @@
Wi-Fi 1 Wi-Fi 1
</h2> </h2>
</label> </label>
@ -507,7 +508,7 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
+ class=\\"input-group\\" + class=\\"input-group\\"
+ > + >
+ <input + <input
+ autocomplete=\\"current-password\\" + autocomplete=\\"new-password\\"
+ class=\\"form-control\\" + class=\\"form-control\\"
+ id=\\"5\\" + id=\\"5\\"
+ required=\\"\\" + required=\\"\\"
@ -530,7 +531,9 @@ 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
@ -604,7 +607,10 @@ 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
@ -613,18 +619,13 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
+ <label + <label
+ for=\\"8\\" + for=\\"8\\"
+ > + >
+ 802.11n/ac/ax mode + 802.11n/ac 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
@ -635,6 +636,11 @@ 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
@ -653,7 +659,11 @@ 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
@ -878,58 +888,28 @@ exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
+ <div + <div
+ class=\\"form-group\\" + class=\\"form-group\\"
+ > + >
+ <label
+ for=\\"10\\"
+ >
+ Encryption
+ </label>
+ <select
+ class=\\"custom-select\\"
+ id=\\"10\\"
+ >
+ <option
+ value=\\"WPA3\\"
+ >
+ WPA3 only
+ </option>
+ <option
+ value=\\"WPA2/3\\"
+ >
+ WPA3 with WPA2 as fallback (default)
+ </option>
+ <option
+ value=\\"WPA2\\"
+ >
+ WPA2 only
+ </option>
+ </select>
+ <small
+ class=\\"form-text text-muted\\"
+ >
+ 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.
+ </small>
+ </div>
+ <div
+ class=\\"form-group\\"
+ >
+ <div + <div
+ class=\\"custom-control custom-switch\\" + class=\\"custom-control custom-switch\\"
+ > + >
+ <input + <input
+ class=\\"custom-control-input\\" + class=\\"custom-control-input\\"
+ id=\\"11\\" + id=\\"10\\"
+ type=\\"checkbox\\" + type=\\"checkbox\\"
+ /> + />
+ <label + <label
+ class=\\"custom-control-label\\" + class=\\"custom-control-label\\"
+ for=\\"11\\" + for=\\"10\\"
+ > + >
+ Enable Guest Wi-Fi + Enable Guest Wi-Fi
+ </label> + </label>
+ <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>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/) * Copyright (C) 2019 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.
@ -13,40 +13,33 @@ 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",
"11a": "5", "11a": "5",
}; };
export const ENCRYPTIONMODES = {
WPA3: _("WPA3 only"),
"WPA2/3": _("WPA3 with WPA2 as fallback (default)"),
WPA2: _("WPA2 only"),
};
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 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
htmode: _( does not carry so well indoors.`),
"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." htmode: _(`
), Change this to adjust 802.11n/ac mode of operation. 802.11n with 40 MHz wide channels can yield higher
guest_wifi_enabled: _( throughput but can cause more interference in the network. If you don't know what to choose, use the default
"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." option with 20 MHz wide channel.
), `),
wpa3: _( guest_wifi_enabled: _(`
"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." 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.
`),
}; };

View File

@ -1,17 +1,16 @@
/* /*
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/) * Copyright (C) 2019 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.
*/ */
import { import {
validateDomain,
validateDUID,
validateIPv4Address, validateIPv4Address,
validateIPv6Address, validateIPv6Address,
validateIPv6Prefix, validateIPv6Prefix,
validateDomain,
validateHostname,
validateDUID,
validateMAC, validateMAC,
} from "utils/validations"; } from "utils/validations";
@ -69,15 +68,6 @@ 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);

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/) * Copyright (C) 2019 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.
@ -20,7 +20,6 @@ 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";
@ -40,7 +39,6 @@ export { Modal, ModalBody, ModalFooter, ModalHeader } from "./bootstrap/Modal";
// Common // Common
export { RebootButton } from "./common/RebootButton"; export { RebootButton } from "./common/RebootButton";
export { WiFiSettings } from "./common/WiFiSettings/WiFiSettings"; export { WiFiSettings } from "./common/WiFiSettings/WiFiSettings";
export { ResetWiFiSettings } from "./common/WiFiSettings/ResetWiFiSettings";
// Form // Form
export { ForisForm } from "./form/components/ForisForm"; export { ForisForm } from "./form/components/ForisForm";
export { export {
@ -72,7 +70,6 @@ export { ErrorMessage } from "./utils/ErrorMessage";
export { useClickOutside } from "./utils/hooks"; export { useClickOutside } from "./utils/hooks";
export { toLocaleDateString } from "./utils/datetime"; export { toLocaleDateString } from "./utils/datetime";
export { displayCard } from "./utils/displayCard"; export { displayCard } from "./utils/displayCard";
export { isPluginInstalled } from "./utils/isPluginInstalled";
// Foris URL // Foris URL
export { ForisURLs, REFORIS_URL_PREFIX } from "./utils/forisUrls"; export { ForisURLs, REFORIS_URL_PREFIX } from "./utils/forisUrls";
@ -83,7 +80,6 @@ export {
validateIPv6Address, validateIPv6Address,
validateIPv6Prefix, validateIPv6Prefix,
validateDomain, validateDomain,
validateHostname,
validateDUID, validateDUID,
validateMAC, validateMAC,
validateMultipleEmails, validateMultipleEmails,

View File

@ -1,16 +1,16 @@
/* /*
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (http://www.nic.cz/) * Copyright (C) 2019 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.
*/ */
export const REFORIS_URL_PREFIX = process.env.REFORIS_PREFIX || ""; export const REFORIS_URL_PREFIX = "/reforis";
export const REFORIS_API_URL_PREFIX = `${REFORIS_URL_PREFIX}/api`; export const REFORIS_API_URL_PREFIX = `${REFORIS_URL_PREFIX}/api`;
export const ForisURLs = { export const ForisURLs = {
login: `/login?${REFORIS_URL_PREFIX}/`, login: `${REFORIS_URL_PREFIX}/login`,
logout: `/logout`, logout: `${REFORIS_URL_PREFIX}/logout`,
static: `${REFORIS_URL_PREFIX}/static/reforis`, static: `${REFORIS_URL_PREFIX}/static/reforis`,
wifi: `${REFORIS_URL_PREFIX}/network-settings/wifi`, wifi: `${REFORIS_URL_PREFIX}/network-settings/wifi`,
@ -18,12 +18,9 @@ export const ForisURLs = {
packageManagement: { packageManagement: {
updateSettings: `${REFORIS_URL_PREFIX}/package-management/update-settings`, updateSettings: `${REFORIS_URL_PREFIX}/package-management/update-settings`,
updates: `${REFORIS_URL_PREFIX}/package-management/updates`, updates: `${REFORIS_URL_PREFIX}/package-management/updates`,
packages: `${REFORIS_URL_PREFIX}/package-management/packages`,
}, },
// Plugins
storage: `${REFORIS_URL_PREFIX}/storage`, storage: `${REFORIS_URL_PREFIX}/storage`,
sentinelAgreement: `${REFORIS_URL_PREFIX}/sentinel/agreement`,
// Notifications links are used with <Link/> inside Router, thus url subdir is not required. // Notifications links are used with <Link/> inside Router, thus url subdir is not required.
overview: "/overview", overview: "/overview",
@ -32,7 +29,7 @@ export const ForisURLs = {
approveUpdates: "/package-management/updates", approveUpdates: "/package-management/updates",
languages: "/package-management/languages", languages: "/package-management/languages",
maintenance: "/administration/maintenance", rebootPage: "/administration/reboot",
luci: "/cgi-bin/luci", luci: "/cgi-bin/luci",
// API // API

View File

@ -1,9 +0,0 @@
/*
* Copyright (C) 2020 CZ.NIC z.s.p.o. (http://www.nic.cz/)
*
* This is free software, licensed under the GNU General Public License v3.
* See /LICENSE for more information.
*/
export const isPluginInstalled = (pluginName) =>
ForisPlugins.some((plugin) => plugin.name === pluginName);

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/) * Copyright (C) 2019 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.
@ -14,7 +14,6 @@ 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."),
@ -24,8 +23,7 @@ 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-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,}$/, domain: /^[A-Za-z0-9][A-Za-z0-9.-]{1,255}$/,
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-.]+ *)*$/,
@ -42,7 +40,6 @@ 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");
@ -52,7 +49,6 @@ export {
validateIPv6Address, validateIPv6Address,
validateIPv6Prefix, validateIPv6Prefix,
validateDomain, validateDomain,
validateHostname,
validateDUID, validateDUID,
validateMAC, validateMAC,
validateMultipleEmails, validateMultipleEmails,

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2020-2022 CZ.NIC z.s.p.o. (http://www.nic.cz/) * Copyright (C) 2020 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.
@ -7,33 +7,55 @@
/* eslint no-console: "off" */ /* eslint no-console: "off" */
import { REFORIS_URL_PREFIX } from "../utils/forisUrls"; import { ForisURLs } from "../utils/forisUrls";
const { io } = require("socket.io-client"); const PROTOCOL = window.location.protocol === "http:" ? "ws" : "wss";
const URL = process.env.LIGHTTPD
? `${PROTOCOL}://${window.location.host}/foris-ws`
: `${PROTOCOL}://${window.location.hostname}:${9081}`;
const WAITING_FOR_CONNECTION_TIMEOUT = 500;
export class WebSockets { export class WebSockets {
constructor() { constructor() {
this.socket = io("/notifications", { this.ws = new WebSocket(URL);
path: `${REFORIS_URL_PREFIX}/reforis-ws`, this.ws.onerror = (e) => {
}); if (window.location.pathname !== ForisURLs.login) {
this.connection = null; console.error(
this.socket.on("disconnect", (reason) => { "WS: Error observed, you aren't logged probably."
this.connection = null; );
console.debug(`SocketIO disconnected (${reason})`); window.location.replace(ForisURLs.login);
}); }
this.socket.on("notification", (message) => { console.error(`WS: Error: ${e}`);
console.debug("WS: Received Message:", message); };
this.dispatch(message); this.ws.onmessage = (e) => {
}); console.debug(`WS: Received Message: ${e.data}`);
this.socket.on("connect", (connection) => { const data = JSON.parse(e.data);
this.connection = connection; this.dispatch(data);
console.debug(`SocketIO connected.`); };
}); this.ws.onopen = () => {
console.debug("WS: Connection open.");
};
this.ws.onclose = () => {
console.debug("WS: Connection closed.");
};
// callbacks[module][action] // callbacks[module][action]
this.callbacks = {}; this.callbacks = {};
} }
waitForConnection(callback) {
if (this.ws.readyState === 1) {
callback();
} else {
const that = this;
setTimeout(() => {
that.waitForConnection(callback);
}, WAITING_FOR_CONNECTION_TIMEOUT);
}
}
bind(module, action, callback) { bind(module, action, callback) {
this.callbacks[module] = this.callbacks[module] || {}; this.callbacks[module] = this.callbacks[module] || {};
this.callbacks[module][action] = this.callbacks[module][action] || []; this.callbacks[module][action] = this.callbacks[module][action] || [];
@ -41,6 +63,13 @@ export class WebSockets {
return this; return this;
} }
subscribe(module) {
this.waitForConnection(() => {
this.send("subscribe", module);
});
return this;
}
unbind(module, action, callback) { unbind(module, action, callback) {
const callbacks = this.callbacks[module][action]; const callbacks = this.callbacks[module][action];
@ -54,12 +83,28 @@ export class WebSockets {
} }
if (Object.keys(this.callbacks[module]).length === 0) { if (Object.keys(this.callbacks[module]).length === 0) {
delete this.callbacks[module]; this.unsubscribe(module);
} }
return this; return this;
} }
unsubscribe(module) {
this.waitForConnection(() => {
this.send("unsubscribe", module);
delete this.callbacks[module];
});
return this;
}
send(action, params) {
const payload = JSON.stringify({ action, params });
this.waitForConnection(() => {
this.ws.send(payload);
});
return this;
}
dispatch(json) { dispatch(json) {
if (!json.module) return; if (!json.module) return;
@ -68,15 +113,18 @@ export class WebSockets {
chain = this.callbacks[json.module][json.action]; chain = this.callbacks[json.module][json.action];
} catch (error) { } catch (error) {
if (error instanceof TypeError) { if (error instanceof TypeError) {
console.debug( console.warn(
`Callbacks for this module wasn't found: ${json.module}` `Callback for this message wasn't found:${error.data}`
); );
} else throw error; } else throw error;
} }
if (typeof chain === "undefined") return; if (typeof chain === "undefined") return;
console.debug("Handling WS message", json);
chain.forEach((callback) => callback(json)); chain.forEach((callback) => callback(json));
} }
close() {
this.ws.close();
}
} }

View File

@ -32,7 +32,7 @@ export function useWSForisModule(
setData(message.data); setData(message.data);
} }
ws.bind(module, action, callback); ws.subscribe(module).bind(module, action, callback);
return () => { return () => {
ws.unbind(module, action, callback); ws.unbind(module, action, callback);

View File

@ -1,165 +1,157 @@
# Czech translations for Foris JS. # Czech translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2022-03-15 22:41+0000\n" "PO-Revision-Date: 2019-09-29 15:56+0000\n"
"Last-Translator: Koli <lukas.koluch@gmail.com>\n" "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n"
"Language: cs\n" "Language: cs\n"
"Language-Team: Czech <https://hosted.weblate.org/projects/turris/foris-" "Language-Team: Czech "
"js/cs/>\n" "<https://hosted.weblate.org/projects/turris/reforis/cs/>\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Toto není platná IPv4 adresa."
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Tohle není platná IPv6 adresa."
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Toto není platný IPv6 prefix."
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr "Toto není platné doménové jméno."
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr "Tohle není platné DUID."
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr "Toto není platná MAC adresa."
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Neobsahuje seznam e-mailů oddělených čárkou."
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "Platnost relace skončila. Přihlaste se znovu." msgstr "Platnost relace skončila. Přihlaste se znovu."
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "Došlo k chybě kvůli překročení časového limitu." msgstr "Došlo k chybě kvůli překročení časového limitu."
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "Neobdržena žádná odezva." msgstr "Neobdržena žádná odezva."
#: src/api/utils.js:79 #: src/api/utils.js:76
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 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "Vyžadován restart." msgstr "Vyžadován restart"
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "Restartovat" msgstr "Restartovat"
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "Varování!" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "Opravdu chcete router restartovat?" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "Storno" msgstr ""
#: src/common/RebootButton.js:73 #: src/common/RebootButton.js:73
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "Potvrdit restart" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "Při resetu nastavení Wi-Fi došlo k chybě." msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41 #: src/common/WiFiSettings/ResetWiFiSettings.js:41
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "Nastavení Wi-Fi jsou uvedena do výchozího stavu."
#: src/common/WiFiSettings/ResetWiFiSettings.js:55
#: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings"
msgstr "Resetovat nastavení Wi-Fi"
#: 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 "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
"Fi settings. Note that this will remove the\n"
"current Wi-Fi configuration and restore the default values.\n"
" "
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "Wi-Fi ${deviceID + 1}" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password" msgstr "Zapnout"
msgstr "Heslo"
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr "Skrýt SSID"
#: src/common/WiFiSettings/WiFiForm.js:186
#, fuzzy
msgid "802.11n/ac/ax mode"
msgstr "Režim 802.11n/ac"
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr "Kanál"
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr "Šifrování"
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "automaticky" msgstr "automaticky"
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
#, fuzzy msgid "Enable Guest Wifi"
msgid "Custom" msgstr "Zapnout WiFi pro hosty"
msgstr "automaticky"
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "Zapnout Wi-Fi pro hosty" msgstr "Heslo"
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "Wi-Fi QR kód" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "Stáhnout PDF" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
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: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"
@ -184,72 +176,31 @@ msgstr "802.11ac kanál šíře 40 MHz"
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "802.11ac kanál šíře 80 MHz" msgstr "802.11ac kanál šíře 80 MHz"
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr "802.11ac kanál šíře 160 MHz"
#: src/common/WiFiSettings/constants.js:16
#, fuzzy
msgid "802.11ax - 20 MHz wide channel"
msgstr "802.11ac kanál šíře 20 MHz"
#: 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)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr "pouze WPA2"
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
msgstr "" " "
"SSID obsahující nestandardní znaky může na některých zařízení způsobovat "
"problémy."
#: src/common/WiFiSettings/constants.js:34
#, fuzzy
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
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:37 #: src/common/WiFiSettings/constants.js:24
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:40 #: src/common/WiFiSettings/constants.js:25
#, fuzzy
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\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,"
@ -258,13 +209,15 @@ 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:43 #: src/common/WiFiSettings/constants.js:29
#, fuzzy
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" 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 "
@ -274,14 +227,16 @@ msgstr ""
" 20 MHz.\n" " 20 MHz.\n"
" " " "
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
#, fuzzy
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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" "\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). "
@ -292,33 +247,25 @@ msgstr ""
"hosty“.\n" "hosty“.\n"
" " " "
#: src/common/WiFiSettings/constants.js:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "Nastavení úspěšně uložena" msgstr "Nastavení úspěšně uložena"
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
"Změny, které byly provedeny, nebyly uloženy. Jste si jistý, že chcete " "Změny, které byly provedeny, nebyly uloženy. Jste si jistý, že chcete "
"opustit stránku?" "opustit stránku?"
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "Aktualizuji" msgstr "Aktualizuji"
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "Načítám nastavení" msgstr "Načítám nastavení"
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "Uložit" msgstr "Uložit"
@ -326,62 +273,6 @@ msgstr "Uložit"
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "Došlo k chybě při získávání dat." msgstr "Došlo k chybě při získávání dat."
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Toto není platná IPv4 adresa."
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Tohle není platná IPv6 adresa."
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Toto není platný IPv6 prefix."
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr "Toto není platné doménové jméno."
#: 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."
msgstr "Tohle není platné DUID."
#: src/utils/validations.js:19
msgid "This is not a valid MAC address."
msgstr "Toto není platná MAC adresa."
#: src/utils/validations.js:20
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Neobsahuje seznam e-mailů oddělených čárkou."
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "Došlo k neznámé chybě. Další informace naleznete v konzoli." #~ msgstr "Došlo k neznámé chybě. Další informace naleznete v konzoli."
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr "Zapnout"
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ "Pokud počet karet pro Wi-Fi "
#~ "neodpovídá skutečnosti, můžete zkusit "
#~ "resetovat nastavení Wi-Fi. Nezapomeňte "
#~ "ale, že\n"
#~ "se tím odstraní aktuální konfigurace a vrátí se výchozí hodnoty.\n"
#~ " "

View File

@ -1,13 +1,13 @@
# Danish translations for Foris JS. # Danish translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\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"
@ -16,49 +16,69 @@ msgstr ""
"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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -66,7 +86,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -74,88 +94,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -180,102 +175,67 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -283,125 +243,6 @@ msgstr ""
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: 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."
msgstr ""
#: 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."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""

View File

@ -1,167 +1,158 @@
# German translations for Foris JS. # German translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2021-09-24 19:38+0000\n" "PO-Revision-Date: 2019-09-02 07:21+0000\n"
"Last-Translator: CryptKid <CryptKiddie@chaospott.de>\n" "Last-Translator: Ulrich Günther <mail@ulrich-guenther.at>\n"
"Language: de\n" "Language: de\n"
"Language-Team: German <https://hosted.weblate.org/projects/turris/foris-" "Language-Team: German "
"js/de/>\n" "<https://hosted.weblate.org/projects/turris/reforis/de/>\n"
"Plural-Forms: nplurals=2; plural=n != 1\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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Dies ist keine gültige IPv4-Adresse."
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Dies ist keine gültige IPv6-Adresse."
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Dies ist kein gültiges IPv6-Präfix."
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr "Dies ist kein gültiger Domainname."
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr "Dies ist keine gültige DUID."
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr "Dies ist keine gültige MAC-Adresse."
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Enthält keine Liste von E-Mails, die durch Kommas getrennt sind."
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "Die Sitzung ist abgelaufen. Bitte erneut anmelden." msgstr ""
#: src/api/utils.js:63
msgid "Timeout error occurred."
msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:66
msgid "Timeout error occurred."
msgstr "Eine Zeitüberschreitung ist aufgetreten."
#: src/api/utils.js:69
msgid "No response received." msgid "No response received."
msgstr "Keine Antwort erhalten." msgstr "Keine Antwort erhalten."
#: src/api/utils.js:79 #: src/api/utils.js:76
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 #: src/common/RebootButton.js:33
msgid "Copied!" #, fuzzy
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "Neustart-Einleitung fehlgeschlagen." msgstr "Neustart ist erforderlich"
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "Systemneustart" msgstr "Systemneustart"
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "Warnung!" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "Sind Sie sicher, dass Sie den Router neu starten wollen?" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "Abbrechen" msgstr ""
#: src/common/RebootButton.js:73 #: src/common/RebootButton.js:73
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "Neustart bestätigen" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
"Ein Fehler ist während der Zurücksetzung der WLAN-Einstellungen "
"aufgetreten."
#: src/common/WiFiSettings/ResetWiFiSettings.js:41 #: src/common/WiFiSettings/ResetWiFiSettings.js:41
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "WLAN-Einstellungen wurden auf Standard zurückgesetzt." msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "WLAN-Einstellungen zurücksetzen" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "WLAN ${deviceID + 1}"
#: src/common/WiFiSettings/WiFiForm.js:132
#: src/common/WiFiSettings/WiFiGuestForm.js:80
msgid "Password"
msgstr "Passwort"
#: src/common/WiFiSettings/WiFiForm.js:146
msgid "Hide SSID"
msgstr "SSID verbergen"
#: src/common/WiFiSettings/WiFiForm.js:186
#, fuzzy
msgid "802.11n/ac/ax mode"
msgstr "802.11n/ac Modus"
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr "Kanal"
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243 #: src/common/WiFiSettings/WiFiForm.js:84
msgid "Enable"
msgstr "Aktivieren"
#: src/common/WiFiSettings/WiFiForm.js:215
msgid "auto" msgid "auto"
msgstr "automatisch" msgstr "automatisch"
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
#, fuzzy msgid "Enable Guest Wifi"
msgid "Custom"
msgstr "automatisch"
#: src/common/WiFiSettings/WiFiGuestForm.js:42
msgid "Enable Guest Wi-Fi"
msgstr "Gast-WLAN aktivieren" msgstr "Gast-WLAN aktivieren"
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Password"
msgstr "Passwort"
#: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "WLAN QR-Code" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "PDF herunterladen" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
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: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"
@ -186,71 +177,31 @@ msgstr "802.11ac - 40 MHz breiter Kanal"
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "802.11ac - 80 MHz breiter Kanal" msgstr "802.11ac - 80 MHz breiter Kanal"
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
#, fuzzy
msgid "802.11ac - 160 MHz wide channel"
msgstr "802.11ac - 80 MHz breiter Kanal"
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
msgstr "" " "
#: src/common/WiFiSettings/constants.js:34
#, fuzzy
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
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:37 #: src/common/WiFiSettings/constants.js:24
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:40 #: src/common/WiFiSettings/constants.js:25
#, fuzzy
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\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 "
@ -259,13 +210,15 @@ 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:43 #: src/common/WiFiSettings/constants.js:29
#, fuzzy
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
"\n" "\n"
" Ändern Sie diese Option, um den Betriebsmodus 802.11n/ac " " Ändern Sie diese Option, um den Betriebsmodus 802.11n/ac "
@ -276,14 +229,16 @@ msgstr ""
" Option mit 20 MHz breitem Kanal.\n" " Option mit 20 MHz breitem Kanal.\n"
" " " "
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
#, fuzzy
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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" "\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. "
@ -294,31 +249,23 @@ msgstr ""
"Gastnetzwerk eingestellt werden.\n" "Gastnetzwerk eingestellt werden.\n"
" " " "
#: src/common/WiFiSettings/constants.js:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "Einstellungen erfolgreich gespeichert" msgstr "Einstellungen erfolgreich gespeichert"
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "Aktualisiere" msgstr "Aktualisiere"
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "Einstellungen laden" msgstr "Einstellungen laden"
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "Speichern" msgstr "Speichern"
@ -326,55 +273,6 @@ msgstr "Speichern"
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Dies ist keine gültige IPv4-Adresse."
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Dies ist keine gültige IPv6-Adresse."
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Dies ist kein gültiges IPv6-Präfix."
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr "Dies ist kein gültiger Domainname."
#: 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."
msgstr "Dies ist keine gültige DUID."
#: src/utils/validations.js:19
msgid "This is not a valid MAC address."
msgstr "Dies ist keine gültige MAC-Adresse."
#: src/utils/validations.js:20
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Enthält keine Liste von E-Mails, die durch Kommas getrennt sind."
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr "Aktivieren"
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ msgstr ""

View File

@ -1,73 +1,92 @@
# Greek translations for Foris JS. # Greek translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2021-02-09 16:50+0000\n" "PO-Revision-Date: 2019-02-19 13:34+0100\n"
"Last-Translator: Michalis <michalisntovas@yahoo.gr>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: el\n" "Language: el\n"
"Language-Team: Greek <https://hosted.weblate.org/projects/turris/foris-" "Language-Team: el <LL@li.org>\n"
"js/el/>\n" "Plural-Forms: nplurals=2; plural=(n != 1)\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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "Επανεκκίνηση"
#: src/common/RebootButton.js:66
msgid "Warning!"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:69
msgid "Are you sure you want to restart the router?" msgid "Reboot confirmation"
msgstr "Είστε βέβαιοι ότι θέλετε να κάνετε επανεκκίνηση του δρομολογητή;" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?"
msgstr ""
#: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "Άκυρο" msgstr ""
#: src/common/RebootButton.js:73 #: src/common/RebootButton.js:73
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "Επιβεβαίωση επανεκκίνησης" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -75,89 +94,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
#, fuzzy
msgid "Channel"
msgstr "Άκυρο"
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -182,102 +175,67 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -285,125 +243,6 @@ msgstr ""
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: 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."
msgstr ""
#: 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."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""

View File

@ -1,13 +1,13 @@
# English translations for Foris JS. # English translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\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"
@ -17,49 +17,69 @@ msgstr ""
"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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "This is not a valid IPv4 address."
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "This is not a valid IPv6 address."
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "This is not a valid IPv6 prefix."
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr "This is not a valid domain name."
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr "This is not a valid DUID."
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr "This is not a valid MAC address."
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Doesn't contain a list of emails separated by commas."
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr "Reboot is required"
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "Reboot"
#: src/common/RebootButton.js:69
msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:70
msgid "Warning!"
msgstr ""
#: src/common/RebootButton.js:68
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -67,7 +87,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -75,331 +95,179 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password" msgstr "Enable"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr "auto"
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr "Enable Guest Wifi"
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr "Password"
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94
msgid "SSID can't be longer than 32 symbols"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:79
#: src/common/WiFiSettings/WiFiSettings.js:96
msgid "SSID can't be empty"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:81 #: src/common/WiFiSettings/WiFiSettings.js:81
#: src/common/WiFiSettings/WiFiSettings.js:98 msgid "SSID can't be longer than 32 symbols"
msgid "SSID can't be longer than 32 bytes" msgstr "SSID can't be longer than 32 symbols"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:74
#: src/common/WiFiSettings/WiFiSettings.js:82
msgid "SSID can't be empty"
msgstr "SSID can't be empty"
#: src/common/WiFiSettings/WiFiSettings.js:76
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: src/common/WiFiSettings/WiFiSettings.js:101
msgid "Password must contain at least 8 symbols" msgid "Password must contain at least 8 symbols"
msgstr "" msgstr "Password must contain at least 8 symbols"
#: 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 "Disabled"
#: 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 "" msgstr "802.11n - 20 MHz wide channel"
#: 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 "" msgstr "802.11n - 40 MHz wide channel"
#: 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 "" msgstr "802.11ac - 20 MHz wide channel"
#: 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 "" msgstr "802.11ac - 40 MHz wide channel"
#: 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 "" msgstr "802.11ac - 80 MHz wide channel"
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
"\n"
" WPA2 pre-shared key, that is required to connect to the network.\n"
" "
#: src/common/WiFiSettings/constants.js:24
msgid "If set, network is not visible when scanning for available networks."
msgstr "If set, network is not visible when scanning for available networks."
#: src/common/WiFiSettings/constants.js:25
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"
" 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."
#: src/common/WiFiSettings/constants.js:29
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 ""
"\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"
" "
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:34
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: src/common/WiFiSettings/constants.js:37
msgid "If set, network is not visible when scanning for available networks."
msgstr ""
#: src/common/WiFiSettings/constants.js:40
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " Enables Wi-Fi for guests, which is separated from LAN network. "
"supported by all your devices. It usually has less interference, but the " "Devices connected to this network are allowed to\n"
"signal does not carry so well indoors." " 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 "" msgstr ""
"\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"
" "
#: src/common/WiFiSettings/constants.js:43 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: 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 ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "" msgstr "Updating"
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr "Load settings"
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "" msgstr "Save"
#: src/utils/ErrorMessage.js:16 #: src/utils/ErrorMessage.js:16
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: 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."
msgstr ""
#: 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."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""

View File

@ -1,15 +1,15 @@
# Spanish translations for Foris JS. # Spanish translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2020-05-25 13:41+0000\n" "PO-Revision-Date: 2019-10-29 06:53+0000\n"
"Last-Translator: Eduardo Cuthbert <elguber@gmail.com>\n" "Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
"Language: es\n" "Language: es\n"
"Language-Team: Spanish " "Language-Team: Spanish "
"<https://hosted.weblate.org/projects/turris/reforis/es/>\n" "<https://hosted.weblate.org/projects/turris/reforis/es/>\n"
@ -17,59 +17,78 @@ msgstr ""
"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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "La sesiòn ha expirado. Por favor, authentìquese otra vez." msgstr ""
#: src/api/utils.js:63
msgid "Timeout error occurred."
msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:66
msgid "Timeout error occurred."
msgstr "Error de tiempo de espera ocurrido."
#: src/api/utils.js:69
msgid "No response received." msgid "No response received."
msgstr "Respuesta no recivida." msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
"Un error desconocido ha ocurrido. Compruebe la consola para mas "
"informaciòn."
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!" #, fuzzy
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr "Se necesita reiniciar"
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "Reiniciar"
#: src/common/RebootButton.js:69
msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:70
msgid "Warning!"
msgstr ""
#: src/common/RebootButton.js:68
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr "¿Confirma que quiere reiniciar el enrutador?"
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr "Cancelar"
#: src/common/RebootButton.js:73 #: src/common/RebootButton.js:73
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr "Confirmar reinicio"
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -77,88 +96,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password" msgstr "Activar"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr "Contraseña"
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -183,222 +177,76 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "Configuraciòn salvada satisfactoriamente" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "Los cambios hechos podrìan no salvarse. Està seguro que quiere salir?" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
#, fuzzy #, fuzzy
msgid "Updating" msgid "Updating"
msgstr "Actualizando" msgstr "Actualizaciones"
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
#, fuzzy #, fuzzy
msgid "Load settings" msgid "Load settings"
msgstr "Cargando configuraciòn" msgstr "Configuración de LAN"
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "Salvar" msgstr ""
#: src/utils/ErrorMessage.js:16 #: src/utils/ErrorMessage.js:16
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "Error ocurrido mientras se recuperaban los datos." msgstr ""
#: src/utils/validations.js:13 #~ msgid "An unknown error occurred. Check the console for more info."
msgid "This is not a valid IPv4 address."
msgstr "Esto no es una direcciòn IPv4 vàlida."
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Esto no es una direcciòn IPv6 vàlida."
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Esto no es un prefijo IPv6 vàlido."
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr "Esto no es un nombre de dominio vàlido."
#: 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."
msgstr "Este no es un DUID vàlido."
#: src/utils/validations.js:19
msgid "This is not a valid MAC address."
msgstr "Esta no es una direcciòn MAC vàlida."
#: src/utils/validations.js:20
msgid "Doesn't contain a list of emails separated by commas."
msgstr "No contiene una lista de E-mails separados por comas."
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ msgstr ""
#~ "Un error desconocido ha ocurrido. "
#~ "Compruebe la consola para mas "
#~ "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 "" #~ msgstr ""

View File

@ -1,13 +1,13 @@
# Finnish translations for Foris JS. # Finnish translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\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"
@ -16,49 +16,69 @@ msgstr ""
"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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -66,7 +86,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -74,88 +94,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -180,102 +175,67 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -283,125 +243,6 @@ msgstr ""
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: 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."
msgstr ""
#: 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."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""

View File

@ -1,13 +1,13 @@
# Faroese translations for Foris JS. # Faroese translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\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"
@ -16,49 +16,69 @@ msgstr ""
"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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -66,7 +86,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -74,88 +94,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -180,102 +175,67 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -283,125 +243,6 @@ msgstr ""
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: 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."
msgstr ""
#: 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."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""

View File

@ -1,63 +1,55 @@
# Translations template for Foris JS. # Translations template for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2020 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
# #
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Foris JS 5.3.0\n" "Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: tech.support@turris.cz\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-05-07 16:12+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"
"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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -65,7 +57,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -73,88 +65,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:81
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:83
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:214
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -179,102 +146,67 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:166
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -299,18 +231,14 @@ 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 "" msgstr ""
#: src/utils/validations.js:19 #: src/utils/validations.js:18
msgid "This is not a valid MAC address." msgid "This is not a valid MAC address."
msgstr "" msgstr ""
#: src/utils/validations.js:20 #: src/utils/validations.js:19
msgid "Doesn't contain a list of emails separated by commas." msgid "Doesn't contain a list of emails separated by commas."
msgstr "" msgstr ""

View File

@ -1,334 +1,247 @@
# French translations for Foris JS. # French translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2022-01-14 05:53+0000\n" "PO-Revision-Date: 2019-10-14 11:04+0000\n"
"Last-Translator: Gabriel GRONDIN <gglinnk@protonmail.com>\n" "Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n"
"Language: fr\n" "Language: fr\n"
"Language-Team: French <https://hosted.weblate.org/projects/turris/foris-" "Language-Team: French "
"js/fr/>\n" "<https://hosted.weblate.org/projects/turris/reforis/fr/>\n"
"Plural-Forms: nplurals=2; plural=n > 1\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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Ce nest pas une adresse IPv4 valide."
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Ce nest pas une adresse IPv6 valide."
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Ce nest pas un préfixe IPv6 valide."
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr "Ce nest pas un nom de domaine valide."
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr "Ce nest pas un DUID valide."
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr "Ce nest pas une adresse MAC valide."
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
"Il ne contient pas une liste dadresses de messagerie séparées par des "
"virgules."
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "Cette session a expiré. Veuillez vous reconnecter." msgstr "Cette session a expiré. Veuillez vous reconnecter."
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "Le délai a expiré." msgstr "Le délai a expiré."
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "Aucun réponse reçue." msgstr "Aucun réponse reçue."
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "Une erreur dAPI inconnue sest produite." msgstr "Une erreur dAPI inconnue sest produite."
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!" #, fuzzy
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "La demande de redémarrage a échoué." msgstr "Un redémarrage est nécessaire"
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "Redémarrer" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "Attention!" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "Voulez-vous vraiment redémarrer le routeur ?" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" msgstr ""
#: src/common/RebootButton.js:73 #: src/common/RebootButton.js:73
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "Confirmer le redémarrage" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
"Une erreur s'est produite lors de la réinitialisation des paramètres Wi-"
"Fi."
#: src/common/WiFiSettings/ResetWiFiSettings.js:41 #: src/common/WiFiSettings/ResetWiFiSettings.js:41
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "Les paramètres Wi-Fi sont définis par défaut."
#: src/common/WiFiSettings/ResetWiFiSettings.js:55
#: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings"
msgstr "Réinitialiser les paramètres Wi-Fi"
#: 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 "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
msgid "Wi-Fi ${deviceID + 1}" #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgstr "Wi-Fi ${deviceID + 1}" msgid "Reset Wi-Fi Settings"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
"Fi settings. Note that this will remove the\n"
"current Wi-Fi configuration and restore the default values.\n"
" "
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:84
msgid "Enable"
msgstr "Activer"
#: src/common/WiFiSettings/WiFiForm.js:215
msgid "auto"
msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Enable Guest Wifi"
msgstr "Activer le mode Wi-Fi invité"
#: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Password" msgid "Password"
msgstr "Mot de passe" msgstr "Mot de passe"
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Hide SSID"
msgstr "Masquer le SSID"
#: src/common/WiFiSettings/WiFiForm.js:186
#, fuzzy
msgid "802.11n/ac/ax mode"
msgstr "Mode 802.11n/ac"
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr "Canal"
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr "Chiffrement"
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto"
msgstr "automatique"
#: src/common/WiFiSettings/WiFiForm.js:284
msgid "Custom"
msgstr "Personnalisé"
#: src/common/WiFiSettings/WiFiGuestForm.js:42
msgid "Enable Guest Wi-Fi"
msgstr "Activer le mode Wi-Fi invité"
#: src/common/WiFiSettings/WiFiQRCode.js:71
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "Code QR Wi-Fi" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "Télécharger le PDF" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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 ""
#: src/common/WiFiSettings/WiFiSettings.js:79 #: src/common/WiFiSettings/WiFiSettings.js:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
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: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é"
#: 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 - canal large de 20 MHz" msgstr ""
#: 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 - canal large de 40 MHz" msgstr ""
#: 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 - canal large de 20 MHz" msgstr ""
#: 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 - canal large de 40 MHz" msgstr ""
#: 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 - canal large de 80 MHz" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr "802.11ac - canal large de 160 MHz"
#: 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"
msgstr "WPA3 seulement"
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr "WPA3 avec WPA2 comme solution de repli (par défaut)"
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr "WPA2 seulement"
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some "
"devices."
msgstr ""
"Un SSID qui contient des caractères non standard peut causer des "
"problèmes sur certains appareils."
#: src/common/WiFiSettings/constants.js:34
#, fuzzy
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
"\n" "\n"
" Clé pré-partagée WPA2, qui est nécessaire pour se connecter au " " WPA2 pre-shared key, that is required to connect to the network.\n"
"réseau.\n"
" " " "
msgstr ""
#: src/common/WiFiSettings/constants.js:37 #: src/common/WiFiSettings/constants.js:24
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 "
"réseaux disponibles."
#: src/common/WiFiSettings/constants.js:40 #: src/common/WiFiSettings/constants.js:25
#, fuzzy
msgid "" msgid ""
"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."
msgstr ""
"\n" "\n"
" La bande 2,4 GHz est plus largement prise en charge par les " " The 2.4 GHz band is more widely supported by clients, but tends "
"clients, mais a tendance à présenter plus d'interférences. La bande 5 GHz" "to have more interference. The 5 GHz band is a\n"
" est une norme\n" " newer standard and may not be supported by all your devices. It "
" plus récente et peut ne pas être prise en charge par tous vos " "usually has less interference, but the signal\n"
"appareils. Elle présente généralement moins d'interférences, mais le " " does not carry so well indoors."
"signal\n" msgstr ""
" mais le signal ne passe pas aussi bien à l'intérieur."
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
#, fuzzy
msgid "" msgid ""
"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."
msgstr ""
"\n" "\n"
" Modifiez ce paramètre pour régler le mode de fonctionnement " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"802.11n/ac. Le mode 802.11n avec des canaux larges de 40 MHz permet " "40 MHz wide channels can yield higher\n"
"d'obtenir un meilleur\n" " throughput but can cause more interference in the network. If you"
" débit plus élevé, mais peut provoquer davantage d'interférences " " don't know what to choose, use the default\n"
"sur le réseau. Si vous ne savez pas quoi choisir, utilisez l'option par " " option with 20 MHz wide channel.\n"
"défaut\n"
" l'option par défaut avec un canal large de 20 MHz.\n"
" " " "
#: src/common/WiFiSettings/constants.js:46
#, fuzzy
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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:34
msgid ""
"\n" "\n"
" Active le Wi-Fi pour les invités, qui est séparé du réseau LAN. " " Enables Wi-Fi for guests, which is separated from LAN network. "
"Les périphériques connectés à ce réseau sont autorisés à\n" "Devices connected to this network are allowed to\n"
" accéder à Internet, mais ne sont pas autorisés à accéder aux " " access the internet, but aren't allowed to access other devices "
"autres périphériques et à l'interface de configuration du routeur.\n" "and the configuration interface of the router.\n"
" Les paramètres du réseau invité peuvent être définis dans " " Parameters of the guest network can be set in the Guest network "
"l'onglet Réseau invité.\n" "tab.\n"
" " " "
#: src/common/WiFiSettings/constants.js:49
msgid ""
"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."
msgstr "" msgstr ""
"La norme WPA3 est la nouvelle méthode de chiffrement la plus sûre qu'il "
"est suggéré d'utiliser avec tout appareil qui la prend en charge. Les "
"appareils plus anciens qui ne prennent pas en charge la norme WPA3 "
"nécessitent la norme WPA2. Si vous rencontrez des problèmes pour "
"connecter des appareils plus anciens, essayez d'activer WPA2."
#: src/form/components/ForisForm.js:121 #: src/form/components/ForisForm.js:112
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "Paramètres enregistrés avec succès" msgstr "Paramètres enregistrés avec succès"
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
"Il se peut que vos modifications ne soient pas enregistrées. Êtes-vous " "Il se peut que vos modifications ne soient pas enregistrées. Êtes-vous "
"sûr de vouloir quitter?" "sûr de vouloir quitter?"
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "Mise à jour en cours" msgstr "Mise à jour en cours"
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "Charger les paramètres" msgstr "Charger les paramètres"
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "Enregistrer" msgstr "Enregistrer"
@ -336,60 +249,9 @@ msgstr "Enregistrer"
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "Une erreur sest produite lors du chargement des données." msgstr "Une erreur sest produite lors du chargement des données."
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Ce nest pas une adresse IPv4 valide."
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Ce nest pas une adresse IPv6 valide."
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Ce nest pas un préfixe IPv6 valide."
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr "Le nom de domaine est invalide."
#: 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."
msgstr "Ce nest pas un DUID valide."
#: src/utils/validations.js:19
msgid "This is not a valid MAC address."
msgstr "Ce nest pas une adresse MAC valide."
#: src/utils/validations.js:20
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
"Il ne contient pas une liste dadresses de messagerie séparées par des "
"virgules."
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ "Une erreur inconnue sest produite. " #~ "Une erreur inconnue sest produite. "
#~ "Vérifiez la console pour plus " #~ "Vérifiez la console pour plus "
#~ "dinformations." #~ "dinformations."
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr "Activer"
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ msgstr ""

View File

@ -1,13 +1,13 @@
# Croatian translations for Foris JS. # Croatian translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\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"
@ -17,49 +17,69 @@ msgstr ""
"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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -67,7 +87,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -75,88 +95,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -181,102 +176,67 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -284,125 +244,6 @@ msgstr ""
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: 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."
msgstr ""
#: 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."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""

View File

@ -1,65 +1,84 @@
# Hungarian translations for Foris JS. # Hungarian translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2021-01-07 01:26+0000\n" "PO-Revision-Date: 2019-02-19 13:34+0100\n"
"Last-Translator: Zoli <boritek@gmail.com>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: hu\n" "Language: hu\n"
"Language-Team: Hungarian <https://hosted.weblate.org/projects/turris" "Language-Team: hu <LL@li.org>\n"
"/foris-js/hu/>\n"
"Plural-Forms: nplurals=1; plural=0\n" "Plural-Forms: nplurals=1; plural=0\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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "A munkamenet lejárt. Kérjük, jelentkezzen be újra." msgstr ""
#: src/api/utils.js:63
msgid "Timeout error occurred."
msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:66
msgid "Timeout error occurred."
msgstr "Időtúllépési hiba történt."
#: src/api/utils.js:69
msgid "No response received." msgid "No response received."
msgstr "Nem érkezett válasz." msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "Ismeretlen API-hiba történt."
#: src/bootstrap/CopyInput.js:55
msgid "Copied!"
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -67,7 +86,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -75,88 +94,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -181,222 +175,74 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "Beállítások sikeresen elmentve" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
"Lehet, hogy az Ön által végrehajtott módosításokat nem menti a rendszer. "
"Biztosan el akar menni?"
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "Frissítés" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "Beállítások betöltése" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "Mentés" msgstr ""
#: src/utils/ErrorMessage.js:16 #: src/utils/ErrorMessage.js:16
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "Hiba történt az adatok beolvasása közben." msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Érvénytelen IPv4-cím."
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Érvénytelen IPv6-cím."
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Érvénytelen IPv6-előtag."
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr "Érvénytelen tartománynév."
#: 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."
msgstr "Érvénytelen DUID."
#: src/utils/validations.js:19
msgid "This is not a valid MAC address."
msgstr "Érvénytelen MAC-cím."
#: src/utils/validations.js:20
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Nem tartalmaz vesszővel elválasztott e-mail listát."
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "Ismeretlen hiba történt. További információ a konzolon talál."
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 "" #~ msgstr ""

View File

@ -1,13 +1,13 @@
# Italian translations for Foris JS. # Italian translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\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"
@ -16,49 +16,69 @@ msgstr ""
"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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -66,7 +86,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -74,88 +94,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -180,102 +175,67 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -283,125 +243,6 @@ msgstr ""
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: 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."
msgstr ""
#: 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."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""

View File

@ -1,13 +1,13 @@
# Japanese translations for Foris JS. # Japanese translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\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"
@ -17,49 +17,69 @@ msgstr ""
"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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "再起動" msgstr "再起動"
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -67,7 +87,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -75,89 +95,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password" msgstr "有効"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "自動" msgstr "自動"
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
#, fuzzy msgid "Enable Guest Wifi"
msgid "Custom"
msgstr "自動"
#: src/common/WiFiSettings/WiFiGuestForm.js:42
msgid "Enable Guest Wi-Fi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Password"
msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 "無効"
@ -182,102 +176,67 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "アップデート中…" msgstr "アップデート中…"
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -285,125 +244,6 @@ msgstr ""
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: 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."
msgstr ""
#: 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."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr "有効"
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""

View File

@ -1,13 +1,13 @@
# Korean translations for Foris JS. # Korean translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\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"
@ -16,49 +16,69 @@ msgstr ""
"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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -66,7 +86,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -74,88 +94,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -180,102 +175,67 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -283,125 +243,6 @@ msgstr ""
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: 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."
msgstr ""
#: 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."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""

View File

@ -1,13 +1,13 @@
# Lithuanian translations for Foris JS. # Lithuanian translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\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"
@ -17,49 +17,69 @@ msgstr ""
"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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -67,7 +87,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -75,88 +95,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -181,102 +176,67 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -284,125 +244,6 @@ msgstr ""
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: 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."
msgstr ""
#: 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."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""

View File

@ -0,0 +1,278 @@
# Norwegian Bokmål translations for PROJECT.
# Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
#
msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2019-11-10 16:04+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language: nb\n"
"Language-Team: Norwegian Bokmål "
"<https://hosted.weblate.org/projects/turris/reforis/nb_NO/>\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.8.0\n"
#: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Dette er ikke en gyldig IPv4-adresse."
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Dette er ikke en gyldig IPv6-adresse."
#: src/validations.js:15
#, fuzzy
msgid "This is not a valid IPv6 prefix."
msgstr "Dette er ikke et gyldig IPv6-prefiks."
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr "Dette er ikke et gyldig domenenavn."
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr "Dette er ikke en gyldig DUID."
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr "Dette er ikke en gyldig MAC-adresse."
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Inneholder ikke en kommainndelt liste med e-postadresser."
#: src/api/utils.js:58
msgid "The session is expired. Please log in again."
msgstr "Økten har utløpt. Logg inn igjen."
#: src/api/utils.js:63
msgid "Timeout error occurred."
msgstr "Tidsavbrudd inntraff."
#: src/api/utils.js:66
msgid "No response received."
msgstr "Fikk ikke svar."
#: src/api/utils.js:76
#, fuzzy
msgid "An unknown API error occurred."
msgstr "Ukjent API-feil."
#: src/common/RebootButton.js:33
#, fuzzy
msgid "Reboot request failed."
msgstr "Omstart kreves"
#: src/common/RebootButton.js:54
msgid "Reboot"
msgstr "Start på ny"
#: src/common/RebootButton.js:69
msgid "Reboot confirmation"
msgstr ""
#: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?"
msgstr ""
#: src/common/RebootButton.js:72
msgid "Cancel"
msgstr ""
#: src/common/RebootButton.js:73
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
msgid "Wi-Fi settings are set to defaults."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
"Fi settings. Note that this will remove the\n"
"current Wi-Fi configuration and restore the default values.\n"
" "
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:84
msgid "Enable"
msgstr "Skru på"
#: src/common/WiFiSettings/WiFiForm.js:215
msgid "auto"
msgstr "automatisk"
#: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Enable Guest Wifi"
msgstr "Skru på gjestetrådløsnett"
#: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Password"
msgstr "Passord"
#: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code"
msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:81
msgid "SSID can't be longer than 32 symbols"
msgstr "SSID kan ikke være lengre enn 32 symboler"
#: src/common/WiFiSettings/WiFiSettings.js:74
#: src/common/WiFiSettings/WiFiSettings.js:82
msgid "SSID can't be empty"
msgstr "SSID kan ikke stå tomt."
#: src/common/WiFiSettings/WiFiSettings.js:76
#: src/common/WiFiSettings/WiFiSettings.js:84
msgid "Password must contain at least 8 symbols"
msgstr "Passordet må inneholde minst 8 tegn"
#: src/common/WiFiSettings/constants.js:9
msgid "Disabled"
msgstr "Avskrudd"
#: src/common/WiFiSettings/constants.js:10
msgid "802.11n - 20 MHz wide channel"
msgstr "802.11n - 20 MHz vid kanal"
#: src/common/WiFiSettings/constants.js:11
msgid "802.11n - 40 MHz wide channel"
msgstr "802.11n - 40 MHz vid kanal"
#: src/common/WiFiSettings/constants.js:12
msgid "802.11ac - 20 MHz wide channel"
msgstr "802.11ac - 20 MHz vid kanal"
#: src/common/WiFiSettings/constants.js:13
msgid "802.11ac - 40 MHz wide channel"
msgstr "802.11ac - 40 MHz vid kanal"
#: src/common/WiFiSettings/constants.js:14
msgid "802.11ac - 80 MHz wide channel"
msgstr "802.11ac - 80 MHz vid kanal"
#: src/common/WiFiSettings/constants.js:21
msgid ""
"\n"
" WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr ""
"\n"
" WPA2 med forhåndsdelt nøkkel, (som kreves for å koble til "
"nettverket).\n"
" "
#: src/common/WiFiSettings/constants.js:24
msgid "If set, network is not visible when scanning for available networks."
msgstr "Skjuler nettverket fra nettverkslister."
#: src/common/WiFiSettings/constants.js:25
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 GHz-båndet støttes av flere klienter, men har vanligvis flere"
" forstyrrelser. 5 Ghz-båndet er en nyere\n"
" standard, og kan ikke støttes av alle enhetene dine. Det har "
"vanligvis mindre forstyrrelse, men signalet\n"
" er mer utsatt for hindringer innendørs."
#: src/common/WiFiSettings/constants.js:29
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 ""
"\n"
" Endringer har justerer 802.11n/ac-modus. 802.11.n med 40 Mhz "
"brede kanaler kan gi høyere\n"
" gjennomstrømming, men kan forårsake mer forstyrrelse i "
"nettverket. Hvis du ikke vet hva du skal velge, bruk\n"
" forvalget på 20 MHz brede kanaler.\n"
" "
#: src/common/WiFiSettings/constants.js:34
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 ""
"\n"
" Skrur på Wi-Fi for gjester, som er adskilt LAN-nettverket. "
"Enheter som kobler til dette nettverket tillates å\n"
" bruke Internett, men tillates ikke å nå andre enheter og "
"oppsettsgrensesnittet til ruteren..\n"
" Parameter for gjestenettverket kan settes i gjestenettverksfanen."
"\n"
" "
#: src/form/components/ForisForm.js:112
msgid "Settings saved successfully"
msgstr "Innstillinger lagret"
#: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "Endringer du har gjort vil ikke bli lagret. Er du sikker?"
#: src/form/components/SubmitButton.js:32
#, fuzzy
msgid "Updating"
msgstr "Oppdaterer"
#: src/form/components/SubmitButton.js:35
msgid "Load settings"
msgstr "Last inn innstillinger"
#: src/form/components/SubmitButton.js:38
msgid "Save"
msgstr "Lagre"
#: src/utils/ErrorMessage.js:16
msgid "An error occurred while fetching data."
msgstr "Kunne ikke hente data."
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "Ukjent feil. Sjekk konsollen for mer info."

View File

@ -1,397 +1,248 @@
# Norwegian Bokmål (Norway) translations for Foris JS. # Norwegian Bokmål (Norway) translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2022-05-25 13:20+0000\n" "PO-Revision-Date: 2019-08-28 17:55+0200\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/turris/"
"foris-js/nb_NO/>\n"
"Language: nb_NO\n" "Language: nb_NO\n"
"Language-Team: nb_NO <LL@li.org>\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" "Generated-By: Babel 2.8.0\n"
"X-Generator: Weblate 4.13-dev\n"
"Generated-By: Babel 2.9.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "Økten har utløpt. Logg inn igjen." msgstr ""
#: src/api/utils.js:63
msgid "Timeout error occurred."
msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:66
msgid "Timeout error occurred."
msgstr "Tidsavbrudd inntraff."
#: src/api/utils.js:69
msgid "No response received." msgid "No response received."
msgstr "Fikk ikke svar." msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
#, fuzzy
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "Ukjent API-feil." msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr "Kopiert"
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr "Kopier"
#: src/common/RebootButton.js:27
#, fuzzy
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "Omstart kreves" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "Start på ny" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "Advarsel!" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "Er du sikker på at du vil utføre omstart av ruteren?" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "Avbryt" msgstr ""
#: src/common/RebootButton.js:73 #: src/common/RebootButton.js:73
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "Bekreft omstart" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
#, fuzzy
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "Kunne ikke tilbakestille Wi-Fi-innstillinger." msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41 #: src/common/WiFiSettings/ResetWiFiSettings.js:41
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "Wi-Fi-innstillinger satt til forvalg." msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "Tilbakestill Wi-Fi-innstillinger"
#: 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 "" 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 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
#, fuzzy msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
"Fi settings. Note that this will remove the\n"
"current Wi-Fi configuration and restore the default values.\n"
" "
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "Wi-Fi ${deviceID + 1}" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password" msgstr ""
msgstr "Passord"
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr "Skjul SSID"
#: src/common/WiFiSettings/WiFiForm.js:186
#, fuzzy
msgid "802.11n/ac/ax mode"
msgstr "802.11n/ac mode"
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr "Kanal"
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr "Kryptering"
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "automatisk" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "Tilpasset" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
#, fuzzy msgid "Password"
msgid "Enable Guest Wi-Fi" msgstr ""
msgstr "Skru på gjestetrådløsnett"
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "QR-kode for Wi-Fi" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "Last ned PDF" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78
#: src/common/WiFiSettings/WiFiSettings.js:94
msgid "SSID can't be longer than 32 symbols"
msgstr "SSID kan ikke være lengre enn 32 symboler"
#: src/common/WiFiSettings/WiFiSettings.js:79
#: src/common/WiFiSettings/WiFiSettings.js:96
msgid "SSID can't be empty"
msgstr "SSID kan ikke stå tomt."
#: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:81 #: src/common/WiFiSettings/WiFiSettings.js:81
#: src/common/WiFiSettings/WiFiSettings.js:98 msgid "SSID can't be longer than 32 symbols"
#, fuzzy msgstr ""
msgid "SSID can't be longer than 32 bytes"
msgstr "SSID kan ikke være lengre enn 32 symboler"
#: src/common/WiFiSettings/WiFiSettings.js:74
#: src/common/WiFiSettings/WiFiSettings.js:82
msgid "SSID can't be empty"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:76
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
#: 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 ""
#: 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 MHz vid kanal" msgstr ""
#: 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 MHz vid kanal" msgstr ""
#: 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 MHz vid kanal" msgstr ""
#: 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 MHz vid kanal" msgstr ""
#: 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 MHz vid kanal" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
#, fuzzy
msgid "802.11ac - 160 MHz wide channel"
msgstr "802.11ac - 80 MHz vid kanal"
#: 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"
msgstr "Kun WPA3"
#: 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 " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
msgstr "SSID som inneholder uvanlige tegn kan forårsake problemer på noen enheter." " "
msgstr ""
#: src/common/WiFiSettings/constants.js:24
msgid "If set, network is not visible when scanning for available networks."
msgstr ""
#: src/common/WiFiSettings/constants.js:25
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:29
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 ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:34
#, fuzzy msgid ""
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
"\n" "\n"
" WPA2 med forhåndsdelt nøkkel, (som kreves for å koble til " " Enables Wi-Fi for guests, which is separated from LAN network. "
"nettverket).\n" "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"
" " " "
#: src/common/WiFiSettings/constants.js:37
msgid "If set, network is not visible when scanning for available networks."
msgstr "Skjuler nettverket fra nettverkslister."
#: src/common/WiFiSettings/constants.js:40
#, fuzzy
msgid ""
"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."
msgstr "" msgstr ""
"\n"
" 2.4 GHz-båndet støttes av flere klienter, men har vanligvis flere"
" forstyrrelser. 5 Ghz-båndet er en nyere\n"
" standard, og kan ikke støttes av alle enhetene dine. Det har "
"vanligvis mindre forstyrrelse, men signalet\n"
" er mer utsatt for hindringer innendørs."
#: src/common/WiFiSettings/constants.js:43 #: src/form/components/ForisForm.js:112
#, fuzzy
msgid ""
"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."
msgstr ""
"\n"
" Endringer har justerer 802.11n/ac-modus. 802.11.n med 40 Mhz "
"brede kanaler kan gi høyere\n"
" gjennomstrømming, men kan forårsake mer forstyrrelse i "
"nettverket. Hvis du ikke vet hva du skal velge, bruk\n"
" forvalget på 20 MHz brede kanaler.\n"
" "
#: src/common/WiFiSettings/constants.js:46
#, fuzzy
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 ""
"\n"
" Skrur på Wi-Fi for gjester, som er adskilt LAN-nettverket. "
"Enheter som kobler til dette nettverket tillates å\n"
" bruke Internett, men tillates ikke å nå andre enheter og "
"oppsettsgrensesnittet til ruteren..\n"
" Parameter for gjestenettverket kan settes i gjestenettverksfanen."
"\n"
" "
#: src/common/WiFiSettings/constants.js:49
#, fuzzy
msgid ""
"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."
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
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "Innstillinger lagret" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "Endringer du har gjort vil ikke bli lagret. Er du sikker?" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
#, fuzzy
msgid "Updating" msgid "Updating"
msgstr "Oppdaterer" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "Last inn innstillinger" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "Lagre" msgstr ""
#: src/utils/ErrorMessage.js:16 #: src/utils/ErrorMessage.js:16
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "Kunne ikke hente data." msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Dette er ikke en gyldig IPv4-adresse."
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Dette er ikke en gyldig IPv6-adresse."
#: src/utils/validations.js:15
#, fuzzy
msgid "This is not a valid IPv6 prefix."
msgstr "Dette er ikke et gyldig IPv6-prefiks."
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr "Dette er ikke et gyldig domenenavn."
#: 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."
msgstr "Dette er ikke en gyldig DUID."
#: src/utils/validations.js:19
msgid "This is not a valid MAC address."
msgstr "Dette er ikke en gyldig MAC-adresse."
#: src/utils/validations.js:20
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Inneholder ikke en kommainndelt liste med e-postadresser."
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "Ukjent feil. Sjekk konsollen for mer info."
#~ msgid "Reboot confirmation"
#~ msgstr "" #~ msgstr ""
#~ msgid "Enable"
#~ msgstr "Skru på"
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ "Hvis antallet trådløskort ikke samsvarer, "
#~ "kan du prøve å tilbakestille Wi-"
#~ "Fi-innstillingene. Mer at dette fjerner"
#~ "\n"
#~ "gjeldende Wi-Fi-oppsett og tilbakestiller forvalgte verdier.\n"
#~ " "

View File

@ -1,66 +1,86 @@
# Dutch translations for Foris JS. # Dutch translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2020-11-29 19:29+0000\n" "PO-Revision-Date: 2019-10-15 13:02+0000\n"
"Last-Translator: Johan van de Wetering <mail@jvdwetering.nl>\n" "Last-Translator: powerburner-nl <peter.mulder.1981@gmail.com>\n"
"Language: nl\n" "Language: nl\n"
"Language-Team: Dutch <https://hosted.weblate.org/projects/turris/foris-" "Language-Team: Dutch "
"js/nl/>\n" "<https://hosted.weblate.org/projects/turris/reforis/nl/>\n"
"Plural-Forms: nplurals=2; plural=n != 1\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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Dit is geen geldig IPv4-adres."
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Dit is geen geldig IPv6-adres."
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Dit is geen geldig IPv6-voorvoegsel."
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr "Dit is geen geldige domeinnaam."
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr "Dit is geen geldig DUID."
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr "Dit is geen geldig MAC-adres."
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Bevat geen lijst met e-mails gescheiden door komma's."
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
#, fuzzy #, fuzzy
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "Opnieuw opstarten is vereist" msgstr "Opnieuw opstarten is vereist"
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "Opnieuw opstarten" msgstr "Opnieuw opstarten"
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -68,7 +88,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -76,89 +96,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "Wachtwoord"
#: src/common/WiFiSettings/WiFiForm.js:146
msgid "Hide SSID"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "auto" msgstr "auto"
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
#, fuzzy msgid "Enable Guest Wifi"
msgid "Custom"
msgstr "auto"
#: src/common/WiFiSettings/WiFiGuestForm.js:42
msgid "Enable Guest Wi-Fi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Password"
msgstr "Wachtwoord"
#: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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"
@ -183,102 +177,67 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "Bijwerken" msgstr "Bijwerken"
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "Instellingen laden" msgstr "Instellingen laden"
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "Opslaan" msgstr "Opslaan"
@ -286,126 +245,6 @@ msgstr "Opslaan"
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Dit is geen geldig IPv4-adres."
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Dit is geen geldig IPv6-adres."
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Dit is geen geldig IPv6-voorvoegsel."
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr "Dit is geen geldige domeinnaam."
#: 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."
msgstr "Dit is geen geldig DUID."
#: src/utils/validations.js:19
msgid "This is not a valid MAC address."
msgstr "Dit is geen geldig MAC-adres."
#: src/utils/validations.js:20
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Bevat geen lijst met e-mails gescheiden door komma's."
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""

View File

@ -1,66 +1,86 @@
# Polish translations for Foris JS. # Polish translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2020-12-23 12:29+0000\n" "PO-Revision-Date: 2019-08-28 17:56+0200\n"
"Last-Translator: Adam Stańczyk <a.stanczyk@onet.pl>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: pl\n" "Language: pl\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/turris/foris-" "Language-Team: Polish "
"js/pl/>\n" "<https://hosted.weblate.org/projects/turris/reforis/pl/>\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && " "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && "
"(n%100<10 || n%100>=20) ? 1 : 2\n" "(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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "Sesja wygasła. Proszę, zaloguj się ponownie." msgstr ""
#: src/api/utils.js:63
msgid "Timeout error occurred."
msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:66
msgid "Timeout error occurred."
msgstr "Wystąpił błąd przekroczenia limitu czasu."
#: src/api/utils.js:69
msgid "No response received." msgid "No response received."
msgstr "Brak odpowiedzi." msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "Wystąpił nieznany błąd API."
#: src/bootstrap/CopyInput.js:55
msgid "Copied!"
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -68,7 +88,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -76,88 +96,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "Hasło"
#: src/common/WiFiSettings/WiFiForm.js:146
msgid "Hide SSID"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr "Hasło"
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -182,228 +177,74 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "Ustawienia zostały zapisane" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
"Wprowadzone zmiany mogą nie zostać zapisane. Jesteś pewny, że chcesz "
"wyjść?"
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "Aktualizacja" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "Wczytaj ustawienia" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "Zapisz" msgstr "Zapisz"
#: src/utils/ErrorMessage.js:16 #: src/utils/ErrorMessage.js:16
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "Wystąpił błąd podczas pobierania danych." msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "To nie jest prawidłowy adres IPv4."
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "To nie jest prawidłowy adres IPv6."
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "To nie jest prawidłowy prefiks IPv6."
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr "To nie jest prawidłowa nazwa domeny."
#: 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."
msgstr "To nie jest prawidłowy DUID."
#: src/utils/validations.js:19
msgid "This is not a valid MAC address."
msgstr "To nie jest prawidłowy adres MAC."
#: src/utils/validations.js:20
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Nie zawiera listy e-maili oddzielonych przecinkami."
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "Wystąpił nieznany błąd. Sprawdź konsolę, aby uzyskać więcej informacji."
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 "" #~ msgstr ""

View File

@ -1,386 +0,0 @@
# Portuguese (Brazil) translations for Foris JS.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/)
# This file is distributed under the same license as the Foris JS project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2022-05-20 15:42+0200\n"
"PO-Revision-Date: 2021-12-21 12:52+0000\n"
"Last-Translator: c10l <weblate.org@a.c10l.cc>\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"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.9.0\n"
#: src/api/utils.js:61
msgid "The session is expired. Please log in again."
msgstr ""
#: src/api/utils.js:66
msgid "Timeout error occurred."
msgstr ""
#: src/api/utils.js:69
msgid "No response received."
msgstr ""
#: src/api/utils.js:79
msgid "An unknown API error occurred."
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed."
msgstr ""
#: src/common/RebootButton.js:51
msgid "Reboot"
msgstr "Reinício"
#: src/common/RebootButton.js:66
msgid "Warning!"
msgstr "Atenção!"
#: src/common/RebootButton.js:68
msgid "Are you sure you want to restart the router?"
msgstr "Você tem certeza de que quer reiniciar o roteador?"
#: src/common/RebootButton.js:71
msgid "Cancel"
msgstr "Cancelar"
#: src/common/RebootButton.js:73
msgid "Confirm reboot"
msgstr "Confirma reinício"
#: src/common/WiFiSettings/ResetWiFiSettings.js:38
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
msgid "Wi-Fi settings are set to defaults."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55
#: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings"
msgstr ""
#: 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}"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132
#: src/common/WiFiSettings/WiFiGuestForm.js:80
msgid "Password"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284
msgid "Custom"
msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42
msgid "Enable Guest Wi-Fi"
msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71
msgid "Wi-Fi QR Code"
msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91
msgid "Download PDF"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78
#: src/common/WiFiSettings/WiFiSettings.js:94
msgid "SSID can't be longer than 32 symbols"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:79
#: src/common/WiFiSettings/WiFiSettings.js:96
msgid "SSID can't be empty"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:81
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84
#: src/common/WiFiSettings/WiFiSettings.js:101
msgid "Password must contain at least 8 symbols"
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
msgid "Disabled"
msgstr ""
#: src/common/WiFiSettings/constants.js:10
msgid "802.11n - 20 MHz wide channel"
msgstr ""
#: src/common/WiFiSettings/constants.js:11
msgid "802.11n - 40 MHz wide channel"
msgstr ""
#: src/common/WiFiSettings/constants.js:12
msgid "802.11ac - 20 MHz wide channel"
msgstr ""
#: src/common/WiFiSettings/constants.js:13
msgid "802.11ac - 40 MHz wide channel"
msgstr ""
#: src/common/WiFiSettings/constants.js:14
msgid "802.11ac - 80 MHz wide channel"
msgstr ""
#: src/common/WiFiSettings/constants.js:15
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid ""
"SSID which contains non-standard characters could cause problems on some "
"devices."
msgstr ""
#: src/common/WiFiSettings/constants.js:34
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: src/common/WiFiSettings/constants.js:37
msgid "If set, network is not visible when scanning for available networks."
msgstr ""
#: src/common/WiFiSettings/constants.js:40
msgid ""
"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."
msgstr ""
#: src/common/WiFiSettings/constants.js:43
msgid ""
"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."
msgstr ""
#: 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 ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:183
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
#: src/form/components/SubmitButton.js:31
msgid "Updating"
msgstr ""
#: src/form/components/SubmitButton.js:34
msgid "Load settings"
msgstr ""
#: src/form/components/SubmitButton.js:37
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
msgid "An error occurred while fetching data."
msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: 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."
msgstr ""
#: 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."
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 ""

View File

@ -1,13 +1,13 @@
# Romanian translations for Foris JS. # Romanian translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\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"
@ -17,49 +17,69 @@ msgstr ""
"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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "" msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "" msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -67,7 +87,7 @@ msgstr ""
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -75,88 +95,63 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:57 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "" msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-" "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 " "Fi settings. Note that this will remove the\n"
"and restore the default values." "current Wi-Fi configuration and restore the default values.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
@ -181,102 +176,67 @@ msgstr ""
msgid "802.11ac - 80 MHz wide channel" msgid "802.11ac - 80 MHz wide channel"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:15 #: src/common/WiFiSettings/constants.js:21
msgid "802.11ac - 160 MHz wide channel"
msgstr ""
#: 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"
msgstr ""
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -284,125 +244,6 @@ msgstr ""
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: 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."
msgstr ""
#: 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."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""

View File

@ -1,310 +1,270 @@
# Russian translations for Foris JS. # Russian translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2022-05-28 09:19+0000\n" "PO-Revision-Date: 2019-09-30 13:00+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/reforis/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" "Generated-By: Babel 2.8.0\n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.13-dev\n"
"Generated-By: Babel 2.9.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Это некорректный IPv4-адрес."
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Это некорректный IPv6-адрес."
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Это некорректный префикс IPv6."
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr "Некорректное доменное имя."
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr "Это некорректный уникальный идентификатор DHCP (DUID)."
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr "Это некорректный MAC-адрес."
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Не содержит списка электронных адресов, разделенных запятыми."
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "Ваша сессия закончилась. Пожалуйста, залогинитесь заново." msgstr "Ваша сессия закончилась. Пожалуйста, залогинитесь заново."
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "Произошла ошибка ожидания ответа сервера." msgstr "Произошла ошибка ожидания ответа сервера."
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "Ответ не получен." msgstr "Ответ не получен."
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "Неизвестная ошибка программного интерфейса приложения." msgstr "Неизвестная ошибка программного интерфейса приложения."
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!" #, fuzzy
msgstr "Скопировано!"
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr "Копировать"
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "Запрос на перезагрузку не выполнен." msgstr "Требуется перезагрузка"
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "Перезагрузка" msgstr "Перезагрузка"
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "Предупреждение!" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "Вы уверены, что хотите перезагрузить маршрутизатор?" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "Отмена" msgstr ""
#: src/common/RebootButton.js:73 #: src/common/RebootButton.js:73
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "Подтвердите перезагрузку" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "При сбросе настроек Wi-Fi произошла ошибка." msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41 #: src/common/WiFiSettings/ResetWiFiSettings.js:41
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "Настройки Wi-Fi установлены по умолчанию." msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "Сбросить настройки Wi-Fi"
#: 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 "" msgstr ""
"Если количество беспроводных карт не совпадает, вы можете попробовать "
"сбросить настройки Wi-Fi. Обратите внимание, что при этом будет удалена "
"текущая конфигурация Wi-Fi и восстановлены значения по умолчанию."
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
"Fi settings. Note that this will remove the\n"
"current Wi-Fi configuration and restore the default values.\n"
" "
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "Wi-Fi ${deviceID + 1}" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password" msgstr "Включить"
msgstr "Пароль"
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr "Скрыть SSID"
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr "Режим 802.11n/ac/ax"
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr "Канал"
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr "Шифрование"
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "авто" msgstr "авто"
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "Ручная настройка" msgstr "Включить гостевой WiFi"
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "Включить гостевой Wi-Fi" msgstr "Пароль"
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "QR-код Wi-Fi" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "Скачать PDF" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78 #: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:94 #: src/common/WiFiSettings/WiFiSettings.js:81
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:74
#: src/common/WiFiSettings/WiFiSettings.js:96 #: src/common/WiFiSettings/WiFiSettings.js:82
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:76
#: src/common/WiFiSettings/WiFiSettings.js:98
msgid "SSID can't be longer than 32 bytes"
msgstr "SSID не может быть длиннее 32 байт"
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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:21
msgid "802.11ac - 160 MHz wide channel"
msgstr "802.11ac - ширина канала 160 МГц"
#: 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"
msgstr "Только WPA3"
#: src/common/WiFiSettings/constants.js:27
msgid "WPA3 with WPA2 as fallback (default)"
msgstr "WPA3 с WPA2 в качестве резервного (по умолчанию)"
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr "Только WPA2"
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
"SSID, содержащий нестандартные символы, может вызвать проблемы на " "\n"
"некоторых устройствах." " Предварительный общий ключ WPA2, необходимый для подключения к "
"сети.\n"
" "
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr "Общий ключ WPA2/3, необходимый для подключения к сети."
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
"Диапазон 2,4 ГГц поддерживается всеми клиентами, но имеет больше помех. " "\n"
"Диапазон 5 ГГц это более современный стандарт, который может " " Частота 2,4 ГГц более широко поддерживается клиентами, но имеет "
"поддерживаться не всеми устройствами. В нем обычно меньше помех, но в " "больше помех. Частота 5 ГГц является новым стандартом и может "
"помещении сигнал проходит не так хорошо." "поддерживаться не всеми вашими устройствами. Он обычно имеет меньше "
"помех, но сигнал не очень хорошо распространяется в помещении."
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
"Измените это, чтобы настроить режим работы 802.11n/ac/ax. 802.11n с каналами " "\n"
"шириной 40 МГц обеспечивает более высокую пропускную способность, но может " " Измените это, чтобы настроить режим работы 802.11n/ac. 802.11n с "
"вызывать больше помех в сети. Если вы не знаете, что выбрать, используйте " "каналами шириной 40 МГц может обеспечить более высокую пропускную "
"опцию по умолчанию с каналом шириной 20 МГц." "способность, но может вызывать больше помех в сети. Если вы не знаете, "
"что выбрать, используйте опцию по умолчанию с каналом шириной 20 МГц.\n"
" "
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "and the configuration interface of the router.\n"
" Parameters of the guest network can be set in the Guest network "
"tab.\n"
" "
msgstr "" msgstr ""
"Включает Wi-Fi для гостей, который отделен от локальной сети. Устройства," "\n"
" подключенные к этой сети, могут доступ в Интернет, но им не разрешен " " Включает Wi-Fi для гостей, который отделен от локальной сети. "
"доступ к другим устройствам и интерфейсу конфигурации маршрутизатора. " "Устройства, подключенные к этой сети, могут доступ в Интернет, но им не "
"Параметры гостевой сети можно настроить на вкладке Гостевая сеть." "разрешен доступ к другим устройствам и интерфейсу конфигурации "
"маршрутизатора. Параметры гостевой сети можно настроить на вкладке "
"Гостевая сеть.\n"
" "
#: src/common/WiFiSettings/constants.js:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
"Стандарт WPA3 - это новый наиболее безопасный метод шифрования, который "
"предлагается использовать с любым устройством, которое его поддерживает. "
"Старые устройства без поддержки WPA3 требуют старого WPA2. Если у вас "
"возникли проблемы с подключением старых устройств, попробуйте включить "
"WPA2."
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "Настройки были успешно сохранены" msgstr "Настройки были успешно сохранены"
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
"В случае выхода ваши изменения будут утеряны. Вы действительно хотите " "В случае выхода ваши изменения будут утеряны. Вы действительно хотите "
"покинуть эту страницу?" "покинуть эту страницу?"
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "Обновление" msgstr "Обновление"
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "Загрузить настройки" msgstr "Загрузить настройки"
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "Сохранить" msgstr "Сохранить"
@ -312,63 +272,8 @@ msgstr "Сохранить"
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "Во время получения данных произошла ошибка." msgstr "Во время получения данных произошла ошибка."
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Это некорректный IPv4-адрес."
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Это некорректный IPv6-адрес."
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Это некорректный префикс IPv6."
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr "Некорректное доменное имя."
#: 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."
msgstr "Это некорректный уникальный идентификатор DHCP (DUID)."
#: src/utils/validations.js:19
msgid "This is not a valid MAC address."
msgstr "Это некорректный MAC-адрес."
#: src/utils/validations.js:20
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Не содержит списка электронных адресов, разделенных запятыми."
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ "Произошла неизвестная ошибка. Проверьте " #~ "Произошла неизвестная ошибка. Проверьте "
#~ "консоль браузера, чтобы узнать детали." #~ "консоль браузера, чтобы узнать детали."
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr "Включить"
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ "Если количество беспроводных карт не "
#~ "совпадает, вы можете попробовать сбросить "
#~ "настройки Wi-Fi.\n"
#~ "Это приведет к удалению текущей "
#~ "конфигурации Wi-Fi и восстановлению "
#~ "значений по умолчанию.\n"
#~ " "

View File

@ -1,370 +1,248 @@
# Slovak translations for Foris JS. # Slovak translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2022-05-30 06:14+0000\n" "PO-Revision-Date: 2019-08-28 17:56+0200\n"
"Last-Translator: Atec <dr.atec@gmail.com>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Slovak <https://hosted.weblate.org/projects/turris/foris-js/"
"sk/>\n"
"Language: sk\n" "Language: sk\n"
"Language-Team: sk <LL@li.org>\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" "Generated-By: Babel 2.8.0\n"
"X-Generator: Weblate 4.13-dev\n"
"Generated-By: Babel 2.9.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr ""
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "Platnosť relácie vypršala. Prihláste sa znovu, prosím." msgstr ""
#: src/api/utils.js:63
msgid "Timeout error occurred."
msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:66
msgid "Timeout error occurred."
msgstr "Nastala chyba z dôvodu prekročenia časového limitu."
#: src/api/utils.js:69
msgid "No response received." msgid "No response received."
msgstr "Nenastala žiadna odozva." msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "Nastala neznáma chyba v API." msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr "Skopírované!"
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr "Kopírovať"
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "Požiadavka na reštart neúspešná." msgstr ""
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "Reštartovať" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "Výstraha!" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "Naozaj sa má router reštartovať?" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "Zrušiť" msgstr ""
#: src/common/RebootButton.js:73 #: src/common/RebootButton.js:73
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "Potvrdiť reštart" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "Pri resete nastavení Wi-Fi nastala chyba." msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41 #: src/common/WiFiSettings/ResetWiFiSettings.js:41
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "Nastavenia Wi-Fi sa zmenili do východiskového stavu." msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "Resetovať nastavenia Wi-Fi"
#: 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 "" 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 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid ""
"\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
"Fi settings. Note that this will remove the\n"
"current Wi-Fi configuration and restore the default values.\n"
" "
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:82
msgid "Wi-Fi ${deviceID + 1}" msgid "Wi-Fi ${deviceID + 1}"
msgstr "Wi-Fi ${deviceID + 1}" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:84
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Enable"
msgid "Password" msgstr ""
msgstr "Heslo"
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiForm.js:215
msgid "Hide SSID"
msgstr "Skryť SSID"
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr "802.11 n/ac/ax mód"
#: src/common/WiFiSettings/WiFiForm.js:199
msgid "Channel"
msgstr "Kanál"
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr "Šifrovanie"
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto" msgid "auto"
msgstr "automaticky" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:284 #: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Custom" msgid "Enable Guest Wifi"
msgstr "Vlastné" msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:42 #: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Enable Guest Wi-Fi" msgid "Password"
msgstr "Povoliť Wi-Fi pre hostí" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:71 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "Wi-Fi QR kód" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "Stiahnuť PDF" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78
#: src/common/WiFiSettings/WiFiSettings.js:94
msgid "SSID can't be longer than 32 symbols"
msgstr "SSID nemôže obsahovať viac ako 32 znakov"
#: src/common/WiFiSettings/WiFiSettings.js:79
#: src/common/WiFiSettings/WiFiSettings.js:96
msgid "SSID can't be empty"
msgstr "SSID nesmie byť prázdne"
#: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:81 #: src/common/WiFiSettings/WiFiSettings.js:81
#: src/common/WiFiSettings/WiFiSettings.js:98 msgid "SSID can't be longer than 32 symbols"
msgid "SSID can't be longer than 32 bytes" msgstr ""
msgstr "SSID nesmie byť dlhšie ako 32 byteov"
#: src/common/WiFiSettings/WiFiSettings.js:74
#: src/common/WiFiSettings/WiFiSettings.js:82
msgid "SSID can't be empty"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:76
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
#: 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 ""
#: 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 šírka kanála 20 MHz" msgstr ""
#: 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 šírka kanála 40 MHz" msgstr ""
#: 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 šírka kanála 20 MHz" msgstr ""
#: 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 šírka kanála 40 MHz" msgstr ""
#: 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 šírka kanála 80 MHz"
#: src/common/WiFiSettings/constants.js:15
msgid "802.11ac - 160 MHz wide channel"
msgstr "802.11ac šírka kanála 160 MHz"
#: src/common/WiFiSettings/constants.js:16
msgid "802.11ax - 20 MHz wide channel"
msgstr "802.11ax šírka kanála 20 MHz"
#: 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)"
msgstr "WPA3 s WPA2 ako náhradným riešením (predvolené)"
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr "Len WPA2"
#: src/common/WiFiSettings/constants.js:31
msgid ""
"SSID which contains non-standard characters could cause problems on some "
"devices."
msgstr "" msgstr ""
"SSID s neštandardnými znakmi môže na niektorých zariadeniach spôsobovať "
"problémy."
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:21
msgid "WPA2/3 pre-shared key, that is required to connect to the network." msgid ""
msgstr "WPA2/3 vopred zdieľaný kľúč, ktorý sa vyžaduje na pripojenie k sieti." "\n"
" WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr ""
#: src/common/WiFiSettings/constants.js:37 #: src/common/WiFiSettings/constants.js:24
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 "
"sietí nezobrazí."
#: src/common/WiFiSettings/constants.js:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
"Pásmo 2,4 GHz je klientmi podporované najčastejšie, ale je viac zaťažené "
"rušením. Pásmo 5 GHz je novší štandard a nemusia ho podporovať všetky "
"zariadenia. Zvyčajne je rušením postihnuté menej, ale signál sa vnútri "
"budov šíri horšie."
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
"Zmenou tejto položky sa nastavuje režim prevádzky 802.11n/ac/ax. Štandard "
"802.11n so šírkou kanálov 40 MHz môže priniesť vyššiu priepustnosť, ale môže "
"spôsobiť väčšie rušenie. Ak si nie ste istí, použite predvolenú možnosť so "
"šírkou kanála 20 MHz."
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "and the configuration interface of the router.\n"
" Parameters of the guest network can be set in the Guest network "
"tab.\n"
" "
msgstr "" 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 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
"Štandard WPA3 je nová, najbezpečnejšia metóda šifrovania a odporúča sa "
"používať ju s každým zariadením, ktoré ju podporuje. Staršie zariadenia "
"bez podpory WPA3 vyžadujú staršie WPA2. Ak sa vyskytnú problémy s "
"pripojením starších zariadení, skúste povoliť WPA2."
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "Nastavenia boli úspešne uložené" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "Vykonané zmeny neboli uložené. Naozaj chcete opustiť stránku?" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "Prebieha aktualizácia" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "Načítavanie nastavení" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "Uložiť" msgstr ""
#: src/utils/ErrorMessage.js:16 #: src/utils/ErrorMessage.js:16
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "Pri získavaní dát nastala chyba." msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr "Toto nie je platná IPv4 adresa."
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr "Toto nie je platná IPv6 adresa."
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr "Toto nie je platný IPv6 prefix."
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr "Toto nie je platné doménové meno."
#: 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."
msgstr "Toto nie je platné DUID."
#: src/utils/validations.js:19
msgid "This is not a valid MAC address."
msgstr "Toto nie je platná MAC adresa."
#: src/utils/validations.js:20
msgid "Doesn't contain a list of emails separated by commas."
msgstr "Neobsahuje zoznam e-mailov oddelených čiarkami."
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ "Ak počet Wi-Fi karet nezodpovedá "
#~ "skutočnosti, pokúste sa resetovať nastavenia"
#~ " Wi-Fi. Nezabudnite však,\n"
#~ "že sa tým odstráni aktuálna konfigurácia"
#~ " a obnovia sa východiskové hodnoty.\n"
#~ " "

View File

@ -1,74 +1,92 @@
# Swedish translations for Foris JS. # Swedish translations for PROJECT.
# Copyright (C) 2022 CZ.NIC, z.s.p.o. (https://www.nic.cz/) # Copyright (C) 2019 ORGANIZATION
# This file is distributed under the same license as the Foris JS project. # This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
# #
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: 2022-05-20 15:42+0200\n" "POT-Creation-Date: 2020-02-20 17:28+0100\n"
"PO-Revision-Date: 2021-09-26 03:39+0000\n" "PO-Revision-Date: 2019-08-28 17:56+0200\n"
"Last-Translator: Kristoffer Grundström " "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"<swedishsailfishosuser@tutanota.com>\n"
"Language: sv\n" "Language: sv\n"
"Language-Team: Swedish <https://hosted.weblate.org/projects/turris/foris-" "Language-Team: sv <LL@li.org>\n"
"js/sv/>\n" "Plural-Forms: nplurals=2; plural=(n != 1)\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"
"Generated-By: Babel 2.9.0\n" "Generated-By: Babel 2.8.0\n"
#: src/api/utils.js:61 #: src/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/validations.js:16
msgid "This is not a valid domain name."
msgstr "Detta är inte ett giltigt domännamn."
#: src/validations.js:17
msgid "This is not a valid DUID."
msgstr ""
#: src/validations.js:18
msgid "This is not a valid MAC address."
msgstr ""
#: src/validations.js:19
msgid "Doesn't contain a list of emails separated by commas."
msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again." msgid "The session is expired. Please log in again."
msgstr "Sessionen har slutat gälla. Vänligen logga in igen." msgstr ""
#: src/api/utils.js:66 #: src/api/utils.js:63
msgid "Timeout error occurred." msgid "Timeout error occurred."
msgstr "" msgstr ""
#: src/api/utils.js:69 #: src/api/utils.js:66
msgid "No response received." msgid "No response received."
msgstr "" msgstr ""
#: src/api/utils.js:79 #: src/api/utils.js:76
msgid "An unknown API error occurred." msgid "An unknown API error occurred."
msgstr "" msgstr ""
#: src/bootstrap/CopyInput.js:55 #: src/common/RebootButton.js:33
msgid "Copied!"
msgstr ""
#: src/bootstrap/CopyInput.js:55
msgid "Copy"
msgstr ""
#: src/common/RebootButton.js:27
msgid "Reboot request failed." msgid "Reboot request failed."
msgstr "Förfrågning för omstart misslyckades." msgstr "Omstart krävs"
#: src/common/RebootButton.js:51 #: src/common/RebootButton.js:54
msgid "Reboot" msgid "Reboot"
msgstr "Starta om" msgstr ""
#: src/common/RebootButton.js:66 #: src/common/RebootButton.js:69
msgid "Warning!" msgid "Reboot confirmation"
msgstr "Varning!" msgstr ""
#: src/common/RebootButton.js:68 #: src/common/RebootButton.js:70
msgid "Are you sure you want to restart the router?" msgid "Are you sure you want to restart the router?"
msgstr "Är du säker på att du vill starta om routern?" msgstr ""
#: src/common/RebootButton.js:71 #: src/common/RebootButton.js:72
msgid "Cancel" msgid "Cancel"
msgstr "Avbryt" msgstr ""
#: src/common/RebootButton.js:73 #: src/common/RebootButton.js:73
msgid "Confirm reboot" msgid "Confirm reboot"
msgstr "Bekräfta omstart" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:38 #: src/common/WiFiSettings/ResetWiFiSettings.js:39
msgid "An error occurred during resetting Wi-Fi settings." msgid "An error occurred during resetting Wi-Fi settings."
msgstr "" msgstr ""
@ -76,215 +94,148 @@ msgstr ""
msgid "Wi-Fi settings are set to defaults." msgid "Wi-Fi settings are set to defaults."
msgstr "" msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:55 #: src/common/WiFiSettings/ResetWiFiSettings.js:53
#: src/common/WiFiSettings/ResetWiFiSettings.js:69 #: src/common/WiFiSettings/ResetWiFiSettings.js:69
msgid "Reset Wi-Fi Settings" msgid "Reset Wi-Fi Settings"
msgstr "Återställ Wi-Fi-inställningarna"
#: 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 "" msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:95 #: src/common/WiFiSettings/ResetWiFiSettings.js:55
msgid "Wi-Fi ${deviceID + 1}" msgid ""
msgstr "Wi-Fi ${deviceID + 1}" "\n"
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
"Fi settings. Note that this will remove the\n"
"current Wi-Fi configuration and restore the default values.\n"
" "
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:132 #: src/common/WiFiSettings/WiFiForm.js:82
#: src/common/WiFiSettings/WiFiGuestForm.js:80 msgid "Wi-Fi ${deviceID + 1}"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:84
msgid "Enable"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:215
msgid "auto"
msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:37
msgid "Enable Guest Wifi"
msgstr ""
#: src/common/WiFiSettings/WiFiGuestForm.js:77
msgid "Password" msgid "Password"
msgstr "Lösenord" msgstr "Lösenord"
#: src/common/WiFiSettings/WiFiForm.js:146 #: src/common/WiFiSettings/WiFiQRCode.js:60
msgid "Hide SSID"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:186
msgid "802.11n/ac/ax mode"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:199
#, fuzzy
msgid "Channel"
msgstr "Avbryt"
#: src/common/WiFiSettings/WiFiForm.js:211
msgid "Encryption"
msgstr ""
#: src/common/WiFiSettings/WiFiForm.js:243
msgid "auto"
msgstr "auto"
#: src/common/WiFiSettings/WiFiForm.js:284
#, fuzzy
msgid "Custom"
msgstr "auto"
#: src/common/WiFiSettings/WiFiGuestForm.js:42
msgid "Enable Guest Wi-Fi"
msgstr "Aktivera Wi-Fi för Gäst"
#: src/common/WiFiSettings/WiFiQRCode.js:71
msgid "Wi-Fi QR Code" msgid "Wi-Fi QR Code"
msgstr "QR-kod för Wi-Fi" msgstr ""
#: src/common/WiFiSettings/WiFiQRCode.js:91 #: src/common/WiFiSettings/WiFiQRCode.js:80
msgid "Download PDF" msgid "Download PDF"
msgstr "Ladda ner PDF" msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:78
#: src/common/WiFiSettings/WiFiSettings.js:94
msgid "SSID can't be longer than 32 symbols"
msgstr "SSID kan inte vara längre än 32 symboler"
#: src/common/WiFiSettings/WiFiSettings.js:79
#: src/common/WiFiSettings/WiFiSettings.js:96
msgid "SSID can't be empty"
msgstr "SSID kan inte vara tomt"
#: src/common/WiFiSettings/WiFiSettings.js:73
#: src/common/WiFiSettings/WiFiSettings.js:81 #: src/common/WiFiSettings/WiFiSettings.js:81
#: src/common/WiFiSettings/WiFiSettings.js:98 msgid "SSID can't be longer than 32 symbols"
msgid "SSID can't be longer than 32 bytes" msgstr ""
msgstr "SSID kan inte vara längre än 32 bytes"
#: src/common/WiFiSettings/WiFiSettings.js:74
#: src/common/WiFiSettings/WiFiSettings.js:82
msgid "SSID can't be empty"
msgstr ""
#: src/common/WiFiSettings/WiFiSettings.js:76
#: src/common/WiFiSettings/WiFiSettings.js:84 #: src/common/WiFiSettings/WiFiSettings.js:84
#: 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 ""
#: 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 ""
#: 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 MHz bred kanal" msgstr ""
#: 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 MHz bred kanal" msgstr ""
#: 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 MHz bred kanal" msgstr ""
#: 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 MHz bred kanal" msgstr ""
#: 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 MHz bred kanal"
#: src/common/WiFiSettings/constants.js:15
msgid "802.11ac - 160 MHz wide channel"
msgstr "802.11ac - 160 MHz bred kanal"
#: 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"
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:27 #: src/common/WiFiSettings/constants.js:21
msgid "WPA3 with WPA2 as fallback (default)"
msgstr ""
#: src/common/WiFiSettings/constants.js:28
msgid "WPA2 only"
msgstr ""
#: src/common/WiFiSettings/constants.js:31
msgid "" msgid ""
"SSID which contains non-standard characters could cause problems on some " "\n"
"devices." " WPA2 pre-shared key, that is required to connect to the network.\n"
" "
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:34 #: src/common/WiFiSettings/constants.js:24
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
msgstr ""
#: 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:40 #: src/common/WiFiSettings/constants.js:25
msgid "" msgid ""
"The 2.4 GHz band is more widely supported by clients, but tends to have " "\n"
"more interference. The 5 GHz band is a newer standard and may not be " " The 2.4 GHz band is more widely supported by clients, but tends "
"supported by all your devices. It usually has less interference, but the " "to have more interference. The 5 GHz band is a\n"
"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\n"
" does not carry so well indoors."
msgstr "" msgstr ""
#: src/common/WiFiSettings/constants.js:43 #: src/common/WiFiSettings/constants.js:29
msgid "" msgid ""
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 " "\n"
"MHz wide channels can yield higher throughput but can cause more " " Change this to adjust 802.11n/ac mode of operation. 802.11n with "
"interference in the network. If you don't know what to choose, use the " "40 MHz wide channels can yield higher\n"
"default option with 20 MHz wide channel." " 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 "" msgstr ""
#: src/common/WiFiSettings/constants.js:46 #: src/common/WiFiSettings/constants.js:34
msgid "" msgid ""
"Enables Wi-Fi for guests, which is separated from LAN network. Devices " "\n"
"connected to this network are allowed to access the internet, but aren't " " Enables Wi-Fi for guests, which is separated from LAN network. "
"allowed to access other devices and the configuration interface of the " "Devices connected to this network are allowed to\n"
"router. Parameters of the guest network can be set in the Guest network " " access the internet, but aren't allowed to access other devices "
"tab." "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:49 #: src/form/components/ForisForm.js:112
msgid ""
"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."
msgstr ""
#: src/form/components/ForisForm.js:121
msgid "Settings saved successfully" msgid "Settings saved successfully"
msgstr "" msgstr ""
#: src/form/components/ForisForm.js:183 #: src/form/components/ForisForm.js:165
msgid "Changes you made may not be saved. Are you sure you want to leave?" msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:31 #: src/form/components/SubmitButton.js:32
msgid "Updating" msgid "Updating"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:34 #: src/form/components/SubmitButton.js:35
msgid "Load settings" msgid "Load settings"
msgstr "" msgstr ""
#: src/form/components/SubmitButton.js:37 #: src/form/components/SubmitButton.js:38
msgid "Save" msgid "Save"
msgstr "Spara" msgstr "Spara"
@ -292,126 +243,6 @@ msgstr "Spara"
msgid "An error occurred while fetching data." msgid "An error occurred while fetching data."
msgstr "" msgstr ""
#: src/utils/validations.js:13
msgid "This is not a valid IPv4 address."
msgstr ""
#: src/utils/validations.js:14
msgid "This is not a valid IPv6 address."
msgstr ""
#: src/utils/validations.js:15
msgid "This is not a valid IPv6 prefix."
msgstr ""
#: src/utils/validations.js:16
msgid "This is not a valid domain name."
msgstr "Detta är inte ett giltigt domännamn."
#: 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."
msgstr ""
#: 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."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info." #~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "" #~ msgstr ""
#~ msgid "Reboot confirmation"
#~ msgstr ""
#~ msgid "Enable"
#~ msgstr ""
#~ msgid "Enable Guest Wifi"
#~ msgstr ""
#~ msgid ""
#~ "\n"
#~ "If a number of wireless cards "
#~ "doesn't match, you may try to "
#~ "reset the Wi-Fi settings. Note "
#~ "that this will remove the\n"
#~ "current Wi-Fi configuration and restore the default values.\n"
#~ " "
#~ 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 ""