Update translations

pull/3789/head
Bogdan 2 years ago
parent 447aa837b1
commit c70ab07ee0

@ -169,7 +169,7 @@ class Blocklist extends Component {
{ {
isAllPopulated && !error && !items.length && isAllPopulated && !error && !items.length &&
<div> <div>
No history blocklist {translate('NoHistoryBlocklist')}
</div> </div>
} }
@ -214,7 +214,7 @@ class Blocklist extends Component {
isOpen={isConfirmRemoveModalOpen} isOpen={isConfirmRemoveModalOpen}
kind={kinds.DANGER} kind={kinds.DANGER}
title={translate('RemoveSelected')} title={translate('RemoveSelected')}
message={translate('RemoveSelectedMessageText')} message={translate('RemoveSelectedItemBlocklistMessageText')}
confirmLabel={translate('RemoveSelected')} confirmLabel={translate('RemoveSelected')}
onConfirm={this.onRemoveSelectedConfirmed} onConfirm={this.onRemoveSelectedConfirmed}
onCancel={this.onConfirmRemoveModalClose} onCancel={this.onConfirmRemoveModalClose}

@ -88,12 +88,12 @@ class RemoveQueueItemsModal extends Component {
onModalClose={this.onModalClose} onModalClose={this.onModalClose}
> >
<ModalHeader> <ModalHeader>
Remove Selected Item{selectedCount > 1 ? 's' : ''} {selectedCount > 1 ? translate('RemoveSelectedItems') : translate('RemoveSelectedItem')}
</ModalHeader> </ModalHeader>
<ModalBody> <ModalBody>
<div className={styles.message}> <div className={styles.message}>
Are you sure you want to remove {selectedCount} item{selectedCount > 1 ? 's' : ''} from the queue? {selectedCount > 1 ? translate('RemoveSelectedItemsQueueMessageText', selectedCount) : translate('RemoveSelectedItemQueueMessageText')}
</div> </div>
<FormGroup> <FormGroup>
@ -113,7 +113,7 @@ class RemoveQueueItemsModal extends Component {
<FormGroup> <FormGroup>
<FormLabel> <FormLabel>
Blocklist Release{selectedCount > 1 ? 's' : ''} {selectedCount > 1 ? translate('BlocklistReleases') : translate('BlocklistRelease')}
</FormLabel> </FormLabel>
<FormInputGroup <FormInputGroup
@ -145,14 +145,14 @@ class RemoveQueueItemsModal extends Component {
<ModalFooter> <ModalFooter>
<Button onPress={this.onModalClose}> <Button onPress={this.onModalClose}>
Close {translate('Close')}
</Button> </Button>
<Button <Button
kind={kinds.DANGER} kind={kinds.DANGER}
onPress={this.onRemoveConfirmed} onPress={this.onRemoveConfirmed}
> >
Remove {translate('Remove')}
</Button> </Button>
</ModalFooter> </ModalFooter>
</ModalContent> </ModalContent>

@ -78,7 +78,7 @@ class Specification extends Component {
<IconButton <IconButton
className={styles.cloneButton} className={styles.cloneButton}
title={translate('Clone')} title={translate('CloneCondition')}
name={icons.CLONE} name={icons.CLONE}
onPress={this.onCloneSpecificationPress} onPress={this.onCloneSpecificationPress}
/> />
@ -92,14 +92,14 @@ class Specification extends Component {
{ {
negate && negate &&
<Label kind={kinds.DANGER}> <Label kind={kinds.DANGER}>
Negated {translate('Negated')}
</Label> </Label>
} }
{ {
required && required &&
<Label kind={kinds.SUCCESS}> <Label kind={kinds.SUCCESS}>
Required {translate('Required')}
</Label> </Label>
} }
</div> </div>
@ -114,8 +114,8 @@ class Specification extends Component {
<ConfirmModal <ConfirmModal
isOpen={this.state.isDeleteSpecificationModalOpen} isOpen={this.state.isDeleteSpecificationModalOpen}
kind={kinds.DANGER} kind={kinds.DANGER}
title={translate('DeleteFormat')} title={translate('DeleteCondition')}
message={translate('DeleteFormatMessageText', [name])} message={translate('DeleteConditionMessageText', [name])}
confirmLabel={translate('Delete')} confirmLabel={translate('Delete')}
onConfirm={this.onConfirmDeleteSpecification} onConfirm={this.onConfirmDeleteSpecification}
onCancel={this.onDeleteSpecificationModalClose} onCancel={this.onDeleteSpecificationModalClose}

@ -55,12 +55,12 @@ class ResetQualityDefinitionsModalContent extends Component {
onModalClose={onModalClose} onModalClose={onModalClose}
> >
<ModalHeader> <ModalHeader>
Reset Quality Definitions {translate('ResetQualityDefinitions')}
</ModalHeader> </ModalHeader>
<ModalBody> <ModalBody>
<div className={styles.messageContainer}> <div className={styles.messageContainer}>
Are you sure you want to reset quality definitions? {translate('ResetQualityDefinitionsMessageText')}
</div> </div>
<FormGroup> <FormGroup>
@ -81,7 +81,7 @@ class ResetQualityDefinitionsModalContent extends Component {
<ModalFooter> <ModalFooter>
<Button onPress={onModalClose}> <Button onPress={onModalClose}>
Cancel {translate('Cancel')}
</Button> </Button>
<Button <Button
@ -89,7 +89,7 @@ class ResetQualityDefinitionsModalContent extends Component {
onPress={this.onResetQualityDefinitionsConfirmed} onPress={this.onResetQualityDefinitionsConfirmed}
isDisabled={isResettingQualityDefinitions} isDisabled={isResettingQualityDefinitions}
> >
Reset {translate('Reset')}
</Button> </Button>
</ModalFooter> </ModalFooter>
</ModalContent> </ModalContent>

@ -106,6 +106,7 @@
"Blocklist": "Blocklist", "Blocklist": "Blocklist",
"BlocklistHelpText": "Prevents Lidarr from automatically grabbing these files again", "BlocklistHelpText": "Prevents Lidarr from automatically grabbing these files again",
"BlocklistRelease": "Blocklist Release", "BlocklistRelease": "Blocklist Release",
"BlocklistReleases": "Blocklist Releases",
"Branch": "Branch", "Branch": "Branch",
"BypassIfAboveCustomFormatScore": "Bypass if Above Custom Format Score", "BypassIfAboveCustomFormatScore": "Bypass if Above Custom Format Score",
"BypassIfAboveCustomFormatScoreHelpText": "Enable bypass when release has a score higher than the configured minimum custom format score", "BypassIfAboveCustomFormatScoreHelpText": "Enable bypass when release has a score higher than the configured minimum custom format score",
@ -192,6 +193,8 @@
"DeleteArtist": "Delete Selected Artist", "DeleteArtist": "Delete Selected Artist",
"DeleteBackup": "Delete Backup", "DeleteBackup": "Delete Backup",
"DeleteBackupMessageText": "Are you sure you want to delete the backup '{0}'?", "DeleteBackupMessageText": "Are you sure you want to delete the backup '{0}'?",
"DeleteCondition": "Delete Condition",
"DeleteConditionMessageText": "Are you sure you want to delete condition '{0}'?",
"DeleteCustomFormat": "Delete Custom Format", "DeleteCustomFormat": "Delete Custom Format",
"DeleteCustomFormatMessageText": "Are you sure you want to delete the custom format '{0}'?", "DeleteCustomFormatMessageText": "Are you sure you want to delete the custom format '{0}'?",
"DeleteDelayProfile": "Delete Delay Profile", "DeleteDelayProfile": "Delete Delay Profile",
@ -543,6 +546,7 @@
"Name": "Name", "Name": "Name",
"NamingSettings": "Naming Settings", "NamingSettings": "Naming Settings",
"NegateHelpText": "If checked, the custom format will not apply if this {0} condition matches.", "NegateHelpText": "If checked, the custom format will not apply if this {0} condition matches.",
"Negated": "Negated",
"Never": "Never", "Never": "Never",
"New": "New", "New": "New",
"NewAlbums": "New Albums", "NewAlbums": "New Albums",
@ -551,6 +555,7 @@
"NoAlbums": "No albums", "NoAlbums": "No albums",
"NoBackupsAreAvailable": "No backups are available", "NoBackupsAreAvailable": "No backups are available",
"NoHistory": "No history.", "NoHistory": "No history.",
"NoHistoryBlocklist": "No history blocklist",
"NoLeaveIt": "No, Leave It", "NoLeaveIt": "No, Leave It",
"NoLimitForAnyRuntime": "No limit for any runtime", "NoLimitForAnyRuntime": "No limit for any runtime",
"NoLogFiles": "No log files", "NoLogFiles": "No log files",
@ -707,7 +712,9 @@
"RemoveFromQueue": "Remove from queue", "RemoveFromQueue": "Remove from queue",
"RemoveHelpTextWarning": "Removing will remove the download and the file(s) from the download client.", "RemoveHelpTextWarning": "Removing will remove the download and the file(s) from the download client.",
"RemoveSelected": "Remove Selected", "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?",
"RemoveSelectedItems": "Remove Selected Items",
"RemoveTagExistingTag": "Existing tag", "RemoveTagExistingTag": "Existing tag",
"RemoveTagRemovingTag": "Removing tag", "RemoveTagRemovingTag": "Removing tag",
"RemovedFromTaskQueue": "Removed from task queue", "RemovedFromTaskQueue": "Removed from task queue",
@ -722,6 +729,7 @@
"ReplaceWithDash": "Replace with Dash", "ReplaceWithDash": "Replace with Dash",
"ReplaceWithSpaceDash": "Replace with Space Dash", "ReplaceWithSpaceDash": "Replace with Space Dash",
"ReplaceWithSpaceDashSpace": "Replace with Space Dash Space", "ReplaceWithSpaceDashSpace": "Replace with Space Dash Space",
"Required": "Required",
"RequiredHelpText": "The release must contain at least one of these terms (case insensitive)", "RequiredHelpText": "The release must contain at least one of these terms (case insensitive)",
"RequiredPlaceHolder": "Add new restriction", "RequiredPlaceHolder": "Add new restriction",
"RequiresRestartToTakeEffect": "Requires restart to take effect", "RequiresRestartToTakeEffect": "Requires restart to take effect",
@ -733,7 +741,10 @@
"ResetAPIKeyMessageText": "Are you sure you want to reset your API Key?", "ResetAPIKeyMessageText": "Are you sure you want to reset your API Key?",
"ResetDefinitionTitlesHelpText": "Reset definition titles as well as values", "ResetDefinitionTitlesHelpText": "Reset definition titles as well as values",
"ResetDefinitions": "Reset Definitions", "ResetDefinitions": "Reset Definitions",
"ResetQualityDefinitions": "Reset Quality Definitions",
"ResetQualityDefinitionsMessageText": "Are you sure you want to reset quality definitions?",
"ResetTitles": "Reset Titles", "ResetTitles": "Reset Titles",
"ResetTitlesHelpText": "Reset definition titles as well as values",
"Restart": "Restart", "Restart": "Restart",
"RestartLidarr": "Restart Lidarr", "RestartLidarr": "Restart Lidarr",
"RestartNow": "Restart Now", "RestartNow": "Restart Now",

Loading…
Cancel
Save