From c235df075f822b75b0ecf1d33b30b5c92697a85d Mon Sep 17 00:00:00 2001 From: jack-mil <62065280+jack-mil@users.noreply.github.com> Date: Wed, 12 Jul 2023 15:55:25 -0400 Subject: [PATCH] Add localizations --- frontend/src/Store/Actions/episodeActions.js | 4 ++-- src/NzbDrone.Core/Localization/Core/en.json | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/Store/Actions/episodeActions.js b/frontend/src/Store/Actions/episodeActions.js index bf8a53e12..d4bb7d389 100644 --- a/frontend/src/Store/Actions/episodeActions.js +++ b/frontend/src/Store/Actions/episodeActions.js @@ -113,10 +113,10 @@ export const defaultState = { }, { name: 'customFormatScore', - columnLabel: 'Custom Format Score', + columnLabel: translate('CustomFormatScore'), label: React.createElement(Icon, { name: icons.SCORE, - title: 'Custom format score' + title: translate('CustomFormatScore') }), isVisible: false }, diff --git a/src/NzbDrone.Core/Localization/Core/en.json b/src/NzbDrone.Core/Localization/Core/en.json index b5d6cc834..519984dc3 100644 --- a/src/NzbDrone.Core/Localization/Core/en.json +++ b/src/NzbDrone.Core/Localization/Core/en.json @@ -25,6 +25,7 @@ "CountImportListsSelected": "{count} import list(s) selected", "CountIndexersSelected": "{count} indexer(s) selected", "CountSeasons": "{count} seasons", + "CustomFormatScore": "Custom Format Score", "Delete": "Delete", "DeleteCondition": "Delete Condition", "DeleteConditionMessageText": "Are you sure you want to delete the condition '{0}'?",