From 73f4ab48c37725c5f712599769fc7784bc7fe561 Mon Sep 17 00:00:00 2001 From: Maciej Lenartowicz Date: Thu, 14 Nov 2019 11:28:25 +0100 Subject: [PATCH] Added virtual environment and packages required for translations. --- .gitignore | 3 ++ Makefile | 18 ++++++-- requirements.txt | 1 + translations/cs/LC_MESSAGES/forisjs.po | 52 +++++++++++++++++------ translations/da/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/de/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/el/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/en/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/fi/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/fo/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/forisjs.pot | 36 ++++++++++++---- translations/fr/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/hr/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/hu/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/it/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/ja/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/ko/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/lt/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/nb/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/nb_NO/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/nl/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/pl/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/ro/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/ru/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/sk/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- translations/sv/LC_MESSAGES/forisjs.po | 42 ++++++++++++++---- 26 files changed, 799 insertions(+), 193 deletions(-) create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore index f668a42..1ce182b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,9 @@ logs *.log +# Python +venv/ + # NodeJS ## Logs npm-debug.log* diff --git a/Makefile b/Makefile index 1d58e95..f01f172 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,9 @@ .PHONY: all install-js watch-js build-js collect-files pack publish-beta publish-latest lint test test-js-update-snapshots create-messages update-messages docs docs-watch clean +DEV_PYTHON=python3.7 +VENV_NAME?=venv +VENV_BIN=$(shell pwd)/$(VENV_NAME)/bin + all: @echo "make install-js" @echo " Install dependencies" @@ -22,6 +26,12 @@ all: @echo "make clean" @echo " Remove python artifacts and virtualenv." +venv: $(VENV_NAME)/bin/activate +$(VENV_NAME)/bin/activate: + test -d $(VENV_NAME) || $(DEV_PYTHON) -m virtualenv -p $(DEV_PYTHON) $(VENV_NAME) + $(VENV_BIN)/$(DEV_PYTHON) -m pip install -r requirements.txt + touch $(VENV_NAME)/bin/activate + install-js: package.json npm install --save-dev @@ -47,10 +57,10 @@ test: test-js-update-snapshots: npm test -- -u -create-messages: - pybabel extract -F babel.cfg -o ./translations/forisjs.pot . -update-messages: - pybabel update -i translations/forisjs.pot -d translations +create-messages: venv + $(VENV_BIN)/pybabel extract -F babel.cfg -o ./translations/forisjs.pot . +update-messages: venv + $(VENV_BIN)/pybabel update -i ./translations/forisjs.pot -d ./translations -D forisjs docs: npm run-script docs diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..01cbce3 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +Babel diff --git a/translations/cs/LC_MESSAGES/forisjs.po b/translations/cs/LC_MESSAGES/forisjs.po index 085c508..51cac6a 100644 --- a/translations/cs/LC_MESSAGES/forisjs.po +++ b/translations/cs/LC_MESSAGES/forisjs.po @@ -1,4 +1,4 @@ -# Translations template for PROJECT. +# Czech translations for PROJECT. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the PROJECT project. # FIRST AUTHOR , 2019. @@ -7,17 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 12:55+0000\n" "Last-Translator: Stepan Henek \n" -"Language-Team: Czech \n" "Language: cs\n" +"Language-Team: Czech \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9-dev\n" "Generated-By: Babel 2.7.0\n" #: src/validations.js:13 @@ -48,7 +47,31 @@ msgstr "Tohle není platná MAC adresa." msgid "Doesn't contain a list of emails separated by commas." msgstr "Neobsahuje seznam e-mailů oddělených čárkou." -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 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 " @@ -66,10 +89,13 @@ msgstr "Načítám nastavení" msgid "Save" msgstr "Uložit" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." -msgstr "Nastavení bylo úspěšně uloženo." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." +msgstr "" + +#~ msgid "Settings were successfully saved." +#~ msgstr "Nastavení bylo úspěšně uloženo." + +#~ msgid "Settings update was failed." +#~ msgstr "Ukládání nastavení selhalo." -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "Ukládání nastavení selhalo." diff --git a/translations/da/LC_MESSAGES/forisjs.po b/translations/da/LC_MESSAGES/forisjs.po index 6df1d29..f8c53dc 100644 --- a/translations/da/LC_MESSAGES/forisjs.po +++ b/translations/da/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:54+0200\n" "Last-Translator: FULL NAME \n" "Language: da\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/de/LC_MESSAGES/forisjs.po b/translations/de/LC_MESSAGES/forisjs.po index 3c3cff0..8e247a3 100644 --- a/translations/de/LC_MESSAGES/forisjs.po +++ b/translations/de/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:54+0200\n" "Last-Translator: FULL NAME \n" "Language: de\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/el/LC_MESSAGES/forisjs.po b/translations/el/LC_MESSAGES/forisjs.po index ae15ae1..3591b4d 100644 --- a/translations/el/LC_MESSAGES/forisjs.po +++ b/translations/el/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:54+0200\n" "Last-Translator: FULL NAME \n" "Language: el\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/en/LC_MESSAGES/forisjs.po b/translations/en/LC_MESSAGES/forisjs.po index 070c293..7a20e38 100644 --- a/translations/en/LC_MESSAGES/forisjs.po +++ b/translations/en/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:21+0200\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/fi/LC_MESSAGES/forisjs.po b/translations/fi/LC_MESSAGES/forisjs.po index e510d10..ac64b52 100644 --- a/translations/fi/LC_MESSAGES/forisjs.po +++ b/translations/fi/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:54+0200\n" "Last-Translator: FULL NAME \n" "Language: fi\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/fo/LC_MESSAGES/forisjs.po b/translations/fo/LC_MESSAGES/forisjs.po index 2559f6d..a795b2a 100644 --- a/translations/fo/LC_MESSAGES/forisjs.po +++ b/translations/fo/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:54+0200\n" "Last-Translator: FULL NAME \n" "Language: fo\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/forisjs.pot b/translations/forisjs.pot index 6f2cf22..13921da 100644 --- a/translations/forisjs.pot +++ b/translations/forisjs.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -45,7 +45,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -61,11 +85,7 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." -msgstr "" - -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" diff --git a/translations/fr/LC_MESSAGES/forisjs.po b/translations/fr/LC_MESSAGES/forisjs.po index 031bc27..60af4c6 100644 --- a/translations/fr/LC_MESSAGES/forisjs.po +++ b/translations/fr/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:54+0200\n" "Last-Translator: FULL NAME \n" "Language: fr\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/hr/LC_MESSAGES/forisjs.po b/translations/hr/LC_MESSAGES/forisjs.po index 8143216..d0b6b2b 100644 --- a/translations/hr/LC_MESSAGES/forisjs.po +++ b/translations/hr/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:55+0200\n" "Last-Translator: FULL NAME \n" "Language: hr\n" @@ -17,7 +17,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -47,7 +47,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -63,11 +87,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/hu/LC_MESSAGES/forisjs.po b/translations/hu/LC_MESSAGES/forisjs.po index ed637f5..639b6bd 100644 --- a/translations/hu/LC_MESSAGES/forisjs.po +++ b/translations/hu/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:55+0200\n" "Last-Translator: FULL NAME \n" "Language: hu\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/it/LC_MESSAGES/forisjs.po b/translations/it/LC_MESSAGES/forisjs.po index 8fb67f4..33e6b01 100644 --- a/translations/it/LC_MESSAGES/forisjs.po +++ b/translations/it/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:55+0200\n" "Last-Translator: FULL NAME \n" "Language: it\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/ja/LC_MESSAGES/forisjs.po b/translations/ja/LC_MESSAGES/forisjs.po index 766c8f8..c3e8a0b 100644 --- a/translations/ja/LC_MESSAGES/forisjs.po +++ b/translations/ja/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:55+0200\n" "Last-Translator: FULL NAME \n" "Language: ja\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/ko/LC_MESSAGES/forisjs.po b/translations/ko/LC_MESSAGES/forisjs.po index 1d98f8e..24bb8d1 100644 --- a/translations/ko/LC_MESSAGES/forisjs.po +++ b/translations/ko/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:55+0200\n" "Last-Translator: FULL NAME \n" "Language: ko\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/lt/LC_MESSAGES/forisjs.po b/translations/lt/LC_MESSAGES/forisjs.po index c186bb9..a4b8957 100644 --- a/translations/lt/LC_MESSAGES/forisjs.po +++ b/translations/lt/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:55+0200\n" "Last-Translator: FULL NAME \n" "Language: lt\n" @@ -17,7 +17,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -47,7 +47,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -63,11 +87,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/nb/LC_MESSAGES/forisjs.po b/translations/nb/LC_MESSAGES/forisjs.po index 6890f9d..0e62422 100644 --- a/translations/nb/LC_MESSAGES/forisjs.po +++ b/translations/nb/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:56+0200\n" "Last-Translator: FULL NAME \n" "Language: nb\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/nb_NO/LC_MESSAGES/forisjs.po b/translations/nb_NO/LC_MESSAGES/forisjs.po index 9e67527..26865a1 100644 --- a/translations/nb_NO/LC_MESSAGES/forisjs.po +++ b/translations/nb_NO/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:55+0200\n" "Last-Translator: FULL NAME \n" "Language: nb_NO\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/nl/LC_MESSAGES/forisjs.po b/translations/nl/LC_MESSAGES/forisjs.po index ebe6210..208b636 100644 --- a/translations/nl/LC_MESSAGES/forisjs.po +++ b/translations/nl/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:56+0200\n" "Last-Translator: FULL NAME \n" "Language: nl\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/pl/LC_MESSAGES/forisjs.po b/translations/pl/LC_MESSAGES/forisjs.po index fd803d9..35715ea 100644 --- a/translations/pl/LC_MESSAGES/forisjs.po +++ b/translations/pl/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:56+0200\n" "Last-Translator: FULL NAME \n" "Language: pl\n" @@ -17,7 +17,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -47,7 +47,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -63,11 +87,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/ro/LC_MESSAGES/forisjs.po b/translations/ro/LC_MESSAGES/forisjs.po index a2a451a..6213ccc 100644 --- a/translations/ro/LC_MESSAGES/forisjs.po +++ b/translations/ro/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:56+0200\n" "Last-Translator: FULL NAME \n" "Language: ro\n" @@ -17,7 +17,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -47,7 +47,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -63,11 +87,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/ru/LC_MESSAGES/forisjs.po b/translations/ru/LC_MESSAGES/forisjs.po index 8232f2a..9c81ac8 100644 --- a/translations/ru/LC_MESSAGES/forisjs.po +++ b/translations/ru/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:56+0200\n" "Last-Translator: FULL NAME \n" "Language: ru\n" @@ -17,7 +17,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -47,7 +47,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -63,11 +87,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/sk/LC_MESSAGES/forisjs.po b/translations/sk/LC_MESSAGES/forisjs.po index b890ff6..ab80b80 100644 --- a/translations/sk/LC_MESSAGES/forisjs.po +++ b/translations/sk/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:56+0200\n" "Last-Translator: FULL NAME \n" "Language: sk\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr "" diff --git a/translations/sv/LC_MESSAGES/forisjs.po b/translations/sv/LC_MESSAGES/forisjs.po index d8fd25f..e06729b 100644 --- a/translations/sv/LC_MESSAGES/forisjs.po +++ b/translations/sv/LC_MESSAGES/forisjs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-08-28 14:34+0200\n" +"POT-Creation-Date: 2019-11-14 11:13+0100\n" "PO-Revision-Date: 2019-08-28 17:56+0200\n" "Last-Translator: FULL NAME \n" "Language: sv\n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.6.0\n" +"Generated-By: Babel 2.7.0\n" #: src/validations.js:13 msgid "This is not a valid IPv4 address." @@ -46,7 +46,31 @@ msgstr "" msgid "Doesn't contain a list of emails separated by commas." msgstr "" -#: src/form/components/ForisForm.js:123 +#: src/api/utils.js:58 +msgid "The session is expired. Please log in again." +msgstr "" + +#: src/api/utils.js:63 +msgid "Timeout error occurred." +msgstr "" + +#: src/api/utils.js:66 +msgid "No response received." +msgstr "" + +#: 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 "" + +#: src/form/components/ForisForm.js:88 +msgid "Settings saved successfully" +msgstr "" + +#: src/form/components/ForisForm.js:140 msgid "Changes you made may not be saved. Are you sure you want to leave?" msgstr "" @@ -62,11 +86,13 @@ msgstr "" msgid "Save" msgstr "" -#: src/form/components/alerts.js:25 -msgid "Settings were successfully saved." +#: src/utils/ErrorMessage.js:13 +msgid "An error occurred while fetching data." msgstr "" -#: src/form/components/alerts.js:41 -msgid "Settings update was failed." -msgstr "" +#~ msgid "Settings were successfully saved." +#~ msgstr "" + +#~ msgid "Settings update was failed." +#~ msgstr ""