mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2025-05-05 09:40:54 +02:00
Compare commits
No commits in common. "2f249ce3dcff7fceeedc625c968e84020931bb27" and "eafbc01c734b4a132bcb0d3c209b3c496342ac86" have entirely different histories.
2f249ce3dc
...
eafbc01c73
19
CHANGELOG.md
19
CHANGELOG.md
@ -8,22 +8,6 @@ and this project adheres to
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
## [6.6.0] - 2025-02-07
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- Added & updated Weblate translations
|
|
||||||
- Added Wi-Fi and LAN settings URLs to ForisURLs
|
|
||||||
- Added Wi-Fi modes VHT/HE 80+80
|
|
||||||
- Added encryption selection to WiFiGuestForm
|
|
||||||
- Added optional close button to ModalHeader component
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- Updated Wi-Fi API
|
|
||||||
- Enhanced NumberInput component with keyboard & touch accessibility
|
|
||||||
- Refactored pagination condition in RichTable component
|
|
||||||
|
|
||||||
## [6.5.0] - 2024-11-13
|
## [6.5.0] - 2024-11-13
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@ -435,8 +419,7 @@ and this project adheres to
|
|||||||
## [0.0.7] - 2019-09-02
|
## [0.0.7] - 2019-09-02
|
||||||
|
|
||||||
[unreleased]:
|
[unreleased]:
|
||||||
https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.6.0...dev
|
https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.5.0...dev
|
||||||
[6.6.0]: https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.5.0...v6.6.0
|
|
||||||
[6.5.0]: https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.4.0...v6.5.0
|
[6.5.0]: https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.4.0...v6.5.0
|
||||||
[6.4.0]: https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.3.0...v6.4.0
|
[6.4.0]: https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.3.0...v6.4.0
|
||||||
[6.3.0]: https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.2.1...v6.3.0
|
[6.3.0]: https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.2.1...v6.3.0
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "foris",
|
"name": "foris",
|
||||||
"version": "6.6.0",
|
"version": "6.5.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "foris",
|
"name": "foris",
|
||||||
"version": "6.6.0",
|
"version": "6.5.0",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "foris",
|
"name": "foris",
|
||||||
"version": "6.6.0",
|
"version": "6.5.0",
|
||||||
"description": "Foris JS library is a set of components and utils for reForis application and plugins.",
|
"description": "Foris JS library is a set of components and utils for reForis application and plugins.",
|
||||||
"author": "CZ.NIC, z.s.p.o.",
|
"author": "CZ.NIC, z.s.p.o.",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -88,21 +88,18 @@ export function Modal({ shown, setShown, scrollable, size, children }) {
|
|||||||
ModalHeader.propTypes = {
|
ModalHeader.propTypes = {
|
||||||
setShown: PropTypes.func.isRequired,
|
setShown: PropTypes.func.isRequired,
|
||||||
title: PropTypes.string.isRequired,
|
title: PropTypes.string.isRequired,
|
||||||
showCloseButton: PropTypes.bool,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export function ModalHeader({ setShown, title, showCloseButton = true }) {
|
export function ModalHeader({ setShown, title }) {
|
||||||
return (
|
return (
|
||||||
<div className="modal-header">
|
<div className="modal-header">
|
||||||
<h1 className="modal-title fs-5">{title}</h1>
|
<h1 className="modal-title fs-5">{title}</h1>
|
||||||
{showCloseButton && (
|
<button
|
||||||
<button
|
type="button"
|
||||||
type="button"
|
className="btn-close"
|
||||||
className="btn-close"
|
onClick={() => setShown(false)}
|
||||||
onClick={() => setShown(false)}
|
aria-label={_("Close")}
|
||||||
aria-label={_("Close")}
|
/>
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -50,20 +50,6 @@ function NumberInput({ onChange, inlineText, value, ...props }) {
|
|||||||
-1
|
-1
|
||||||
);
|
);
|
||||||
|
|
||||||
function handleKeyDown(event, enableFunction) {
|
|
||||||
if (event.key === "Enter" || event.key === " ") {
|
|
||||||
event.preventDefault();
|
|
||||||
enableFunction(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleKeyUp(event, enableFunction) {
|
|
||||||
if (event.key === "Enter" || event.key === " ") {
|
|
||||||
event.preventDefault();
|
|
||||||
enableFunction(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Input type="number" onChange={onChange} value={value} {...props}>
|
<Input type="number" onChange={onChange} value={value} {...props}>
|
||||||
{inlineText && (
|
{inlineText && (
|
||||||
@ -74,15 +60,7 @@ function NumberInput({ onChange, inlineText, value, ...props }) {
|
|||||||
className="btn btn-outline-secondary"
|
className="btn btn-outline-secondary"
|
||||||
onMouseDown={() => enableIncrease(true)}
|
onMouseDown={() => enableIncrease(true)}
|
||||||
onMouseUp={() => enableIncrease(false)}
|
onMouseUp={() => enableIncrease(false)}
|
||||||
onMouseLeave={() => enableIncrease(false)}
|
aria-label="Increase"
|
||||||
onTouchStart={() => enableIncrease(true)}
|
|
||||||
onTouchEnd={() => enableIncrease(false)}
|
|
||||||
onTouchCancel={() => enableIncrease(false)}
|
|
||||||
onKeyDown={(event) => handleKeyDown(event, enableIncrease)}
|
|
||||||
onKeyUp={(event) => handleKeyUp(event, enableIncrease)}
|
|
||||||
onBlur={() => enableIncrease(false)}
|
|
||||||
title={_("Increase value. Hint: Hold to increase faster.")}
|
|
||||||
aria-label={_("Increase value. Hint: Hold to increase faster.")}
|
|
||||||
>
|
>
|
||||||
<FontAwesomeIcon icon={faPlus} />
|
<FontAwesomeIcon icon={faPlus} />
|
||||||
</button>
|
</button>
|
||||||
@ -91,15 +69,7 @@ function NumberInput({ onChange, inlineText, value, ...props }) {
|
|||||||
className="btn btn-outline-secondary"
|
className="btn btn-outline-secondary"
|
||||||
onMouseDown={() => enableDecrease(true)}
|
onMouseDown={() => enableDecrease(true)}
|
||||||
onMouseUp={() => enableDecrease(false)}
|
onMouseUp={() => enableDecrease(false)}
|
||||||
onMouseLeave={() => enableDecrease(false)}
|
aria-label="Decrease"
|
||||||
onTouchStart={() => enableDecrease(true)}
|
|
||||||
onTouchEnd={() => enableDecrease(false)}
|
|
||||||
onTouchCancel={() => enableDecrease(false)}
|
|
||||||
onKeyDown={(event) => handleKeyDown(event, enableDecrease)}
|
|
||||||
onKeyUp={(event) => handleKeyUp(event, enableDecrease)}
|
|
||||||
onBlur={() => enableDecrease(false)}
|
|
||||||
title={_("Decrease value. Hint: Hold to decrease faster.")}
|
|
||||||
aria-label={_("Decrease value. Hint: Hold to decrease faster.")}
|
|
||||||
>
|
>
|
||||||
<FontAwesomeIcon icon={faMinus} />
|
<FontAwesomeIcon icon={faMinus} />
|
||||||
</button>
|
</button>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2019-2024 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.
|
||||||
@ -32,7 +32,7 @@ describe("<NumberInput/>", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it("Increase number with button", async () => {
|
it("Increase number with button", async () => {
|
||||||
const increaseButton = getByLabelText(componentContainer, /Increase/);
|
const increaseButton = getByLabelText(componentContainer, "Increase");
|
||||||
fireEvent.mouseDown(increaseButton);
|
fireEvent.mouseDown(increaseButton);
|
||||||
await wait(() =>
|
await wait(() =>
|
||||||
expect(onChangeMock).toHaveBeenCalledWith({ target: { value: 2 } })
|
expect(onChangeMock).toHaveBeenCalledWith({ target: { value: 2 } })
|
||||||
@ -40,7 +40,7 @@ describe("<NumberInput/>", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it("Decrease number with button", async () => {
|
it("Decrease number with button", async () => {
|
||||||
const decreaseButton = getByLabelText(componentContainer, /Decrease/);
|
const decreaseButton = getByLabelText(componentContainer, "Decrease");
|
||||||
fireEvent.mouseDown(decreaseButton);
|
fireEvent.mouseDown(decreaseButton);
|
||||||
await wait(() =>
|
await wait(() =>
|
||||||
expect(onChangeMock).toHaveBeenCalledWith({ target: { value: 0 } })
|
expect(onChangeMock).toHaveBeenCalledWith({ target: { value: 0 } })
|
||||||
|
@ -20,9 +20,8 @@ exports[`<NumberInput/> Render number input 1`] = `
|
|||||||
value="1"
|
value="1"
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
aria-label="Increase value. Hint: Hold to increase faster."
|
aria-label="Increase"
|
||||||
class="btn btn-outline-secondary"
|
class="btn btn-outline-secondary"
|
||||||
title="Increase value. Hint: Hold to increase faster."
|
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
@ -30,9 +29,8 @@ exports[`<NumberInput/> Render number input 1`] = `
|
|||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
aria-label="Decrease value. Hint: Hold to decrease faster."
|
aria-label="Decrease"
|
||||||
class="btn btn-outline-secondary"
|
class="btn btn-outline-secondary"
|
||||||
title="Decrease value. Hint: Hold to decrease faster."
|
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
|
@ -64,15 +64,13 @@ function RichTable({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const paginationIsNeeded = tableData.length > pageSize && withPagination;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="table-responsive">
|
<div className="table-responsive">
|
||||||
<table className="table table-hover text-nowrap">
|
<table className="table table-hover text-nowrap">
|
||||||
<RichTableHeader table={table} flexRender={flexRender} />
|
<RichTableHeader table={table} flexRender={flexRender} />
|
||||||
<RichTableBody table={table} flexRender={flexRender} />
|
<RichTableBody table={table} flexRender={flexRender} />
|
||||||
</table>
|
</table>
|
||||||
{paginationIsNeeded && (
|
{withPagination && (
|
||||||
<RichTablePagination
|
<RichTablePagination
|
||||||
table={table}
|
table={table}
|
||||||
tablePageSize={pageSize}
|
tablePageSize={pageSize}
|
||||||
|
@ -9,10 +9,9 @@ import React from "react";
|
|||||||
|
|
||||||
import PropTypes from "prop-types";
|
import PropTypes from "prop-types";
|
||||||
|
|
||||||
import { HELP_TEXTS, ENCRYPTIONMODES } from "./constants";
|
import { HELP_TEXTS } from "./constants";
|
||||||
import WiFiQRCode from "./WiFiQRCode";
|
import WiFiQRCode from "./WiFiQRCode";
|
||||||
import PasswordInput from "../../bootstrap/PasswordInput";
|
import PasswordInput from "../../bootstrap/PasswordInput";
|
||||||
import Select from "../../bootstrap/Select";
|
|
||||||
import Switch from "../../bootstrap/Switch";
|
import Switch from "../../bootstrap/Switch";
|
||||||
import TextInput from "../../bootstrap/TextInput";
|
import TextInput from "../../bootstrap/TextInput";
|
||||||
|
|
||||||
@ -22,7 +21,6 @@ WifiGuestForm.propTypes = {
|
|||||||
SSID: PropTypes.string.isRequired,
|
SSID: PropTypes.string.isRequired,
|
||||||
password: PropTypes.string.isRequired,
|
password: PropTypes.string.isRequired,
|
||||||
enabled: PropTypes.bool.isRequired,
|
enabled: PropTypes.bool.isRequired,
|
||||||
encryption: PropTypes.string.isRequired,
|
|
||||||
}),
|
}),
|
||||||
formErrors: PropTypes.shape({
|
formErrors: PropTypes.shape({
|
||||||
SSID: PropTypes.string,
|
SSID: PropTypes.string,
|
||||||
@ -91,20 +89,6 @@ export default function WifiGuestForm({
|
|||||||
}))}
|
}))}
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
<Select
|
|
||||||
label={_("Encryption")}
|
|
||||||
choices={ENCRYPTIONMODES}
|
|
||||||
helpText={HELP_TEXTS.wpa3}
|
|
||||||
value={formData.encryption}
|
|
||||||
onChange={setFormValue((value) => ({
|
|
||||||
devices: {
|
|
||||||
[formData.id]: {
|
|
||||||
guest_wifi: { encryption: { $set: value } },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}))}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
</>
|
</>
|
||||||
) : null}
|
) : null}
|
||||||
</>
|
</>
|
||||||
|
@ -339,7 +339,7 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
|
|||||||
- First value
|
- First value
|
||||||
+ Second value
|
+ Second value
|
||||||
|
|
||||||
@@ -524,10 +524,124 @@
|
@@ -524,10 +524,87 @@
|
||||||
<small>
|
<small>
|
||||||
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>
|
||||||
@ -421,50 +421,13 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
|
|||||||
+ WPA2/3 pre-shared key, that is required to connect to the network.
|
+ WPA2/3 pre-shared key, that is required to connect to the network.
|
||||||
+ </small>
|
+ </small>
|
||||||
+ </div>
|
+ </div>
|
||||||
+ </div>
|
|
||||||
+ <div
|
|
||||||
+ class="mb-3"
|
|
||||||
+ >
|
|
||||||
+ <label
|
|
||||||
+ class="form-label"
|
|
||||||
+ for="14"
|
|
||||||
+ >
|
|
||||||
+ Encryption
|
|
||||||
+ </label>
|
|
||||||
+ <select
|
|
||||||
+ class="form-select"
|
|
||||||
+ id="14"
|
|
||||||
+ >
|
|
||||||
+ <option
|
|
||||||
+ value="WPA3"
|
|
||||||
+ >
|
|
||||||
+ WPA3 only
|
|
||||||
+ </option>
|
|
||||||
+ <option
|
|
||||||
+ value="WPA2/3"
|
|
||||||
+ >
|
|
||||||
+ WPA3 with WPA2 as fallback (default)
|
|
||||||
+ </option>
|
|
||||||
+ <option
|
|
||||||
+ value="WPA2"
|
|
||||||
+ >
|
|
||||||
+ WPA2 only
|
|
||||||
+ </option>
|
|
||||||
+ </select>
|
|
||||||
+ <div
|
|
||||||
+ class="form-text"
|
|
||||||
+ >
|
|
||||||
+ <small>
|
|
||||||
+ 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>
|
+ </div>
|
||||||
<hr />
|
<hr />
|
||||||
<div
|
<div
|
||||||
class="form-check form-switch mb-3 d-flex align-items-center"
|
class="form-check form-switch mb-3 d-flex align-items-center"
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
@@ -550,10 +664,11 @@
|
@@ -550,10 +627,11 @@
|
||||||
<div
|
<div
|
||||||
class="text-end"
|
class="text-end"
|
||||||
>
|
>
|
||||||
|
@ -12,12 +12,10 @@ export const HTMODES = {
|
|||||||
VHT20: _("802.11ac - 20 MHz wide channel"),
|
VHT20: _("802.11ac - 20 MHz wide channel"),
|
||||||
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"),
|
||||||
VHT80_80: _("802.11ac - 80+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"),
|
HE20: _("802.11ax - 20 MHz wide channel"),
|
||||||
HE40: _("802.11ax - 40 MHz wide channel"),
|
HE40: _("802.11ax - 40 MHz wide channel"),
|
||||||
HE80: _("802.11ax - 80 MHz wide channel"),
|
HE80: _("802.11ax - 80 MHz wide channel"),
|
||||||
HE80_80: _("802.11ax - 80+80 MHz wide channel"),
|
|
||||||
HE160: _("802.11ax - 160 MHz wide channel"),
|
HE160: _("802.11ax - 160 MHz wide channel"),
|
||||||
};
|
};
|
||||||
export const BANDS = {
|
export const BANDS = {
|
||||||
|
@ -38,8 +38,6 @@ export const ForisURLs = {
|
|||||||
overview: "/overview",
|
overview: "/overview",
|
||||||
notifications: "/overview#notifications",
|
notifications: "/overview#notifications",
|
||||||
notificationsSettings: "/administration/notifications-settings",
|
notificationsSettings: "/administration/notifications-settings",
|
||||||
wifiSettings: "/network-settings/wifi",
|
|
||||||
lanSettings: "/network-settings/lan",
|
|
||||||
|
|
||||||
approveUpdates: "/package-management/updates",
|
approveUpdates: "/package-management/updates",
|
||||||
languages: "/package-management/languages",
|
languages: "/package-management/languages",
|
||||||
|
@ -8,16 +8,15 @@ 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: 2024-11-13 14:06+0100\n"
|
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||||
"PO-Revision-Date: 2024-11-15 06:01+0000\n"
|
"PO-Revision-Date: 2024-09-25 10:15+0000\n"
|
||||||
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n"
|
"Last-Translator: Lukas Jelinek <lukas.jelinek@nic.cz>\n"
|
||||||
"Language-Team: Czech <https://hosted.weblate.org/projects/turris/foris-js/cs/"
|
|
||||||
">\n"
|
|
||||||
"Language: cs\n"
|
"Language: cs\n"
|
||||||
|
"Language-Team: Czech <https://hosted.weblate.org/projects/turris/foris-"
|
||||||
|
"js/cs/>\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
|
|
||||||
"X-Generator: Weblate 5.9-dev\n"
|
|
||||||
"Generated-By: Babel 2.16.0\n"
|
"Generated-By: Babel 2.16.0\n"
|
||||||
|
|
||||||
#: src/api/utils.js:61
|
#: src/api/utils.js:61
|
||||||
@ -50,72 +49,74 @@ msgid "Copy"
|
|||||||
msgstr "Kopírovat"
|
msgstr "Kopírovat"
|
||||||
|
|
||||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||||
|
#, fuzzy
|
||||||
msgid "Action successful."
|
msgid "Action successful."
|
||||||
msgstr "Akce úspěšná."
|
msgstr "Nastavení úspěšně uložena"
|
||||||
|
|
||||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||||
msgid "Action failed."
|
msgid "Action failed."
|
||||||
msgstr "Akce se nezdařila."
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Zrušit"
|
msgstr "Zrušit"
|
||||||
|
|
||||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||||
|
#, fuzzy
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Potvrdit"
|
msgstr "Potvrdit restart"
|
||||||
|
|
||||||
#: src/common/RichTable/RichTableHeader.js:29
|
#: src/common/RichTable/RichTableHeader.js:29
|
||||||
msgid "Sort ascending"
|
msgid "Sort ascending"
|
||||||
msgstr "Seřadit vzestupně"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTableHeader.js:30
|
#: src/common/RichTable/RichTableHeader.js:30
|
||||||
msgid "Sort descending"
|
msgid "Sort descending"
|
||||||
msgstr "Seřadit sestupně"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTableHeader.js:31
|
#: src/common/RichTable/RichTableHeader.js:31
|
||||||
msgid "Clear sort"
|
msgid "Clear sort"
|
||||||
msgstr "Vyčistit řazení"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:65
|
#: src/common/RichTable/RichTablePagination.js:65
|
||||||
msgid "Pagination navigation bar"
|
msgid "Pagination navigation bar"
|
||||||
msgstr "Navigační pruh stránkování"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:71
|
#: src/common/RichTable/RichTablePagination.js:71
|
||||||
msgid "First page"
|
msgid "First page"
|
||||||
msgstr "První stránka"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:77
|
#: src/common/RichTable/RichTablePagination.js:77
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Předchozí stránka"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:83
|
#: src/common/RichTable/RichTablePagination.js:83
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Následující stránka"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:89
|
#: src/common/RichTable/RichTablePagination.js:89
|
||||||
msgid "Last page"
|
msgid "Last page"
|
||||||
msgstr "Poslední stránka"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:95
|
#: src/common/RichTable/RichTablePagination.js:95
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Stránka"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:98
|
#: src/common/RichTable/RichTablePagination.js:98
|
||||||
msgid "of"
|
msgid "of"
|
||||||
msgstr "z"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:106
|
#: src/common/RichTable/RichTablePagination.js:106
|
||||||
msgid "Rows per page:"
|
msgid "Rows per page:"
|
||||||
msgstr "Řádků na stránku:"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:109
|
#: src/common/RichTable/RichTablePagination.js:109
|
||||||
msgid "Select rows per page"
|
msgid "Select rows per page"
|
||||||
msgstr "Vyberte řádky na stránku"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:121
|
#: src/common/RichTable/RichTablePagination.js:121
|
||||||
msgid "All"
|
msgid "All"
|
||||||
msgstr "Vše"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||||
msgid "An error occurred during resetting Wi-Fi settings."
|
msgid "An error occurred during resetting Wi-Fi settings."
|
||||||
@ -136,9 +137,9 @@ msgid ""
|
|||||||
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
"and restore the default values."
|
"and restore the default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pokud se počet bezdrátových karet neshoduje, můžete zkusit obnovit nastavení "
|
"Pokud se počet bezdrátových karet neshoduje, můžete zkusit obnovit "
|
||||||
"Wi-Fi. Je třeba upozornit, že se tím odstraní stávající nastavení Wi-Fi a "
|
"nastavení Wi-Fi. Je třeba upozornit, že se tím odstraní aktuální "
|
||||||
"obnoví se výchozí hodnoty."
|
"konfigurace Wi-Fi a obnoví se výchozí hodnoty."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:97
|
#: src/common/WiFiSettings/WiFiForm.js:97
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
@ -174,7 +175,7 @@ msgid ""
|
|||||||
"In case you have trouble connecting to WiFi Access Point, try disabling "
|
"In case you have trouble connecting to WiFi Access Point, try disabling "
|
||||||
"Management Frame Protection."
|
"Management Frame Protection."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pokud máte problémy při připojování k přístupovému bodu Wi-Fi, zkuste "
|
"Máte-li problémy při připojování k přístupovému bodu Wi-Fi, zkuste "
|
||||||
"vypnout Management Frame Protection."
|
"vypnout Management Frame Protection."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:262
|
#: src/common/WiFiSettings/WiFiForm.js:262
|
||||||
@ -225,7 +226,7 @@ msgstr "Je třeba, aby heslo obsahovalo alespoň 8 znaků"
|
|||||||
#: src/common/WiFiSettings/WiFiSettings.js:91
|
#: src/common/WiFiSettings/WiFiSettings.js:91
|
||||||
#: src/common/WiFiSettings/WiFiSettings.js:110
|
#: src/common/WiFiSettings/WiFiSettings.js:110
|
||||||
msgid "Password must not contain more than 63 symbols"
|
msgid "Password must not contain more than 63 symbols"
|
||||||
msgstr "Heslo nemůže obsahovat více než 63 znaků"
|
msgstr "Heslo nesmí obsahovat více než 63 znaků"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:9
|
#: src/common/WiFiSettings/constants.js:9
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
@ -362,11 +363,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: src/form/components/SubmitButton.js:32
|
#: src/form/components/SubmitButton.js:32
|
||||||
msgid "Updating"
|
msgid "Updating"
|
||||||
msgstr "Aktualizuje se"
|
msgstr "Aktualizuji"
|
||||||
|
|
||||||
#: src/form/components/SubmitButton.js:35
|
#: src/form/components/SubmitButton.js:35
|
||||||
msgid "Load settings"
|
msgid "Load settings"
|
||||||
msgstr "Načíst nastavení"
|
msgstr "Načítám nastavení"
|
||||||
|
|
||||||
#: src/form/components/SubmitButton.js:38
|
#: src/form/components/SubmitButton.js:38
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
@ -398,7 +399,7 @@ msgstr "Toto není platné doménové jméno."
|
|||||||
|
|
||||||
#: src/utils/validations.js:18
|
#: src/utils/validations.js:18
|
||||||
msgid "This is not a valid DUID."
|
msgid "This is not a valid DUID."
|
||||||
msgstr "Toto není platné DUID."
|
msgstr "Tohle není platné DUID."
|
||||||
|
|
||||||
#: src/utils/validations.js:19
|
#: src/utils/validations.js:19
|
||||||
msgid "This is not a valid MAC address."
|
msgid "This is not a valid MAC address."
|
||||||
@ -445,3 +446,4 @@ msgstr "Neobsahuje seznam e-mailů oddělených čárkou."
|
|||||||
|
|
||||||
#~ 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 "Opravdu chcete router restartovat?"
|
||||||
|
|
||||||
|
@ -11,8 +11,8 @@ msgstr ""
|
|||||||
"PO-Revision-Date: 2024-01-04 21:08+0000\n"
|
"PO-Revision-Date: 2024-01-04 21:08+0000\n"
|
||||||
"Last-Translator: Erik Pfannenstein <debianignatz@gmx.de>\n"
|
"Last-Translator: Erik Pfannenstein <debianignatz@gmx.de>\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
"Language-Team: German <https://hosted.weblate.org/projects/turris/foris-js/"
|
"Language-Team: German <https://hosted.weblate.org/projects/turris/foris-"
|
||||||
"de/>\n"
|
"js/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"
|
||||||
@ -35,16 +35,16 @@ msgstr "Keine Antwort erhalten."
|
|||||||
msgid "An unknown API error occurred."
|
msgid "An unknown API error occurred."
|
||||||
msgstr "Ein unbekannter API-Fehler ist aufgetreten."
|
msgstr "Ein unbekannter API-Fehler ist aufgetreten."
|
||||||
|
|
||||||
#: src/bootstrap/Alert.js:57 src/bootstrap/Modal.js:101
|
#: src/bootstrap/Alert.js:73 src/bootstrap/Modal.js:101
|
||||||
#: src/common/WiFiSettings/WiFiQRCode.js:89
|
#: src/common/WiFiSettings/WiFiQRCode.js:89
|
||||||
msgid "Close"
|
msgid "Close"
|
||||||
msgstr "Schließen"
|
msgstr ""
|
||||||
|
|
||||||
#: src/bootstrap/CopyInput.js:56 src/bootstrap/CopyInput.js:57
|
#: src/bootstrap/CopyInput.js:56
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr "Kopiert!"
|
msgstr "Kopiert!"
|
||||||
|
|
||||||
#: src/bootstrap/CopyInput.js:56 src/bootstrap/CopyInput.js:57
|
#: src/bootstrap/CopyInput.js:56
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopieren"
|
msgstr "Kopieren"
|
||||||
|
|
||||||
@ -58,7 +58,6 @@ msgid "Action failed."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||||
#: src/common/RebootButton.js:71
|
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Abbrechen"
|
msgstr "Abbrechen"
|
||||||
|
|
||||||
@ -122,7 +121,8 @@ msgstr ""
|
|||||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
#: 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."
|
"Ein Fehler ist während der Zurücksetzung der WLAN-Einstellungen "
|
||||||
|
"aufgetreten."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
|
||||||
msgid "Wi-Fi settings are set to defaults."
|
msgid "Wi-Fi settings are set to defaults."
|
||||||
@ -135,13 +135,13 @@ msgstr "WLAN-Einstellungen zurücksetzen"
|
|||||||
|
|
||||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:58
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:58
|
||||||
msgid ""
|
msgid ""
|
||||||
"If a number of wireless cards doesn't match, you may try to reset the Wi-Fi "
|
"If a number of wireless cards doesn't match, you may try to reset the Wi-"
|
||||||
"settings. Note that this will remove the current Wi-Fi configuration and "
|
"Fi settings. Note that this will remove the current Wi-Fi configuration "
|
||||||
"restore the default values."
|
"and restore the default values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Falls die Anzahl der WLAN-Karten nicht korrekt ist, könnte es helfen, die "
|
"Falls die Anzahl der WLAN-Karten nicht korrekt ist, könnte es helfen, die"
|
||||||
"WLAN-Einstellungen zurückzusetzen. Beachten Sie, dass dabei die aktuelle "
|
" WLAN-Einstellungen zurückzusetzen. Beachten Sie, dass dabei die aktuelle"
|
||||||
"WLAN-Konfiguration mit den Werkseinstellungen überschrieben wird."
|
" WLAN-Konfiguration mit den Werkseinstellungen überschrieben wird."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:97
|
#: src/common/WiFiSettings/WiFiForm.js:97
|
||||||
msgid "Wi-Fi ${deviceID + 1}"
|
msgid "Wi-Fi ${deviceID + 1}"
|
||||||
@ -177,8 +177,8 @@ msgid ""
|
|||||||
"In case you have trouble connecting to WiFi Access Point, try disabling "
|
"In case you have trouble connecting to WiFi Access Point, try disabling "
|
||||||
"Management Frame Protection."
|
"Management Frame Protection."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Falls Sie beim Verbinden mit dem WiFi-Access-Point Probleme haben, schalten "
|
"Falls Sie beim Verbinden mit dem WiFi-Access-Point Probleme haben, "
|
||||||
"Sie testweise die Management Frame Protection ab."
|
"schalten Sie testweise die Management Frame Protection ab."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:262
|
#: src/common/WiFiSettings/WiFiForm.js:262
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
@ -194,8 +194,9 @@ msgstr "Gast-WLAN aktivieren"
|
|||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiQRCode.js:43
|
#: src/common/WiFiSettings/WiFiQRCode.js:43
|
||||||
#: src/common/WiFiSettings/WiFiQRCode.js:44
|
#: src/common/WiFiSettings/WiFiQRCode.js:44
|
||||||
|
#, fuzzy
|
||||||
msgid "Show QR code"
|
msgid "Show QR code"
|
||||||
msgstr "QR-Code anzeigen"
|
msgstr "WLAN QR-Code"
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiQRCode.js:70
|
#: src/common/WiFiSettings/WiFiQRCode.js:70
|
||||||
msgid "Wi-Fi QR Code"
|
msgid "Wi-Fi QR Code"
|
||||||
@ -296,8 +297,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: 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."
|
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
|
||||||
msgstr ""
|
msgstr "WPA2/3 Pre-Shard Key, der zum Verbinden mit dem Netzwerk notwendig ist."
|
||||||
"WPA2/3 Pre-Shard Key, der zum Verbinden mit dem Netzwerk notwendig ist."
|
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:37
|
#: 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."
|
||||||
@ -307,54 +307,55 @@ msgstr ""
|
|||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:40
|
#: src/common/WiFiSettings/constants.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"The 2.4 GHz band is more widely supported by clients, but tends to have more "
|
"The 2.4 GHz band is more widely supported by clients, but tends to have "
|
||||||
"interference. The 5 GHz band is a newer standard and may not be supported by "
|
"more interference. The 5 GHz band is a newer standard and may not be "
|
||||||
"all your devices. It usually has less interference, but the signal does not "
|
"supported by all your devices. It usually has less interference, but the "
|
||||||
"carry so well indoors."
|
"signal does not carry so well indoors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Das 2,4 GHz-Band wird von allen Geräten unterstützt, ist aber tendenziell "
|
"Das 2,4 GHz-Band wird von allen Geräten unterstützt, ist aber tendenziell"
|
||||||
"stärker mit Interferenzen belastet. Das 5-GHz-Band ist ein neuerer Standard, "
|
" stärker mit Interferenzen belastet. Das 5-GHz-Band ist ein neuerer "
|
||||||
"der möglicherweise nicht von allen Ihren Geräten unterstützt wird. Es hat in "
|
"Standard, der möglicherweise nicht von allen Ihren Geräten unterstützt "
|
||||||
"der Regel weniger Interferenzen, aber das Signal trägt nicht so gut in "
|
"wird. Es hat in der Regel weniger Interferenzen, aber das Signal trägt "
|
||||||
"Innenräumen."
|
"nicht so gut in Innenräumen."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:43
|
#: src/common/WiFiSettings/constants.js:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 MHz "
|
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
|
||||||
"wide channels can yield higher throughput but can cause more interference in "
|
"MHz wide channels can yield higher throughput but can cause more "
|
||||||
"the network. If you don't know what to choose, use the default option with "
|
"interference in the network. If you don't know what to choose, use the "
|
||||||
"20 MHz wide channel."
|
"default option with 20 MHz wide channel."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ändern Sie diese Option, um den 802.11n/ac/ax-Betriebsmodus anzupassen. 40 "
|
"Ändern Sie diese Option, um den 802.11n/ac/ax-Betriebsmodus anzupassen. "
|
||||||
"MHz breite Kanäle können bei 802.11n mehr Daten transportieren, jedoch zu "
|
"40 MHz breite Kanäle können bei 802.11n mehr Daten transportieren, jedoch"
|
||||||
"mehr Interferenzen im Netzwerk führen. Wenn Sie nicht wissen, was Sie wählen "
|
" zu mehr Interferenzen im Netzwerk führen. Wenn Sie nicht wissen, was Sie"
|
||||||
"sollen, verwenden Sie die Voreinstellung mit 20 MHz Kanalbreite."
|
" wählen sollen, verwenden Sie die Voreinstellung mit 20 MHz Kanalbreite."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:46
|
#: src/common/WiFiSettings/constants.js:46
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
|
"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 "
|
"connected to this network are allowed to access the internet, but aren't "
|
||||||
"allowed to access other devices and the configuration interface of the "
|
"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."
|
"router. Parameters of the guest network can be set in the Guest network "
|
||||||
|
"tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ermöglicht ein Wi-Fi für Gäste, das vom LAN-Netzwerk getrennt ist. Geräte, "
|
"Ermöglicht ein Wi-Fi für Gäste, das vom LAN-Netzwerk getrennt ist. "
|
||||||
"die mit diesem Netzwerk verbunden sind, dürfen auf das Internet zugreifen, "
|
"Geräte, die mit diesem Netzwerk verbunden sind, dürfen auf das Internet "
|
||||||
"nicht jedoch auf andere Geräte oder die Konfigurationsschnittstelle des "
|
"zugreifen, nicht jedoch auf andere Geräte oder die "
|
||||||
"Routers. Die Parameter des Gastnetzwerks können auf der Gastnetzwerk-"
|
"Konfigurationsschnittstelle des Routers. Die Parameter des Gastnetzwerks "
|
||||||
"Registerkarte eingestellt werden."
|
"können auf der Gastnetzwerk-Registerkarte eingestellt werden."
|
||||||
|
|
||||||
#: src/common/WiFiSettings/constants.js:49
|
#: src/common/WiFiSettings/constants.js:49
|
||||||
msgid ""
|
msgid ""
|
||||||
"The WPA3 standard is the new most secure encryption method that is suggested "
|
"The WPA3 standard is the new most secure encryption method that is "
|
||||||
"to be used with any device that supports it. The older devices without WPA3 "
|
"suggested to be used with any device that supports it. The older devices "
|
||||||
"support require older WPA2. If you experience issues with connecting older "
|
"without WPA3 support require older WPA2. If you experience issues with "
|
||||||
"devices, try to enable WPA2."
|
"connecting older devices, try to enable WPA2."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Der WPA3-Standard ist die neue Verschlüsselungsmethode mit der besten "
|
"Der WPA3-Standard ist die neue Verschlüsselungsmethode mit der besten "
|
||||||
"Sicherheit. Er empfiehlt sich für jedes Gerät, das ihn unterstützt, aber "
|
"Sicherheit. Er empfiehlt sich für jedes Gerät, das ihn unterstützt, aber "
|
||||||
"ältere Geräte, bei denen das noch nicht der Fall ist, müssen auf das ältere "
|
"ältere Geräte, bei denen das noch nicht der Fall ist, müssen auf das "
|
||||||
"WPA2 ausweichen. Falls Sie Probleme dabei haben, ältere Geräte mit dem WLAN "
|
"ältere WPA2 ausweichen. Falls Sie Probleme dabei haben, ältere Geräte mit"
|
||||||
"zu verbinden, schalten Sie versuchsweise WPA2 ein."
|
" dem WLAN zu verbinden, schalten Sie versuchsweise WPA2 ein."
|
||||||
|
|
||||||
#: src/form/components/ForisForm.js:121
|
#: src/form/components/ForisForm.js:121
|
||||||
msgid "Settings saved successfully"
|
msgid "Settings saved successfully"
|
||||||
@ -414,25 +415,34 @@ msgstr "Dies ist keine gültige MAC-Adresse."
|
|||||||
msgid "Doesn't contain a list of emails separated by commas."
|
msgid "Doesn't contain a list of emails separated by commas."
|
||||||
msgstr "Enthält keine Liste von E-Mails, die durch Kommas getrennt sind."
|
msgstr "Enthält keine Liste von E-Mails, die durch Kommas getrennt sind."
|
||||||
|
|
||||||
#: src/common/RebootButton.js:27
|
#~ msgid "An unknown error occurred. Check the console for more info."
|
||||||
msgid "Reboot request failed."
|
#~ msgstr ""
|
||||||
msgstr "Neustart-Einleitung fehlgeschlagen."
|
|
||||||
|
|
||||||
#: src/common/RebootButton.js:51
|
#~ msgid "Reboot confirmation"
|
||||||
msgid "Reboot"
|
#~ msgstr ""
|
||||||
msgstr "Systemneustart"
|
|
||||||
|
|
||||||
#: src/common/RebootButton.js:66
|
|
||||||
msgid "Warning!"
|
|
||||||
msgstr "Warnung!"
|
|
||||||
|
|
||||||
#: src/common/RebootButton.js:68
|
|
||||||
msgid "Are you sure you want to restart the router?"
|
|
||||||
msgstr "Sind Sie sicher, dass Sie den Router neu starten wollen?"
|
|
||||||
|
|
||||||
#: src/common/RebootButton.js:73
|
|
||||||
msgid "Confirm reboot"
|
|
||||||
msgstr "Neustart bestätigen"
|
|
||||||
|
|
||||||
#~ msgid "Enable"
|
#~ msgid "Enable"
|
||||||
#~ msgstr "Aktivieren"
|
#~ 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 ""
|
||||||
|
|
||||||
|
#~ msgid "Reboot request failed."
|
||||||
|
#~ msgstr "Neustart-Einleitung fehlgeschlagen."
|
||||||
|
|
||||||
|
#~ msgid "Reboot"
|
||||||
|
#~ msgstr "Systemneustart"
|
||||||
|
|
||||||
|
#~ msgid "Warning!"
|
||||||
|
#~ msgstr "Warnung!"
|
||||||
|
|
||||||
|
#~ msgid "Are you sure you want to restart the router?"
|
||||||
|
#~ msgstr "Sind Sie sicher, dass Sie den Router neu starten wollen?"
|
||||||
|
|
||||||
|
@ -8,16 +8,15 @@ 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: 2024-11-13 14:06+0100\n"
|
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||||
"PO-Revision-Date: 2025-01-18 11:00+0000\n"
|
"PO-Revision-Date: 2021-02-09 16:50+0000\n"
|
||||||
"Last-Translator: Thanasis <thanasakis11mail@gmail.com>\n"
|
"Last-Translator: Michalis <michalisntovas@yahoo.gr>\n"
|
||||||
"Language-Team: Greek <https://hosted.weblate.org/projects/turris/foris-js/el/"
|
|
||||||
">\n"
|
|
||||||
"Language: el\n"
|
"Language: el\n"
|
||||||
|
"Language-Team: Greek <https://hosted.weblate.org/projects/turris/foris-"
|
||||||
|
"js/el/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.10-dev\n"
|
|
||||||
"Generated-By: Babel 2.16.0\n"
|
"Generated-By: Babel 2.16.0\n"
|
||||||
|
|
||||||
#: src/api/utils.js:61
|
#: src/api/utils.js:61
|
||||||
@ -39,7 +38,7 @@ msgstr ""
|
|||||||
#: src/bootstrap/Alert.js:73 src/bootstrap/Modal.js:101
|
#: src/bootstrap/Alert.js:73 src/bootstrap/Modal.js:101
|
||||||
#: src/common/WiFiSettings/WiFiQRCode.js:89
|
#: src/common/WiFiSettings/WiFiQRCode.js:89
|
||||||
msgid "Close"
|
msgid "Close"
|
||||||
msgstr "Κλείσιμο"
|
msgstr ""
|
||||||
|
|
||||||
#: src/bootstrap/CopyInput.js:56
|
#: src/bootstrap/CopyInput.js:56
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
@ -180,7 +179,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiForm.js:303
|
#: src/common/WiFiSettings/WiFiForm.js:303
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "Προσαρμοσμένο"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:43
|
#: src/common/WiFiSettings/WiFiGuestForm.js:43
|
||||||
msgid "Enable Guest Wi-Fi"
|
msgid "Enable Guest Wi-Fi"
|
||||||
@ -226,7 +225,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: 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"
|
||||||
@ -484,3 +483,4 @@ msgstr ""
|
|||||||
|
|
||||||
#~ msgid "Are you sure you want to restart the router?"
|
#~ msgid "Are you sure you want to restart the router?"
|
||||||
#~ msgstr "Είστε βέβαιοι ότι θέλετε να κάνετε επανεκκίνηση του δρομολογητή;"
|
#~ msgstr "Είστε βέβαιοι ότι θέλετε να κάνετε επανεκκίνηση του δρομολογητή;"
|
||||||
|
|
||||||
|
@ -8,16 +8,15 @@ 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: 2024-11-13 14:06+0100\n"
|
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||||
"PO-Revision-Date: 2024-12-14 10:00+0000\n"
|
"PO-Revision-Date: 2024-07-27 01:09+0000\n"
|
||||||
"Last-Translator: ButterflyOfFire <boffire@users.noreply.hosted.weblate.org>\n"
|
"Last-Translator: Moha684 <nahil82466@gmail.com>\n"
|
||||||
"Language-Team: French <https://hosted.weblate.org/projects/turris/foris-js/"
|
|
||||||
"fr/>\n"
|
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
|
"Language-Team: French <https://hosted.weblate.org/projects/turris/foris-"
|
||||||
|
"js/fr/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
||||||
"X-Generator: Weblate 5.9-rc\n"
|
|
||||||
"Generated-By: Babel 2.16.0\n"
|
"Generated-By: Babel 2.16.0\n"
|
||||||
|
|
||||||
#: src/api/utils.js:61
|
#: src/api/utils.js:61
|
||||||
@ -39,7 +38,7 @@ msgstr "Une erreur d’API inconnue s’est produite."
|
|||||||
#: src/bootstrap/Alert.js:73 src/bootstrap/Modal.js:101
|
#: src/bootstrap/Alert.js:73 src/bootstrap/Modal.js:101
|
||||||
#: src/common/WiFiSettings/WiFiQRCode.js:89
|
#: src/common/WiFiSettings/WiFiQRCode.js:89
|
||||||
msgid "Close"
|
msgid "Close"
|
||||||
msgstr "Fermer"
|
msgstr ""
|
||||||
|
|
||||||
#: src/bootstrap/CopyInput.js:56
|
#: src/bootstrap/CopyInput.js:56
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
@ -50,12 +49,13 @@ msgid "Copy"
|
|||||||
msgstr "Copier"
|
msgstr "Copier"
|
||||||
|
|
||||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||||
|
#, fuzzy
|
||||||
msgid "Action successful."
|
msgid "Action successful."
|
||||||
msgstr "Paramètres enregistrés avec succès."
|
msgstr "Paramètres enregistrés avec succès"
|
||||||
|
|
||||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||||
msgid "Action failed."
|
msgid "Action failed."
|
||||||
msgstr "L'enregistrement des paramètres a échoué."
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
@ -84,39 +84,39 @@ msgstr ""
|
|||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:71
|
#: src/common/RichTable/RichTablePagination.js:71
|
||||||
msgid "First page"
|
msgid "First page"
|
||||||
msgstr "Première page"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:77
|
#: src/common/RichTable/RichTablePagination.js:77
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Page précédente"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:83
|
#: src/common/RichTable/RichTablePagination.js:83
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Page suivante"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:89
|
#: src/common/RichTable/RichTablePagination.js:89
|
||||||
msgid "Last page"
|
msgid "Last page"
|
||||||
msgstr "Dernière page"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:95
|
#: src/common/RichTable/RichTablePagination.js:95
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Page"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:98
|
#: src/common/RichTable/RichTablePagination.js:98
|
||||||
msgid "of"
|
msgid "of"
|
||||||
msgstr "de"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:106
|
#: src/common/RichTable/RichTablePagination.js:106
|
||||||
msgid "Rows per page:"
|
msgid "Rows per page:"
|
||||||
msgstr "Lignes par page :"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:109
|
#: src/common/RichTable/RichTablePagination.js:109
|
||||||
msgid "Select rows per page"
|
msgid "Select rows per page"
|
||||||
msgstr "Sélectionnez les lignes par page"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:121
|
#: src/common/RichTable/RichTablePagination.js:121
|
||||||
msgid "All"
|
msgid "All"
|
||||||
msgstr "Tout"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||||
msgid "An error occurred during resetting Wi-Fi settings."
|
msgid "An error occurred during resetting Wi-Fi settings."
|
||||||
@ -473,3 +473,4 @@ msgstr ""
|
|||||||
|
|
||||||
#~ 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 "Voulez-vous vraiment redémarrer le routeur ?"
|
||||||
|
|
||||||
|
@ -8,16 +8,15 @@ 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: 2024-11-13 14:06+0100\n"
|
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||||
"PO-Revision-Date: 2024-12-14 10:00+0000\n"
|
"PO-Revision-Date: 2024-09-09 18:09+0000\n"
|
||||||
"Last-Translator: Atec <dr.atec@gmail.com>\n"
|
"Last-Translator: Atec <dr.atec@gmail.com>\n"
|
||||||
"Language-Team: Slovak <https://hosted.weblate.org/projects/turris/foris-js/"
|
|
||||||
"sk/>\n"
|
|
||||||
"Language: sk\n"
|
"Language: sk\n"
|
||||||
|
"Language-Team: Slovak <https://hosted.weblate.org/projects/turris/foris-"
|
||||||
|
"js/sk/>\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
|
|
||||||
"X-Generator: Weblate 5.9-rc\n"
|
|
||||||
"Generated-By: Babel 2.16.0\n"
|
"Generated-By: Babel 2.16.0\n"
|
||||||
|
|
||||||
#: src/api/utils.js:61
|
#: src/api/utils.js:61
|
||||||
@ -50,72 +49,74 @@ msgid "Copy"
|
|||||||
msgstr "Kopírovať"
|
msgstr "Kopírovať"
|
||||||
|
|
||||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||||
|
#, fuzzy
|
||||||
msgid "Action successful."
|
msgid "Action successful."
|
||||||
msgstr "Akcia úspešná."
|
msgstr "Nastavenia boli úspešne uložené"
|
||||||
|
|
||||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||||
msgid "Action failed."
|
msgid "Action failed."
|
||||||
msgstr "Akcia neúspešná."
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Zrušiť"
|
msgstr "Zrušiť"
|
||||||
|
|
||||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||||
|
#, fuzzy
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Potvrdiť"
|
msgstr "Potvrdiť reštart"
|
||||||
|
|
||||||
#: src/common/RichTable/RichTableHeader.js:29
|
#: src/common/RichTable/RichTableHeader.js:29
|
||||||
msgid "Sort ascending"
|
msgid "Sort ascending"
|
||||||
msgstr "Zoradiť vzostupne"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTableHeader.js:30
|
#: src/common/RichTable/RichTableHeader.js:30
|
||||||
msgid "Sort descending"
|
msgid "Sort descending"
|
||||||
msgstr "Zoradiť zostupne"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTableHeader.js:31
|
#: src/common/RichTable/RichTableHeader.js:31
|
||||||
msgid "Clear sort"
|
msgid "Clear sort"
|
||||||
msgstr "Vymazať zoradenie"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:65
|
#: src/common/RichTable/RichTablePagination.js:65
|
||||||
msgid "Pagination navigation bar"
|
msgid "Pagination navigation bar"
|
||||||
msgstr "Navigačný pás stránkovania"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:71
|
#: src/common/RichTable/RichTablePagination.js:71
|
||||||
msgid "First page"
|
msgid "First page"
|
||||||
msgstr "Prvá strana"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:77
|
#: src/common/RichTable/RichTablePagination.js:77
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Predchádzajúca strana"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:83
|
#: src/common/RichTable/RichTablePagination.js:83
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Nasledujúca strana"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:89
|
#: src/common/RichTable/RichTablePagination.js:89
|
||||||
msgid "Last page"
|
msgid "Last page"
|
||||||
msgstr "Posledná strana"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:95
|
#: src/common/RichTable/RichTablePagination.js:95
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Strana"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:98
|
#: src/common/RichTable/RichTablePagination.js:98
|
||||||
msgid "of"
|
msgid "of"
|
||||||
msgstr "z"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:106
|
#: src/common/RichTable/RichTablePagination.js:106
|
||||||
msgid "Rows per page:"
|
msgid "Rows per page:"
|
||||||
msgstr "Počet riadkov na stranu:"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:109
|
#: src/common/RichTable/RichTablePagination.js:109
|
||||||
msgid "Select rows per page"
|
msgid "Select rows per page"
|
||||||
msgstr "Vyberte počet riadkov na stranu"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/RichTable/RichTablePagination.js:121
|
#: src/common/RichTable/RichTablePagination.js:121
|
||||||
msgid "All"
|
msgid "All"
|
||||||
msgstr "Všetky"
|
msgstr ""
|
||||||
|
|
||||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||||
msgid "An error occurred during resetting Wi-Fi settings."
|
msgid "An error occurred during resetting Wi-Fi settings."
|
||||||
@ -446,3 +447,4 @@ msgstr "Neobsahuje zoznam e-mailov oddelených čiarkami."
|
|||||||
|
|
||||||
#~ 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 "Naozaj sa má router reštartovať?"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user