From ecb7d9f6a6165745ae355398c7e7e5dc7d9066b0 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Wed, 4 Dec 2024 15:44:36 +0200 Subject: [PATCH] Fix adding delay profile error message --- .../Settings/Profiles/Delay/EditDelayProfileModalContent.js | 6 +++--- src/NzbDrone.Core/Localization/Core/en.json | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/src/Settings/Profiles/Delay/EditDelayProfileModalContent.js b/frontend/src/Settings/Profiles/Delay/EditDelayProfileModalContent.js index da1bf7f44..598a5b178 100644 --- a/frontend/src/Settings/Profiles/Delay/EditDelayProfileModalContent.js +++ b/frontend/src/Settings/Profiles/Delay/EditDelayProfileModalContent.js @@ -87,9 +87,9 @@ function EditDelayProfileModalContent(props) { { !isFetching && !!error ? -
- {translate('UnableToAddANewQualityProfilePleaseTryAgain')} -
: + + {translate('AddDelayProfileError')} + : null } diff --git a/src/NzbDrone.Core/Localization/Core/en.json b/src/NzbDrone.Core/Localization/Core/en.json index 621e04b29..b63990c30 100644 --- a/src/NzbDrone.Core/Localization/Core/en.json +++ b/src/NzbDrone.Core/Localization/Core/en.json @@ -18,6 +18,7 @@ "AddConnection": "Add Connection", "AddConnectionImplementation": "Add Connection - {implementationName}", "AddDelayProfile": "Add Delay Profile", + "AddDelayProfileError": "Unable to add a new delay profile, please try again.", "AddDownloadClientImplementation": "Add Download Client - {implementationName}", "AddImportList": "Add Import List", "AddImportListExclusion": "Add Import List Exclusion",