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

Compare commits

..

9 Commits

Author SHA1 Message Date
605f682356 Merge branch 'dev' into 'master'
Release 3.2.0

See merge request turris/reforis/foris-js!81
2020-01-17 15:14:23 +01:00
03e071d5ee Merge branch 'dev' into 'master'
Release 3.1.1

See merge request turris/reforis/foris-js!75
2020-01-10 10:44:40 +01:00
b8555247f2 Merge branch 'dev' into 'master'
Release 3.1.0

See merge request turris/reforis/foris-js!72
2020-01-09 11:57:45 +01:00
1e6278abdf Merge branch 'dev' into 'master'
Release 3.0.0

See merge request turris/reforis/foris-js!68
2020-01-07 16:10:16 +01:00
bb90800945 Merge branch 'dev' into 'master'
Release 2.1.1

See merge request turris/reforis/foris-js!65
2020-01-06 09:56:29 +01:00
51ba380cf0 Merge branch 'dev' into 'master'
Release 2.1.0

See merge request turris/reforis/foris-js!62
2019-12-19 12:10:18 +01:00
a8d8c872f9 Merge branch 'dev' into 'master'
Publish 2.0.0.

See merge request turris/reforis/foris-js!57
2019-12-09 10:51:49 +01:00
25ddb5949c Merge branch 'dev' into 'master'
Dev

See merge request turris/reforis/foris-js!52
2019-12-02 17:11:03 +01:00
8d1d5b57fd Merge branch 'dev' 2019-11-25 13:07:20 +01:00
41 changed files with 312 additions and 431 deletions

View File

@ -1,3 +0,0 @@
[weblate]
url = https://hosted.weblate.org/api/
translation = turris/foris-js

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "foris",
"version": "4.2.0",
"version": "3.2.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "foris",
"version": "4.2.0",
"version": "3.2.0",
"description": "Set of components and utils for Foris and its plugins.",
"author": "CZ.NIC, z.s.p.o.",
"repository": {

View File

@ -53,11 +53,10 @@ function createAPIHook(method) {
payload: result.data,
});
} catch (error) {
const errorPayload = getErrorPayload(error);
dispatch({
type: API_ACTIONS.FAILURE,
status: error.response && error.response.status,
payload: errorPayload,
payload: getErrorPayload(error),
});
}
}, [urlRoot, contentType]);
@ -81,12 +80,6 @@ function APIReducer(state, action) {
if (action.status === 403) {
window.location.assign(ForisURLs.login);
}
// Not an API error - should be rethrown.
if (action.payload && action.payload.stack && action.payload.message) {
throw (action.payload);
}
return {
state: API_STATE.ERROR,
data: action.payload,

View File

@ -65,8 +65,9 @@ export function getErrorPayload(error) {
if (error.request) {
return _("No response received.");
}
// Return original error because it's not directly related to API request/response.
return error;
/* eslint no-console: "off" */
console.error(error);
return _("An unknown error occurred. Check the console for more info.");
}
export function getJSONErrorMessage(error) {

View File

@ -1,15 +0,0 @@
@keyframes modalFade {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.modal.show {
display: block;
animation-name: modalFade;
animation-duration: .3s;
background: rgba(0, 0, 0, 0.2);
}

View File

@ -10,7 +10,6 @@ import PropTypes from "prop-types";
import { Portal } from "../utils/Portal";
import { useClickOutside } from "../utils/hooks";
import "./Modal.css";
Modal.propTypes = {
/** Is modal shown value */

View File

@ -1,33 +0,0 @@
.spinner-wrapper .spinner-border {
width: 4rem;
height: 4rem;
color: #00a2e2;
}
.spinner-fs-background {
background-color: rgba(2, 2, 2, .5);
color: rgb(230, 230, 230);
position: fixed;
width: 100%;
height: 100%;
top: 0;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
/*
* Set to high value to me sure that it always overlaps all components
* https://getbootstrap.com/docs/4.3/layout/overview/#z-index
*/
z-index: 1100;
}
.spinner-fs-wrapper .spinner-border {
width: 6rem;
height: 6rem;
}
.spinner-fs-wrapper .spinner-text {
margin: 1rem;
}

View File

@ -8,8 +8,6 @@
import React from "react";
import PropTypes from "prop-types";
import "./Spinner.css";
Spinner.propTypes = {
/** Children components put into `div` with "spinner-text" class. */
children: PropTypes.oneOfType([

View File

@ -27,6 +27,7 @@ export default function ResetWiFiSettings({ ws, endpoint }) {
const module = "wifi";
ws.subscribe(module)
.bind(module, "reset", () => {
setIsLoading(true);
// eslint-disable-next-line no-restricted-globals
setTimeout(() => location.reload(), 1000);
});
@ -44,7 +45,6 @@ export default function ResetWiFiSettings({ ws, endpoint }) {
function onReset() {
dismissAlert();
setIsLoading(true);
postReset();
}

View File

@ -39,10 +39,9 @@ describe("<WiFiSettings/>", () => {
it("should handle error", async () => {
const webSockets = new WebSockets();
const { getByText } = render(<WiFiSettings ws={webSockets} ws={webSockets} endpoint={endpoint} resetEndpoint="foo" />);
const errorMessage = "An API error occurred.";
mockJSONError(errorMessage);
mockJSONError();
await wait(() => {
expect(getByText(errorMessage)).toBeTruthy();
expect(getByText("An error occurred while fetching data.")).toBeTruthy();
});
});

View File

@ -11,6 +11,7 @@ import { Prompt } from "react-router-dom";
import { ALERT_TYPES } from "../../bootstrap/Alert";
import { API_STATE } from "../../api/utils";
import { ErrorMessage } from "../../utils/ErrorMessage";
import { formFieldsSize } from "../../bootstrap/constants";
import { Spinner } from "../../bootstrap/Spinner";
import { useAlert } from "../../alertContext/AlertContext";
@ -18,7 +19,6 @@ import { useAPIPost } from "../../api/hooks";
import { useForisModule, useForm } from "../hooks";
import { STATES as SUBMIT_BUTTON_STATES, SubmitButton } from "./SubmitButton";
import { ErrorMessage } from "../../utils/ErrorMessage";
ForisForm.propTypes = {
/** Optional WebSocket object. See `scr/common/WebSockets.js`.
@ -27,7 +27,7 @@ ForisForm.propTypes = {
ws: PropTypes.object,
/** Foris configuration object. See usage in main components. */
forisConfig: PropTypes.shape({
/** reForis Flask application API endpoint from `src/common/API.js`. */
/** reForis Flask aplication API endpoint from `src/common/API.js`. */
endpoint: PropTypes.string.isRequired,
/** `foris-controller` module name to be used via WebSockets.
* It can be use only with `ws` prop.
@ -38,24 +38,20 @@ ForisForm.propTypes = {
* */
wsAction: PropTypes.string,
}).isRequired,
/** Function to prepare data received from the API before using in forms. */
prepData: PropTypes.func,
/** Function to prepare data recived from the API before using in forms. */
prepData: PropTypes.func.isRequired,
/** Function to prepare data from form before submitting. */
prepDataToSubmit: PropTypes.func,
prepDataToSubmit: PropTypes.func.isRequired,
/** Function to handle response to POST request. */
postCallback: PropTypes.func,
postCallback: PropTypes.func.isRequired,
/** Validate data and provide validation object. Then validation errors passed to children. */
validator: PropTypes.func,
validator: PropTypes.func.isRequired,
/** Disables form */
disabled: PropTypes.bool,
/** Optional override of form submit callback */
onSubmitOverridden: PropTypes.func,
/** Reference to actual form element (useful for programmatically submitting it).
* Pass the output of useRef hook to this prop.
*/
formReference: PropTypes.object,
/** reForis form components. */
children: PropTypes.node.isRequired,
/** Optional override of form submit callback */
onSubmitOverridden: PropTypes.func,
// eslint-disable-next-line react/no-unused-prop-types
customWSProp(props) {
@ -92,11 +88,10 @@ export function ForisForm({
validator,
disabled,
onSubmitOverridden,
formReference,
children,
}) {
const [formState, onFormChangeHandler, resetFormData] = useForm(validator, prepData);
const [setAlert, dismissAlert] = useAlert();
const [setAlert] = useAlert();
const [forisModuleState] = useForisModule(ws, forisConfig);
useEffect(() => {
@ -116,7 +111,7 @@ export function ForisForm({
}, [postCallback, postState.state, postState.data, setAlert]);
if (forisModuleState.state === API_STATE.ERROR) {
return <ErrorMessage message={forisModuleState.data} />;
return <ErrorMessage />;
}
if (!formState.data) {
return <Spinner />;
@ -125,7 +120,6 @@ export function ForisForm({
function onSubmitHandler(event) {
event.preventDefault();
resetFormData();
dismissAlert();
const copiedFormData = JSON.parse(JSON.stringify(formState.data));
const preparedData = prepDataToSubmit(copiedFormData);
post({ data: preparedData });
@ -168,7 +162,7 @@ export function ForisForm({
return (
<div className={formFieldsSize}>
<Prompt message={getMessageOnLeavingPage} />
<form onSubmit={onSubmit} ref={formReference}>
<form onSubmit={onSubmit}>
{childrenWithFormProps}
<div className="text-right">
<SubmitButton

View File

@ -64,7 +64,6 @@ export {
} from "./utils/conditionalHOCs";
export { ErrorMessage } from "./utils/ErrorMessage";
export { useClickOutside } from "./utils/hooks";
export { toLocaleDateString } from "./utils/datetime";
// Foris URL
export { ForisURLs, REFORIS_URL_PREFIX } from "./forisUrls";

View File

@ -17,7 +17,7 @@ global.afterEach(() => {
global._ = (str) => str;
global.ngettext = (str) => str;
global.babel = { format: (str) => str };
global.ForisTranslations = { locale: "en" };
global.ForisTranslations = {};
// Mock web sockets
window.WebSocket = jest.fn();

View File

@ -6,18 +6,11 @@
*/
import React from "react";
import PropTypes from "prop-types";
ErrorMessage.propTypes = {
message: PropTypes.string,
};
ErrorMessage.defaultProps = {
message: _("An error occurred while fetching data."),
};
export function ErrorMessage({ message }) {
export function ErrorMessage() {
return (
<p className="text-center text-danger">{message}</p>
<p className="text-center text-danger">
{_("An error occurred while fetching data.")}
</p>
);
}

View File

@ -1,51 +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 { toLocaleDateString } from "../datetime";
describe("toLocaleDateString", () => {
it("should work with different locale", () => {
global.ForisTranslations = { locale: "fr" };
expect(
toLocaleDateString("2020-02-20T12:51:36+00:00")
).toBe("20 février 2020 12:51");
global.ForisTranslations = { locale: "en" };
})
it("should convert with default format", () => {
expect(
toLocaleDateString("2020-02-20T12:51:36+00:00")
).toBe("February 20, 2020 12:51 PM");
});
it("should convert with custom input format", () => {
expect(
toLocaleDateString(
"2020-02-20 12:51:36 +0000",
{ inputFormat: "YYYY-MM-DD HH:mm:ss Z" },
)
).toBe("February 20, 2020 12:51 PM");
});
it("should convert with custom output format", () => {
expect(
toLocaleDateString(
"2020-02-20T12:51:36+00:00",
{ outputFormat: "LL" },
)
).toBe("February 20, 2020");
});
it("should convert with custom input and output format", () => {
expect(
toLocaleDateString(
"2020-02-20 12:51:36 +0000",
{ inputFormat: "YYYY-MM-DD HH:mm:ss Z", outputFormat: "LL" },
)
).toBe("February 20, 2020");
});
});

View File

@ -1,8 +0,0 @@
import moment from "moment";
export function toLocaleDateString(date, { inputFormat, outputFormat = "LLL" } = {}) {
const parsedDate = inputFormat ? moment(date, inputFormat) : moment(date);
return parsedDate
.locale(ForisTranslations.locale)
.format(outputFormat);
}

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-09-29 15:56+0000\n"
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n"
"Language: cs\n"
@ -59,7 +59,11 @@ msgstr "Došlo k chybě kvůli překročení časového limitu."
msgid "No response received."
msgstr "Neobdržena žádná odezva."
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr "Došlo k neznámé chybě. Další informace naleznete v konzoli."
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr "Došlo k neznámé chybě v aplikačním programovém rozhraní."
@ -87,11 +91,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -247,11 +251,11 @@ msgstr ""
"hosty“.\n"
" "
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr "Nastavení úspěšně uložena"
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
"Změny, které byly provedeny, nebyly uloženy. Jste si jistý, že chcete "
@ -269,10 +273,7 @@ msgstr "Načítám nastavení"
msgid "Save"
msgstr "Uložit"
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr "Došlo k chybě při získávání dat."
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "Došlo k neznámé chybě. Další informace naleznete v konzoli."

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: da\n"
@ -58,7 +58,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -86,11 +90,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -219,11 +223,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -239,10 +243,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-09-02 07:21+0000\n"
"Last-Translator: Ulrich Günther <mail@ulrich-guenther.at>\n"
"Language: de\n"
@ -57,11 +57,15 @@ msgstr ""
#: src/api/utils.js:66
msgid "No response received."
msgstr "Keine Antwort erhalten."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr "Ein unbekannter API-Fehler ist aufgetreten."
msgstr ""
#: src/common/RebootButton.js:33
#, fuzzy
@ -88,11 +92,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -249,11 +253,11 @@ msgstr ""
"Gastnetzwerk eingestellt werden.\n"
" "
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr "Einstellungen erfolgreich gespeichert"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -269,10 +273,7 @@ msgstr "Einstellungen laden"
msgid "Save"
msgstr "Speichern"
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: el\n"
@ -58,7 +58,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -86,11 +90,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -219,11 +223,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -239,10 +243,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-10-17 09:28+0000\n"
"Last-Translator: Scott Anecito <scott.anecito@protonmail.com>\n"
"Language: en\n"
@ -59,7 +59,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -87,11 +91,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -244,11 +248,11 @@ msgstr ""
"tab.\n"
" "
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -264,10 +268,7 @@ msgstr "Load settings"
msgid "Save"
msgstr "Save"
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-10-29 06:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
"Language: es\n"
@ -59,7 +59,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -88,11 +92,11 @@ msgstr "Cancelar"
msgid "Confirm reboot"
msgstr "Confirmar reinicio"
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -221,11 +225,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -243,10 +247,7 @@ msgstr "Configuración de LAN"
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: fi\n"
@ -58,7 +58,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -86,11 +90,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -219,11 +223,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -239,10 +243,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: fo\n"
@ -58,7 +58,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -86,11 +90,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -219,11 +223,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -239,10 +243,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+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"
@ -57,7 +57,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -85,11 +89,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -218,11 +222,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -238,7 +242,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-10-14 11:04+0000\n"
"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n"
"Language: fr\n"
@ -51,19 +51,23 @@ msgstr ""
#: src/api/utils.js:58
msgid "The session is expired. Please log in again."
msgstr "Cette session a expiré. Veuillez vous reconnecter."
msgstr ""
#: src/api/utils.js:63
msgid "Timeout error occurred."
msgstr "Le délai a expiré."
msgstr ""
#: src/api/utils.js:66
msgid "No response received."
msgstr "Aucun réponse reçue."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr "Une erreur dAPI inconnue sest produite."
msgstr ""
#: src/common/RebootButton.js:33
#, fuzzy
@ -90,11 +94,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -223,15 +227,13 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr "Paramètres enregistrés avec succès"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
"Il se peut que vos modifications ne soient pas enregistrées. Êtes-vous "
"sûr de vouloir quitter?"
#: src/form/components/SubmitButton.js:32
msgid "Updating"
@ -245,13 +247,7 @@ msgstr "Charger les paramètres"
msgid "Save"
msgstr "Enregistrer"
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr "Une erreur sest produite lors du chargement des données."
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""
#~ "Une erreur inconnue sest produite. "
#~ "Vérifiez la console pour plus "
#~ "dinformations."
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: hr\n"
@ -59,7 +59,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -87,11 +91,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -220,11 +224,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -240,10 +244,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: hu\n"
@ -58,7 +58,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -86,11 +90,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -219,11 +223,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -239,10 +243,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: it\n"
@ -58,7 +58,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -86,11 +90,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -219,11 +223,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -239,10 +243,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-10-16 10:08+0000\n"
"Last-Translator: Scott Anecito <scott.anecito@protonmail.com>\n"
"Language: ja\n"
@ -59,7 +59,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -87,11 +91,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -220,11 +224,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -240,10 +244,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ko\n"
@ -58,7 +58,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -86,11 +90,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -219,11 +223,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -239,10 +243,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-02-19 13:34+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: lt\n"
@ -59,7 +59,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -87,11 +91,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -220,11 +224,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -240,10 +244,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-11-10 16:04+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language: nb\n"
@ -28,7 +28,6 @@ msgid "This is not a valid IPv6 address."
msgstr "Dette er ikke en gyldig IPv6-adresse."
#: src/validations.js:15
#, fuzzy
msgid "This is not a valid IPv6 prefix."
msgstr "Dette er ikke et gyldig IPv6-prefiks."
@ -50,20 +49,23 @@ msgstr "Inneholder ikke en kommainndelt liste med e-postadresser."
#: src/api/utils.js:58
msgid "The session is expired. Please log in again."
msgstr "Økten har utløpt. Logg inn igjen."
msgstr ""
#: src/api/utils.js:63
msgid "Timeout error occurred."
msgstr "Tidsavbrudd inntraff."
msgstr ""
#: src/api/utils.js:66
msgid "No response received."
msgstr "Fikk ikke svar."
msgstr ""
#: src/api/utils.js:76
#, fuzzy
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr "Ukjent API-feil."
msgstr ""
#: src/common/RebootButton.js:33
#, fuzzy
@ -90,11 +92,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -248,16 +250,15 @@ msgstr ""
"\n"
" "
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr "Innstillinger lagret"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr "Endringer du har gjort vil ikke bli lagret. Er du sikker?"
msgstr ""
#: src/form/components/SubmitButton.js:32
#, fuzzy
msgid "Updating"
msgstr "Oppdaterer"
@ -269,10 +270,7 @@ msgstr "Last inn innstillinger"
msgid "Save"
msgstr "Lagre"
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr "Kunne ikke hente data."
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr "Ukjent feil. Sjekk konsollen for mer info."
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-08-28 17:55+0200\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: nb_NO\n"
@ -58,7 +58,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -86,11 +90,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -219,11 +223,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -239,10 +243,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-10-15 13:02+0000\n"
"Last-Translator: powerburner-nl <peter.mulder.1981@gmail.com>\n"
"Language: nl\n"
@ -59,7 +59,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -88,11 +92,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -221,11 +225,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -241,10 +245,7 @@ msgstr "Instellingen laden"
msgid "Save"
msgstr "Opslaan"
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-08-28 17:56+0200\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: pl\n"
@ -60,7 +60,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -88,11 +92,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -221,11 +225,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -241,10 +245,7 @@ msgstr ""
msgid "Save"
msgstr "Zapisz"
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-02-19 13:35+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ro\n"
@ -59,7 +59,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -87,11 +91,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -220,11 +224,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -240,10 +244,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-09-30 13:00+0000\n"
"Last-Translator: Алексей Леньшин <alenshin@gmail.com>\n"
"Language: ru\n"
@ -50,19 +50,23 @@ msgstr "Не содержит списка электронных адресов
#: src/api/utils.js:58
msgid "The session is expired. Please log in again."
msgstr "Ваша сессия закончилась. Пожалуйста, залогинитесь заново."
msgstr ""
#: src/api/utils.js:63
msgid "Timeout error occurred."
msgstr "Произошла ошибка ожидания ответа сервера."
msgstr ""
#: src/api/utils.js:66
msgid "No response received."
msgstr "Ответ не получен."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr "Неизвестная ошибка программного интерфейса приложения."
msgstr ""
#: src/common/RebootButton.js:33
#, fuzzy
@ -89,11 +93,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -246,15 +250,13 @@ msgstr ""
"Гостевая сеть.\n"
" "
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr "Настройки были успешно сохранены"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
"В случае выхода ваши изменения будут утеряны. Вы действительно хотите "
"покинуть эту страницу?"
#: src/form/components/SubmitButton.js:32
msgid "Updating"
@ -268,12 +270,7 @@ msgstr "Загрузить настройки"
msgid "Save"
msgstr "Сохранить"
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr "Во время получения данных произошла ошибка."
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""
#~ "Произошла неизвестная ошибка. Проверьте "
#~ "консоль браузера, чтобы узнать детали."
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-08-28 17:56+0200\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: sk\n"
@ -58,7 +58,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -86,11 +90,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -219,11 +223,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -239,10 +243,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-20 17:28+0100\n"
"POT-Creation-Date: 2020-01-13 13:09+0100\n"
"PO-Revision-Date: 2019-08-28 17:56+0200\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: sv\n"
@ -58,7 +58,11 @@ msgstr ""
msgid "No response received."
msgstr ""
#: src/api/utils.js:76
#: src/api/utils.js:70
msgid "An unknown error occurred. Check the console for more info."
msgstr ""
#: src/api/utils.js:77
msgid "An unknown API error occurred."
msgstr ""
@ -86,11 +90,11 @@ msgstr ""
msgid "Confirm reboot"
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:39
#: src/common/WiFiSettings/ResetWiFiSettings.js:40
msgid "An error occurred during resetting Wi-Fi settings."
msgstr ""
#: src/common/WiFiSettings/ResetWiFiSettings.js:41
#: src/common/WiFiSettings/ResetWiFiSettings.js:42
msgid "Wi-Fi settings are set to defaults."
msgstr ""
@ -219,11 +223,11 @@ msgid ""
" "
msgstr ""
#: src/form/components/ForisForm.js:112
#: src/form/components/ForisForm.js:102
msgid "Settings saved successfully"
msgstr ""
#: src/form/components/ForisForm.js:165
#: src/form/components/ForisForm.js:154
msgid "Changes you made may not be saved. Are you sure you want to leave?"
msgstr ""
@ -239,10 +243,7 @@ msgstr ""
msgid "Save"
msgstr "Spara"
#: src/utils/ErrorMessage.js:16
#: src/utils/ErrorMessage.js:13
msgid "An error occurred while fetching data."
msgstr ""
#~ msgid "An unknown error occurred. Check the console for more info."
#~ msgstr ""