From dcf6eb8e8d99a166b42527ce5a7a4761469c00c0 Mon Sep 17 00:00:00 2001 From: Daniil Palagin Date: Mon, 26 Aug 2024 16:42:19 +0200 Subject: [PATCH] [#550] Localize errors for EN and CZ --- public/locales/cs/translation.json | 24 ++++++++++++++++++++++++ public/locales/en/translation.json | 24 ++++++++++++++++++++++++ 2 files changed, 48 insertions(+) diff --git a/public/locales/cs/translation.json b/public/locales/cs/translation.json index 23ece437..fbd65fa2 100644 --- a/public/locales/cs/translation.json +++ b/public/locales/cs/translation.json @@ -116,5 +116,29 @@ "rename": "Přejmenovat", "save": "Uložit", "discard": "Zahodit" + }, + "errors": { + "faultTree": { + "rootEvent": { + "deleteViolation": "Kořenová událost stromu nesmí být smazána!" + } + }, + "user": { + "update": { + "uriMismatch": "URI pro aktualizaci uživatele se neshoduje s aktuálním uživatelem!", + "incorrectOldPassword": "Staré heslo je nesprávné!" + }, + "impersonation": { + "adminImpersonation": "Nelze se vydávat za správce." + } + }, + "faultTreeTraversal": { + "intermediateEventAsLeaf": "Mezilehlá událost nesmí být na konci cesty!" + }, + "externalService": { + "configuration": { + "failureRateServiceNotSet": "Konfigurační parametr operationalFailureRateService není nastaven." + } + } } } diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index a5c2de43..7af77be9 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -116,5 +116,29 @@ "rename": "Rename", "save": "Save", "discard": "Discard" + }, + "errors": { + "faultTree": { + "rootEvent": { + "deleteViolation": "Root event of tree mustn't be deleted!" + } + }, + "user": { + "update": { + "uriMismatch": "User update uri does not match current user!", + "incorrectOldPassword": "Old password incorrect!" + }, + "impersonation": { + "adminImpersonation": "Cannot impersonate admin." + } + }, + "faultTreeTraversal": { + "intermediateEventAsLeaf": "Intermediate event must not be the end of the path!" + }, + "externalService": { + "configuration": { + "failureRateServiceNotSet": "Configuration parameter operationalFailureRateService not set." + } + } } }