mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2024-11-14 17:35:35 +01:00
Compare commits
6 Commits
087ecfa670
...
5a53eca138
Author | SHA1 | Date | |
---|---|---|---|
|
5a53eca138 | ||
|
8d2a4dc108 | ||
|
2481a0c025 | ||
|
71697424c5 | ||
|
07f8e3b9de | ||
|
c9f2b24095 |
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -8,6 +8,20 @@ and this project adheres to
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [6.5.0] - 2024-11-13
|
||||
|
||||
### Added
|
||||
|
||||
- Added & updated Weblate translations
|
||||
- Added RichTable component with pagination and sorting
|
||||
- Added @tanstack/react-table v8.20.5 to dependencies
|
||||
|
||||
### Changed
|
||||
|
||||
- Updated documentation
|
||||
- Replaced RebootButton with ActionButtonWithModal component
|
||||
- Fixed import path for CustomizationContextMock in customTestRender.js
|
||||
|
||||
## [6.4.0] - 2024-10-02
|
||||
|
||||
### Changed
|
||||
|
@ -405,7 +419,8 @@ and this project adheres to
|
|||
## [0.0.7] - 2019-09-02
|
||||
|
||||
[unreleased]:
|
||||
https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.4.0...dev
|
||||
https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.5.0...dev
|
||||
[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.3.0]: https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.2.1...v6.3.0
|
||||
[6.2.1]: https://gitlab.nic.cz/turris/reforis/foris-js/-/compare/v6.2.0...v6.2.1
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "foris",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "foris",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "foris",
|
||||
"version": "6.4.0",
|
||||
"version": "6.5.0",
|
||||
"description": "Foris JS library is a set of components and utils for reForis application and plugins.",
|
||||
"author": "CZ.NIC, z.s.p.o.",
|
||||
"repository": {
|
||||
|
|
135
src/common/ActionButtonWithModal/ActionButtonWithModal.js
Normal file
135
src/common/ActionButtonWithModal/ActionButtonWithModal.js
Normal file
|
@ -0,0 +1,135 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2024 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, useEffect } from "react";
|
||||
|
||||
import PropTypes from "prop-types";
|
||||
|
||||
import { useAPIPost } from "../../api/hooks";
|
||||
import { API_STATE } from "../../api/utils";
|
||||
import Button from "../../bootstrap/Button";
|
||||
import {
|
||||
Modal,
|
||||
ModalHeader,
|
||||
ModalBody,
|
||||
ModalFooter,
|
||||
} from "../../bootstrap/Modal";
|
||||
import { useAlert } from "../../context/alertContext/AlertContext";
|
||||
|
||||
ActionButtonWithModal.propTypes = {
|
||||
/** Component that triggers the action. */
|
||||
actionTrigger: PropTypes.elementType.isRequired,
|
||||
/** URL to send the action to. */
|
||||
actionUrl: PropTypes.string.isRequired,
|
||||
/** Title of the modal. */
|
||||
modalTitle: PropTypes.string.isRequired,
|
||||
/** Message of the modal. */
|
||||
modalMessage: PropTypes.string.isRequired,
|
||||
/** Text of the action button in the modal. */
|
||||
modalActionText: PropTypes.string,
|
||||
/** Props for the action button in the modal. */
|
||||
modalActionProps: PropTypes.object,
|
||||
/** Message to display on successful action. */
|
||||
successMessage: PropTypes.string,
|
||||
/** Message to display on failed action. */
|
||||
errorMessage: PropTypes.string,
|
||||
};
|
||||
|
||||
function ActionButtonWithModal({
|
||||
actionTrigger: ActionTriggerComponent,
|
||||
actionUrl,
|
||||
modalTitle,
|
||||
modalMessage,
|
||||
modalActionText,
|
||||
modalActionProps,
|
||||
successMessage,
|
||||
errorMessage,
|
||||
}) {
|
||||
const [triggered, setTriggered] = useState(false);
|
||||
const [modalShown, setModalShown] = useState(false);
|
||||
const [triggerActionStatus, triggerAction] = useAPIPost(actionUrl);
|
||||
|
||||
const [setAlert] = useAlert();
|
||||
useEffect(() => {
|
||||
if (triggerActionStatus.state === API_STATE.SUCCESS) {
|
||||
setAlert(
|
||||
successMessage || _("Action successful."),
|
||||
API_STATE.SUCCESS
|
||||
);
|
||||
}
|
||||
if (triggerActionStatus.state === API_STATE.ERROR) {
|
||||
setAlert(errorMessage || _("Action failed."));
|
||||
}
|
||||
}, [triggerActionStatus, setAlert, successMessage, errorMessage]);
|
||||
|
||||
const actionHandler = () => {
|
||||
setTriggered(true);
|
||||
triggerAction();
|
||||
setModalShown(false);
|
||||
};
|
||||
|
||||
return (
|
||||
<>
|
||||
<ActionModal
|
||||
shown={modalShown}
|
||||
setShown={setModalShown}
|
||||
onAction={actionHandler}
|
||||
title={modalTitle}
|
||||
message={modalMessage}
|
||||
actionText={modalActionText}
|
||||
actionProps={modalActionProps}
|
||||
/>
|
||||
<ActionTriggerComponent
|
||||
loading={triggered}
|
||||
disabled={triggered}
|
||||
onClick={() => setModalShown(true)}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
ActionModal.propTypes = {
|
||||
shown: PropTypes.bool.isRequired,
|
||||
setShown: PropTypes.func.isRequired,
|
||||
onAction: PropTypes.func.isRequired,
|
||||
title: PropTypes.string.isRequired,
|
||||
message: PropTypes.string.isRequired,
|
||||
actionText: PropTypes.string,
|
||||
actionProps: PropTypes.object,
|
||||
};
|
||||
|
||||
function ActionModal({
|
||||
shown,
|
||||
setShown,
|
||||
onAction,
|
||||
title,
|
||||
message,
|
||||
actionText,
|
||||
actionProps,
|
||||
}) {
|
||||
return (
|
||||
<Modal shown={shown} setShown={setShown}>
|
||||
<ModalHeader setShown={setShown} title={title} />
|
||||
<ModalBody>
|
||||
<p className="mb-0">{message}</p>
|
||||
</ModalBody>
|
||||
<ModalFooter>
|
||||
<Button
|
||||
className="btn-secondary"
|
||||
onClick={() => setShown(false)}
|
||||
>
|
||||
{_("Cancel")}
|
||||
</Button>
|
||||
<Button onClick={onAction} {...actionProps}>
|
||||
{actionText || _("Confirm")}
|
||||
</Button>
|
||||
</ModalFooter>
|
||||
</Modal>
|
||||
);
|
||||
}
|
||||
|
||||
export default ActionButtonWithModal;
|
39
src/common/ActionButtonWithModal/ActionButtonWithModal.md
Normal file
39
src/common/ActionButtonWithModal/ActionButtonWithModal.md
Normal file
|
@ -0,0 +1,39 @@
|
|||
RebootButton component is a button that opens a modal dialog to confirm the
|
||||
reboot of the device.
|
||||
|
||||
## Usage
|
||||
|
||||
```jsx
|
||||
import React, { useEffect, createContext } from "react";
|
||||
|
||||
import Button from "../../bootstrap/Button";
|
||||
import { AlertContextProvider } from "../../context/alertContext/AlertContext";
|
||||
import ActionButtonWithModal from "./ActionButtonWithModal";
|
||||
|
||||
window.AlertContext = React.createContext();
|
||||
|
||||
const RebootButtonExample = () => {
|
||||
const ActionButton = (props) => {
|
||||
return <Button {...props}>Action</Button>;
|
||||
};
|
||||
|
||||
return (
|
||||
<AlertContextProvider>
|
||||
<div id="modal-container" />
|
||||
<div id="alert-container" />
|
||||
<ActionButtonWithModal
|
||||
actionTrigger={ActionButton}
|
||||
actionUrl="/reforis/api/action"
|
||||
modalTitle="Warning!"
|
||||
modalMessage="Are you sure you want to perform this action?"
|
||||
modalActionText="Confirm action"
|
||||
modalActionProps={{ className: "btn-danger" }}
|
||||
successMessage="Action request succeeded."
|
||||
errorMessage="Action request failed."
|
||||
/>
|
||||
</AlertContextProvider>
|
||||
);
|
||||
};
|
||||
|
||||
<RebootButtonExample />;
|
||||
```
|
|
@ -1,90 +0,0 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2024 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, useEffect } from "react";
|
||||
|
||||
import PropTypes from "prop-types";
|
||||
|
||||
import { useAPIPost } from "../api/hooks";
|
||||
import { API_STATE } from "../api/utils";
|
||||
import Button from "../bootstrap/Button";
|
||||
import { Modal, ModalHeader, ModalBody, ModalFooter } from "../bootstrap/Modal";
|
||||
import { useAlert } from "../context/alertContext/AlertContext";
|
||||
import { ForisURLs } from "../utils/forisUrls";
|
||||
|
||||
RebootButton.propTypes = {
|
||||
/** Additional props to be passed to the button */
|
||||
props: PropTypes.object,
|
||||
};
|
||||
|
||||
function RebootButton(props) {
|
||||
const [triggered, setTriggered] = useState(false);
|
||||
const [modalShown, setModalShown] = useState(false);
|
||||
const [triggerRebootStatus, triggerReboot] = useAPIPost(ForisURLs.reboot);
|
||||
|
||||
const [setAlert] = useAlert();
|
||||
useEffect(() => {
|
||||
if (triggerRebootStatus.state === API_STATE.ERROR) {
|
||||
setAlert(_("Reboot request failed."));
|
||||
}
|
||||
});
|
||||
|
||||
const rebootHandler = () => {
|
||||
setTriggered(true);
|
||||
triggerReboot();
|
||||
setModalShown(false);
|
||||
};
|
||||
|
||||
return (
|
||||
<>
|
||||
<RebootModal
|
||||
shown={modalShown}
|
||||
setShown={setModalShown}
|
||||
onReboot={rebootHandler}
|
||||
/>
|
||||
<Button
|
||||
className="btn-danger"
|
||||
loading={triggered}
|
||||
disabled={triggered}
|
||||
onClick={() => setModalShown(true)}
|
||||
{...props}
|
||||
>
|
||||
{_("Reboot")}
|
||||
</Button>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
RebootModal.propTypes = {
|
||||
shown: PropTypes.bool.isRequired,
|
||||
setShown: PropTypes.func.isRequired,
|
||||
onReboot: PropTypes.func.isRequired,
|
||||
};
|
||||
|
||||
function RebootModal({ shown, setShown, onReboot }) {
|
||||
return (
|
||||
<Modal shown={shown} setShown={setShown}>
|
||||
<ModalHeader setShown={setShown} title={_("Warning!")} />
|
||||
<ModalBody>
|
||||
<p>{_("Are you sure you want to restart the router?")}</p>
|
||||
</ModalBody>
|
||||
<ModalFooter>
|
||||
<Button
|
||||
className="btn-secondary"
|
||||
onClick={() => setShown(false)}
|
||||
>
|
||||
{_("Cancel")}
|
||||
</Button>
|
||||
<Button className="btn-danger" onClick={onReboot}>
|
||||
{_("Confirm reboot")}
|
||||
</Button>
|
||||
</ModalFooter>
|
||||
</Modal>
|
||||
);
|
||||
}
|
||||
|
||||
export default RebootButton;
|
|
@ -1,24 +0,0 @@
|
|||
RebootButton component is a button that opens a modal dialog to confirm the
|
||||
reboot of the device.
|
||||
|
||||
## Usage
|
||||
|
||||
```jsx
|
||||
import React, { useEffect, createContext } from "react";
|
||||
import RebootButton from "./RebootButton";
|
||||
import { AlertContextProvider } from "../context/alertContext/AlertContext";
|
||||
|
||||
window.AlertContext = React.createContext();
|
||||
|
||||
const RebootButtonExample = () => {
|
||||
return (
|
||||
<AlertContextProvider>
|
||||
<div id="modal-container" />
|
||||
<div id="alert-container" />
|
||||
<RebootButton />
|
||||
</AlertContextProvider>
|
||||
);
|
||||
};
|
||||
|
||||
<RebootButtonExample />;
|
||||
```
|
92
src/common/__tests__/ActionButtonWithModal.test.js
Normal file
92
src/common/__tests__/ActionButtonWithModal.test.js
Normal file
|
@ -0,0 +1,92 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2024 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 from "react";
|
||||
|
||||
import Button from "bootstrap/Button";
|
||||
|
||||
import {
|
||||
fireEvent,
|
||||
getByText,
|
||||
queryByText,
|
||||
render,
|
||||
wait,
|
||||
} from "customTestRender";
|
||||
import mockAxios from "jest-mock-axios";
|
||||
import { mockJSONError } from "testUtils/network";
|
||||
import { mockSetAlert } from "testUtils/alertContextMock";
|
||||
|
||||
import ActionButtonWithModal from "../ActionButtonWithModal/ActionButtonWithModal";
|
||||
|
||||
describe("<ActionButtonWithModal/>", () => {
|
||||
let componentContainer;
|
||||
const ActionButton = (props) => (
|
||||
<Button type="button" {...props}>
|
||||
Action
|
||||
</Button>
|
||||
);
|
||||
|
||||
beforeEach(() => {
|
||||
const { container } = render(
|
||||
<>
|
||||
<div id="modal-container" />
|
||||
<div id="alert-container" />
|
||||
<ActionButtonWithModal
|
||||
actionTrigger={ActionButton}
|
||||
actionUrl="/reforis/api/action"
|
||||
modalTitle="Warning!"
|
||||
modalMessage="Are you sure you want to perform this action?"
|
||||
modalActionText="Confirm action"
|
||||
modalActionProps={{ className: "btn-danger" }}
|
||||
successMessage="Action request succeeded."
|
||||
errorMessage="Action request failed."
|
||||
/>
|
||||
</>
|
||||
);
|
||||
componentContainer = container;
|
||||
});
|
||||
|
||||
it("Render button.", () => {
|
||||
expect(componentContainer).toMatchSnapshot();
|
||||
});
|
||||
|
||||
it("Render modal.", () => {
|
||||
fireEvent.click(getByText(componentContainer, "Action"));
|
||||
expect(componentContainer).toMatchSnapshot();
|
||||
});
|
||||
|
||||
it("Confirm action.", () => {
|
||||
fireEvent.click(getByText(componentContainer, "Action"));
|
||||
fireEvent.click(getByText(componentContainer, "Confirm action"));
|
||||
expect(mockAxios.post).toHaveBeenCalledWith(
|
||||
"/reforis/api/action",
|
||||
undefined,
|
||||
expect.anything()
|
||||
);
|
||||
});
|
||||
|
||||
it("Hold error.", async () => {
|
||||
fireEvent.click(getByText(componentContainer, "Action"));
|
||||
fireEvent.click(getByText(componentContainer, "Confirm action"));
|
||||
mockJSONError();
|
||||
await wait(() =>
|
||||
expect(mockSetAlert).toBeCalledWith("Action request failed.")
|
||||
);
|
||||
});
|
||||
|
||||
it("Show success alert on successful action.", async () => {
|
||||
fireEvent.click(getByText(componentContainer, "Action"));
|
||||
fireEvent.click(getByText(componentContainer, "Confirm action"));
|
||||
mockAxios.mockResponse({ status: 200 });
|
||||
await wait(() =>
|
||||
expect(mockSetAlert).toBeCalledWith(
|
||||
"Action request succeeded.",
|
||||
"success"
|
||||
)
|
||||
);
|
||||
});
|
||||
});
|
|
@ -1,63 +0,0 @@
|
|||
/*
|
||||
* 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.
|
||||
* See /LICENSE for more information.
|
||||
*/
|
||||
|
||||
import React from "react";
|
||||
|
||||
import {
|
||||
fireEvent,
|
||||
getByText,
|
||||
queryByText,
|
||||
render,
|
||||
wait,
|
||||
} from "customTestRender";
|
||||
import mockAxios from "jest-mock-axios";
|
||||
import { mockJSONError } from "testUtils/network";
|
||||
import { mockSetAlert } from "testUtils/alertContextMock";
|
||||
|
||||
import RebootButton from "../RebootButton";
|
||||
|
||||
describe("<RebootButton/>", () => {
|
||||
let componentContainer;
|
||||
beforeEach(() => {
|
||||
const { container } = render(
|
||||
<>
|
||||
<div id="modal-container" />
|
||||
<RebootButton />
|
||||
</>
|
||||
);
|
||||
componentContainer = container;
|
||||
});
|
||||
|
||||
it("Render.", () => {
|
||||
expect(componentContainer).toMatchSnapshot();
|
||||
});
|
||||
|
||||
it("Render modal.", () => {
|
||||
expect(queryByText(componentContainer, "Confirm reboot")).toBeNull();
|
||||
fireEvent.click(getByText(componentContainer, "Reboot"));
|
||||
expect(componentContainer).toMatchSnapshot();
|
||||
});
|
||||
|
||||
it("Confirm reboot.", () => {
|
||||
fireEvent.click(getByText(componentContainer, "Reboot"));
|
||||
fireEvent.click(getByText(componentContainer, "Confirm reboot"));
|
||||
expect(mockAxios.post).toHaveBeenCalledWith(
|
||||
"/reforis/api/reboot",
|
||||
undefined,
|
||||
expect.anything()
|
||||
);
|
||||
});
|
||||
|
||||
it("Hold error.", async () => {
|
||||
fireEvent.click(getByText(componentContainer, "Reboot"));
|
||||
fireEvent.click(getByText(componentContainer, "Confirm reboot"));
|
||||
mockJSONError();
|
||||
await wait(() =>
|
||||
expect(mockSetAlert).toBeCalledWith("Reboot request failed.")
|
||||
);
|
||||
});
|
||||
});
|
|
@ -1,6 +1,25 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`<RebootButton/> Render modal. 1`] = `
|
||||
exports[`<ActionButtonWithModal/> Render button. 1`] = `
|
||||
<div>
|
||||
<div
|
||||
id="modal-container"
|
||||
/>
|
||||
<div
|
||||
id="alert-container"
|
||||
/>
|
||||
<button
|
||||
class="btn btn-primary d-inline-flex justify-content-center align-items-center"
|
||||
type="button"
|
||||
>
|
||||
<span>
|
||||
Action
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
|
||||
exports[`<ActionButtonWithModal/> Render modal. 1`] = `
|
||||
<div>
|
||||
<div
|
||||
id="modal-container"
|
||||
|
@ -35,8 +54,10 @@ exports[`<RebootButton/> Render modal. 1`] = `
|
|||
<div
|
||||
class="modal-body"
|
||||
>
|
||||
<p>
|
||||
Are you sure you want to restart the router?
|
||||
<p
|
||||
class="mb-0"
|
||||
>
|
||||
Are you sure you want to perform this action?
|
||||
</p>
|
||||
</div>
|
||||
<div
|
||||
|
@ -55,7 +76,7 @@ exports[`<RebootButton/> Render modal. 1`] = `
|
|||
type="button"
|
||||
>
|
||||
<span>
|
||||
Confirm reboot
|
||||
Confirm action
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
|
@ -63,28 +84,15 @@ exports[`<RebootButton/> Render modal. 1`] = `
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<button
|
||||
class="btn btn-danger d-inline-flex justify-content-center align-items-center"
|
||||
type="button"
|
||||
>
|
||||
<span>
|
||||
Reboot
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
|
||||
exports[`<RebootButton/> Render. 1`] = `
|
||||
<div>
|
||||
<div
|
||||
id="modal-container"
|
||||
id="alert-container"
|
||||
/>
|
||||
<button
|
||||
class="btn btn-danger d-inline-flex justify-content-center align-items-center"
|
||||
class="btn btn-primary d-inline-flex justify-content-center align-items-center"
|
||||
type="button"
|
||||
>
|
||||
<span>
|
||||
Reboot
|
||||
Action
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
|
@ -40,7 +40,7 @@ export { Spinner, SpinnerElement } from "./bootstrap/Spinner";
|
|||
export { Modal, ModalBody, ModalFooter, ModalHeader } from "./bootstrap/Modal";
|
||||
|
||||
// Common
|
||||
export { default as RebootButton } from "./common/RebootButton";
|
||||
export { default as ActionButtonWithModal } from "./common/ActionButtonWithModal/ActionButtonWithModal";
|
||||
export { default as WiFiSettings } from "./common/WiFiSettings/WiFiSettings";
|
||||
export { default as ResetWiFiSettings } from "./common/WiFiSettings/ResetWiFiSettings";
|
||||
export { default as RichTable } from "./common/RichTable/RichTable";
|
||||
|
|
|
@ -48,8 +48,10 @@ module.exports = {
|
|||
usageMode: "expand",
|
||||
},
|
||||
{
|
||||
name: "Reboot Button",
|
||||
components: ["src/common/RebootButton.js"],
|
||||
name: "ActionButtonWithModal",
|
||||
components: [
|
||||
"src/common/ActionButtonWithModal/ActionButtonWithModal.js",
|
||||
],
|
||||
exampleMode: "expand",
|
||||
usageMode: "expand",
|
||||
},
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2024-09-25 10:15+0000\n"
|
||||
"Last-Translator: Lukas Jelinek <lukas.jelinek@nic.cz>\n"
|
||||
"Language: cs\n"
|
||||
|
@ -35,43 +35,89 @@ msgstr "Neobdržena žádná odezva."
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr "Došlo k neznámé chybě v aplikačním programovém rozhraní."
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr "Zavřít"
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr "Zkopírováno!"
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr "Kopírovat"
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
msgstr "Vyžadován restart."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
#, fuzzy
|
||||
msgid "Action successful."
|
||||
msgstr "Nastavení úspěšně uložena"
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "Restartovat"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr "Varování!"
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr "Opravdu chcete router restartovat?"
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Potvrdit restart"
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
msgid "An error occurred during resetting Wi-Fi settings."
|
||||
msgstr "Při resetu nastavení Wi-Fi došlo k chybě."
|
||||
|
@ -389,3 +435,15 @@ msgstr "Neobsahuje seznam e-mailů oddělených čárkou."
|
|||
#~ "se tím odstraní aktuální konfigurace a vrátí se výchozí hodnoty.\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr "Vyžadován restart."
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr "Restartovat"
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr "Varování!"
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr "Opravdu chcete router restartovat?"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: da\n"
|
||||
|
@ -34,41 +34,85 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
|
@ -425,3 +469,18 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Confirm reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2024-01-04 21:08+0000\n"
|
||||
"Last-Translator: Erik Pfannenstein <debianignatz@gmx.de>\n"
|
||||
"Language: de\n"
|
||||
|
@ -35,43 +35,89 @@ msgstr "Keine Antwort erhalten."
|
|||
msgid "An unknown API error occurred."
|
||||
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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr "Kopiert!"
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr "Kopieren"
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
msgstr "Neustart-Einleitung fehlgeschlagen."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
#, fuzzy
|
||||
msgid "Action successful."
|
||||
msgstr "Einstellungen erfolgreich gespeichert"
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "Systemneustart"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: 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:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Neustart bestätigen"
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
msgid "An error occurred during resetting Wi-Fi settings."
|
||||
msgstr ""
|
||||
|
@ -388,3 +434,15 @@ msgstr "Enthält keine Liste von E-Mails, die durch Kommas getrennt sind."
|
|||
#~ " "
|
||||
#~ 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?"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2021-02-09 16:50+0000\n"
|
||||
"Last-Translator: Michalis <michalisntovas@yahoo.gr>\n"
|
||||
"Language: el\n"
|
||||
|
@ -35,43 +35,88 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "Επανεκκίνηση"
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr "Είστε βέβαιοι ότι θέλετε να κάνετε επανεκκίνηση του δρομολογητή;"
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr "Άκυρο"
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Επιβεβαίωση επανεκκίνησης"
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
msgid "An error occurred during resetting Wi-Fi settings."
|
||||
msgstr ""
|
||||
|
@ -427,3 +472,15 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr "Επανεκκίνηση"
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr "Είστε βέβαιοι ότι θέλετε να κάνετε επανεκκίνηση του δρομολογητή;"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2019-10-17 09:28+0000\n"
|
||||
"Last-Translator: Scott Anecito <scott.anecito@protonmail.com>\n"
|
||||
"Language: en\n"
|
||||
|
@ -35,41 +35,85 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
|
@ -423,3 +467,18 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Confirm reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2024-08-24 13:09+0000\n"
|
||||
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
||||
"Language: es\n"
|
||||
|
@ -37,43 +37,89 @@ msgstr ""
|
|||
"Un error desconocido ha ocurrido. Compruebe la consola para mas "
|
||||
"informaciòn."
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr "¡Copiado!"
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr "Copiar"
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
msgstr "La petición de reinicio ha fallado."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
#, fuzzy
|
||||
msgid "Action successful."
|
||||
msgstr "Los ajustes se han guardado correctamente"
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "Reiniciar"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr "¡Atención!"
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr "¿Estás seguro de que quieres reiniciar el router?"
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar reinicio"
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
msgid "An error occurred during resetting Wi-Fi settings."
|
||||
msgstr "Ocurrió un error durante el reseteo de los ajustes Wi-Fi."
|
||||
|
@ -447,3 +493,15 @@ msgstr "No contiene una lista de correos electrónicos separados por comas."
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr "La petición de reinicio ha fallado."
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr "Reiniciar"
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr "¡Atención!"
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr "¿Estás seguro de que quieres reiniciar el router?"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: fi\n"
|
||||
|
@ -34,41 +34,85 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
|
@ -425,3 +469,18 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Confirm reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: fo\n"
|
||||
|
@ -34,41 +34,85 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
|
@ -425,3 +469,18 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Confirm reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Foris JS 6.2.0\n"
|
||||
"Project-Id-Version: Foris JS 6.5.0\n"
|
||||
"Report-Msgid-Bugs-To: tech.support@turris.cz\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -33,41 +33,85 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2024-07-27 01:09+0000\n"
|
||||
"Last-Translator: Moha684 <nahil82466@gmail.com>\n"
|
||||
"Language: fr\n"
|
||||
|
@ -35,43 +35,89 @@ msgstr "Aucun réponse reçue."
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr "Une erreur d’API inconnue s’est produite."
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr "Copié!"
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr "Copier"
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
msgstr "La demande de redémarrage a échoué."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
#, fuzzy
|
||||
msgid "Action successful."
|
||||
msgstr "Paramètres enregistrés avec succès"
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "Redémarrer"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr "Attention !"
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr "Voulez-vous vraiment redémarrer le routeur ?"
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmer le redémarrage"
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
msgid "An error occurred during resetting Wi-Fi settings."
|
||||
msgstr ""
|
||||
|
@ -416,3 +462,15 @@ msgstr ""
|
|||
#~ " "
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr "La demande de redémarrage a échoué."
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr "Redémarrer"
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr "Attention !"
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr "Voulez-vous vraiment redémarrer le routeur ?"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2022-09-29 14:17+0000\n"
|
||||
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
|
||||
"Language: hr\n"
|
||||
|
@ -36,41 +36,85 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
|
@ -427,3 +471,18 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Confirm reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2021-01-07 01:26+0000\n"
|
||||
"Last-Translator: Zoli <boritek@gmail.com>\n"
|
||||
"Language: hu\n"
|
||||
|
@ -35,41 +35,86 @@ msgstr "Nem érkezett válasz."
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr "Ismeretlen API-hiba történt."
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
#, fuzzy
|
||||
msgid "Action successful."
|
||||
msgstr "Beállítások sikeresen elmentve"
|
||||
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
|
@ -420,3 +465,18 @@ msgstr "Nem tartalmaz vesszővel elválasztott e-mail listát."
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Confirm reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2022-12-31 23:48+0000\n"
|
||||
"Last-Translator: Anselmo <anselmo@casinadicornia.com>\n"
|
||||
"Language: it\n"
|
||||
|
@ -35,41 +35,85 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
|
@ -426,3 +470,18 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Confirm reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2019-10-16 10:08+0000\n"
|
||||
"Last-Translator: Scott Anecito <scott.anecito@protonmail.com>\n"
|
||||
"Language: ja\n"
|
||||
|
@ -35,41 +35,85 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "再起動"
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
|
@ -427,3 +471,18 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr "再起動"
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Confirm reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: ko\n"
|
||||
|
@ -34,41 +34,85 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
|
@ -425,3 +469,18 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Confirm reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: lt\n"
|
||||
|
@ -35,41 +35,85 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
|
@ -426,3 +470,18 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Confirm reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2023-03-02 11:40+0000\n"
|
||||
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
|
||||
"Language: nb_NO\n"
|
||||
|
@ -36,44 +36,89 @@ msgstr "Fikk ikke svar."
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr "Ukjent API-feil."
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr "Kopiert"
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr "Kopier"
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
#, fuzzy
|
||||
msgid "Reboot request failed."
|
||||
msgstr "Omstart kreves"
|
||||
msgid "Action successful."
|
||||
msgstr "Innstillinger lagret"
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "Start på ny"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr "Advarsel!"
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr "Er du sikker på at du vil utføre omstart av ruteren?"
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Bekreft omstart"
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
#, fuzzy
|
||||
msgid "An error occurred during resetting Wi-Fi settings."
|
||||
|
@ -404,3 +449,15 @@ msgstr "Inneholder ikke en kommainndelt liste med e-postadresser."
|
|||
#~ "gjeldende Wi-Fi-oppsett og tilbakestiller forvalgte verdier.\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr "Omstart kreves"
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr "Start på ny"
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr "Advarsel!"
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr "Er du sikker på at du vil utføre omstart av ruteren?"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2024-01-04 21:08+0000\n"
|
||||
"Last-Translator: powerburner-nl <peter.mulder.1981@gmail.com>\n"
|
||||
"Language: nl\n"
|
||||
|
@ -35,44 +35,88 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
#, fuzzy
|
||||
msgid "Reboot request failed."
|
||||
msgstr "Opnieuw opstarten is vereist"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "Opnieuw opstarten"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr "Waarschuwing!"
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr "Weet u zeker dat u de router opnieuw wilt opstarten?"
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Opnieuw opstarten bevestigen"
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
msgid "An error occurred during resetting Wi-Fi settings."
|
||||
msgstr ""
|
||||
|
@ -429,3 +473,15 @@ msgstr "Bevat geen lijst met e-mails gescheiden door komma's."
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr "Opnieuw opstarten is vereist"
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr "Opnieuw opstarten"
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr "Waarschuwing!"
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr "Weet u zeker dat u de router opnieuw wilt opstarten?"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2023-03-07 16:37+0000\n"
|
||||
"Last-Translator: Arusekk <arek_koz@o2.pl>\n"
|
||||
"Language: pl\n"
|
||||
|
@ -36,43 +36,89 @@ msgstr "Brak odpowiedzi."
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr "Wystąpił nieznany błąd API."
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
#, fuzzy
|
||||
msgid "Action successful."
|
||||
msgstr "Ustawienia zostały zapisane"
|
||||
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "Restart"
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr "Ostrzeżenie!"
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr "Czy na pewno zrestartować router?"
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Potwierdź restart"
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
msgid "An error occurred during resetting Wi-Fi settings."
|
||||
msgstr ""
|
||||
|
@ -427,3 +473,15 @@ msgstr "Nie zawiera listy e-maili oddzielonych przecinkami."
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr "Restart"
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr "Ostrzeżenie!"
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr "Czy na pewno zrestartować router?"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2021-12-21 12:52+0000\n"
|
||||
"Last-Translator: c10l <weblate.org@a.c10l.cc>\n"
|
||||
"Language: pt_BR\n"
|
||||
|
@ -35,43 +35,88 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "Reinício"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Confirma reinício"
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
msgid "An error occurred during resetting Wi-Fi settings."
|
||||
msgstr ""
|
||||
|
@ -404,3 +449,15 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr "Reinício"
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr "Atenção!"
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr "Você tem certeza de que quer reiniciar o roteador?"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2019-02-19 13:35+0100\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: ro\n"
|
||||
|
@ -35,41 +35,85 @@ msgstr ""
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
|
@ -426,3 +470,18 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Confirm reboot"
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2022-12-07 12:47+0000\n"
|
||||
"Last-Translator: Алексей Леньшин <alenshin@gmail.com>\n"
|
||||
"Language: ru\n"
|
||||
|
@ -36,43 +36,89 @@ msgstr "Ответ не получен."
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr "Неизвестная ошибка программного интерфейса приложения."
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr "Скопировано!"
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr "Копировать"
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
msgstr "Запрос на перезагрузку не выполнен."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
#, fuzzy
|
||||
msgid "Action successful."
|
||||
msgstr "Настройки были успешно сохранены"
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "Перезагрузка"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr "Предупреждение!"
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr "Вы уверены, что хотите перезагрузить маршрутизатор?"
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr "Отмена"
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Подтвердите перезагрузку"
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
msgid "An error occurred during resetting Wi-Fi settings."
|
||||
msgstr "При сбросе настроек Wi-Fi произошла ошибка."
|
||||
|
@ -395,3 +441,15 @@ msgstr "Не содержит списка электронных адресов
|
|||
#~ "значений по умолчанию.\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr "Запрос на перезагрузку не выполнен."
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr "Перезагрузка"
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr "Предупреждение!"
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr "Вы уверены, что хотите перезагрузить маршрутизатор?"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2024-09-09 18:09+0000\n"
|
||||
"Last-Translator: Atec <dr.atec@gmail.com>\n"
|
||||
"Language: sk\n"
|
||||
|
@ -35,43 +35,89 @@ msgstr "Nenastala žiadna odozva."
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr "Nastala neznáma chyba v API."
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr "Zatvoriť"
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr "Skopírované!"
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr "Kopírovať"
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
msgstr "Požiadavka na reštart neúspešná."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
#, fuzzy
|
||||
msgid "Action successful."
|
||||
msgstr "Nastavenia boli úspešne uložené"
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "Reštartovať"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr "Výstraha!"
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr "Naozaj sa má router reštartovať?"
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušiť"
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Potvrdiť reštart"
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
msgid "An error occurred during resetting Wi-Fi settings."
|
||||
msgstr "Pri resete nastavení Wi-Fi nastala chyba."
|
||||
|
@ -390,3 +436,15 @@ msgstr "Neobsahuje zoznam e-mailov oddelených čiarkami."
|
|||
#~ " a obnovia sa východiskové hodnoty.\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr "Požiadavka na reštart neúspešná."
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr "Reštartovať"
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr "Výstraha!"
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr "Naozaj sa má router reštartovať?"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-09-25 16:10+0200\n"
|
||||
"POT-Creation-Date: 2024-11-13 14:06+0100\n"
|
||||
"PO-Revision-Date: 2023-09-22 21:00+0000\n"
|
||||
"Last-Translator: Kristoffer Grundström "
|
||||
"<swedishsailfishosuser@tutanota.com>\n"
|
||||
|
@ -36,43 +36,88 @@ msgstr "Inget svar togs emot."
|
|||
msgid "An unknown API error occurred."
|
||||
msgstr "Ett okänt API-fel inträffade."
|
||||
|
||||
#: 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
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copied!"
|
||||
msgstr "Kopierades!"
|
||||
|
||||
#: src/bootstrap/CopyInput.js:57
|
||||
#: src/bootstrap/CopyInput.js:56
|
||||
msgid "Copy"
|
||||
msgstr "Kopiera"
|
||||
|
||||
#: src/common/RebootButton.js:27
|
||||
msgid "Reboot request failed."
|
||||
msgstr "Förfrågning för omstart misslyckades."
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:60
|
||||
msgid "Action successful."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:51
|
||||
msgid "Reboot"
|
||||
msgstr "Starta om"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:65
|
||||
msgid "Action failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RebootButton.js:66
|
||||
msgid "Warning!"
|
||||
msgstr "Varning!"
|
||||
|
||||
#: src/common/RebootButton.js:68
|
||||
msgid "Are you sure you want to restart the router?"
|
||||
msgstr "Är du säker på att du vill starta om routern?"
|
||||
|
||||
#: src/common/RebootButton.js:71
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:125
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: src/common/RebootButton.js:73
|
||||
msgid "Confirm reboot"
|
||||
#: src/common/ActionButtonWithModal/ActionButtonWithModal.js:128
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Bekräfta omstart"
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:29
|
||||
msgid "Sort ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:30
|
||||
msgid "Sort descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTableHeader.js:31
|
||||
msgid "Clear sort"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:65
|
||||
msgid "Pagination navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:71
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:77
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:83
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:89
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:95
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:98
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:106
|
||||
msgid "Rows per page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:109
|
||||
msgid "Select rows per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/RichTable/RichTablePagination.js:121
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
|
||||
msgid "An error occurred during resetting Wi-Fi settings."
|
||||
msgstr "Ett fel inträffade under återställningen av Wi-Fi-inställningarna."
|
||||
|
@ -441,3 +486,15 @@ msgstr ""
|
|||
#~ "channel."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Reboot request failed."
|
||||
#~ msgstr "Förfrågning för omstart misslyckades."
|
||||
|
||||
#~ msgid "Reboot"
|
||||
#~ msgstr "Starta om"
|
||||
|
||||
#~ msgid "Warning!"
|
||||
#~ msgstr "Varning!"
|
||||
|
||||
#~ msgid "Are you sure you want to restart the router?"
|
||||
#~ msgstr "Är du säker på att du vill starta om routern?"
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user