diff --git a/frontend/src/Activity/Blocklist/Blocklist.js b/frontend/src/Activity/Blocklist/Blocklist.js index 1cd5432c0..ecabfcd1d 100644 --- a/frontend/src/Activity/Blocklist/Blocklist.js +++ b/frontend/src/Activity/Blocklist/Blocklist.js @@ -214,7 +214,7 @@ class Blocklist extends Component { isOpen={isConfirmRemoveModalOpen} kind={kinds.DANGER} title={translate('RemoveSelected')} - message={translate('RemoveSelectedMessageText')} + message={translate('RemoveSelectedItemBlocklistMessageText')} confirmLabel={translate('RemoveSelected')} onConfirm={this.onRemoveSelectedConfirmed} onCancel={this.onConfirmRemoveModalClose} diff --git a/frontend/src/Activity/Queue/RemoveQueueItemsModal.js b/frontend/src/Activity/Queue/RemoveQueueItemsModal.js index ebfd3ec2c..9b4d104d4 100644 --- a/frontend/src/Activity/Queue/RemoveQueueItemsModal.js +++ b/frontend/src/Activity/Queue/RemoveQueueItemsModal.js @@ -89,12 +89,12 @@ class RemoveQueueItemsModal extends Component { onModalClose={this.onModalClose} > - Remove Selected Item{selectedCount > 1 ? 's' : ''} + {selectedCount > 1 ? translate('RemoveSelectedItems') : translate('RemoveSelectedItem')}
- Are you sure you want to remove {selectedCount} item{selectedCount > 1 ? 's' : ''} from the queue? + {selectedCount > 1 ? translate('RemoveSelectedItemsQueueMessageText', selectedCount) : translate('RemoveSelectedItemQueueMessageText')}
{ @@ -118,7 +118,7 @@ class RemoveQueueItemsModal extends Component { - Add Release{selectedCount > 1 ? 's' : ''} To Blocklist + {selectedCount > 1 ? translate('BlocklistReleases') : translate('BlocklistRelease')} diff --git a/frontend/src/Settings/CustomFormats/CustomFormats/Specifications/Specification.js b/frontend/src/Settings/CustomFormats/CustomFormats/Specifications/Specification.js index d7f783a77..5d06efcf2 100644 --- a/frontend/src/Settings/CustomFormats/CustomFormats/Specifications/Specification.js +++ b/frontend/src/Settings/CustomFormats/CustomFormats/Specifications/Specification.js @@ -78,7 +78,7 @@ class Specification extends Component { @@ -92,14 +92,14 @@ class Specification extends Component { { negate && } { required && } @@ -114,8 +114,8 @@ class Specification extends Component { - Reset Quality Definitions + {translate('ResetQualityDefinitions')}
- Are you sure you want to reset quality definitions? + {translate('ResetQualityDefinitionsMessageText')}
@@ -81,7 +81,7 @@ class ResetQualityDefinitionsModalContent extends Component { diff --git a/src/NzbDrone.Core/Localization/Core/en.json b/src/NzbDrone.Core/Localization/Core/en.json index e834f443b..e9a2c31fb 100644 --- a/src/NzbDrone.Core/Localization/Core/en.json +++ b/src/NzbDrone.Core/Localization/Core/en.json @@ -66,6 +66,7 @@ "Blocklist": "Blocklist", "BlocklistHelpText": "Prevents Readarr from automatically grabbing these files again", "BlocklistRelease": "Blocklist Release", + "BlocklistReleases": "Blocklist Releases", "Book": "Book", "BookAvailableButMissing": "Book Available, but Missing", "BookEditor": "Book Editor", @@ -122,6 +123,7 @@ "ClickToChangeReleaseGroup": "Click to change release group", "ClientPriority": "Client Priority", "Clone": "Clone", + "CloneCondition": "Clone Condition", "CloneCustomFormat": "Clone Custom Format", "CloneIndexer": "Clone Indexer", "CloneProfile": "Clone Profile", @@ -188,6 +190,8 @@ "DeleteBackupMessageText": "Are you sure you want to delete the backup '{0}'?", "DeleteBookFile": "Delete Book File", "DeleteBookFileMessageText": "Are you sure you want to delete {0}?", + "DeleteCondition": "Delete Condition", + "DeleteConditionMessageText": "Are you sure you want to delete condition '{0}'?", "DeleteCustomFormat": "Delete Custom Format", "DeleteCustomFormatMessageText": "Are you sure you want to delete the custom format '{0}'?", "DeleteDelayProfile": "Delete Delay Profile", @@ -507,6 +511,7 @@ "NameStyle": "Author Name Style", "NamingSettings": "Naming Settings", "NegateHelpText": "If checked, the custom format will not apply if this {0} condition matches.", + "Negated": "Negated", "New": "New", "NewBooks": "New Books", "NoBackupsAreAvailable": "No backups are available", @@ -656,7 +661,11 @@ "RemoveFromQueue": "Remove from queue", "RemoveHelpTextWarning": "Removing will remove the download and the file(s) from the download client.", "RemoveSelected": "Remove Selected", - "RemoveSelectedMessageText": "Are you sure you want to remove the selected items from the blocklist?", + "RemoveSelectedItem": "Remove Selected Item", + "RemoveSelectedItemBlocklistMessageText": "Are you sure you want to remove the selected items from the blocklist?", + "RemoveSelectedItemQueueMessageText": "Are you sure you want to remove 1 item from the queue?", + "RemoveSelectedItems": "Remove Selected Items", + "RemoveSelectedItemsQueueMessageText": "Are you sure you want to remove {0} items from the queue?", "RemoveTagExistingTag": "Existing tag", "RemoveTagRemovingTag": "Removing tag", "RemovedFromTaskQueue": "Removed from task queue", @@ -669,6 +678,7 @@ "ReplaceWithDash": "Replace with Dash", "ReplaceWithSpaceDash": "Replace with Space Dash", "ReplaceWithSpaceDashSpace": "Replace with Space Dash Space", + "Required": "Required", "RequiredHelpText": "This {0} condition must match for the custom format to apply. Otherwise a single {0} match is sufficient.", "RequiredPlaceHolder": "Add new restriction", "RescanAfterRefreshHelpText": "Rescan the author folder after refreshing the author", @@ -679,6 +689,8 @@ "ResetAPIKeyMessageText": "Are you sure you want to reset your API Key?", "ResetDefinitionTitlesHelpText": "Reset definition titles as well as values", "ResetDefinitions": "Reset Definitions", + "ResetQualityDefinitions": "Reset Quality Definitions", + "ResetQualityDefinitionsMessageText": "Are you sure you want to reset quality definitions?", "ResetTitles": "Reset Titles", "Restart": "Restart", "RestartNow": "Restart Now",