mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-25 02:50:51 +00:00
Update translations
This commit is contained in:
@@ -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}
|
||||||
|
|||||||
@@ -89,12 +89,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>
|
||||||
|
|
||||||
{
|
{
|
||||||
@@ -118,7 +118,7 @@ class RemoveQueueItemsModal extends Component {
|
|||||||
|
|
||||||
<FormGroup>
|
<FormGroup>
|
||||||
<FormLabel>
|
<FormLabel>
|
||||||
Add Release{selectedCount > 1 ? 's' : ''} To Blocklist
|
{selectedCount > 1 ? translate('BlocklistReleases') : translate('BlocklistRelease')}
|
||||||
</FormLabel>
|
</FormLabel>
|
||||||
|
|
||||||
<FormInputGroup
|
<FormInputGroup
|
||||||
@@ -150,14 +150,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>
|
||||||
|
|||||||
@@ -66,6 +66,7 @@
|
|||||||
"Blocklist": "Blocklist",
|
"Blocklist": "Blocklist",
|
||||||
"BlocklistHelpText": "Prevents Readarr from automatically grabbing these files again",
|
"BlocklistHelpText": "Prevents Readarr from automatically grabbing these files again",
|
||||||
"BlocklistRelease": "Blocklist Release",
|
"BlocklistRelease": "Blocklist Release",
|
||||||
|
"BlocklistReleases": "Blocklist Releases",
|
||||||
"Book": "Book",
|
"Book": "Book",
|
||||||
"BookAvailableButMissing": "Book Available, but Missing",
|
"BookAvailableButMissing": "Book Available, but Missing",
|
||||||
"BookEditor": "Book Editor",
|
"BookEditor": "Book Editor",
|
||||||
@@ -122,6 +123,7 @@
|
|||||||
"ClickToChangeReleaseGroup": "Click to change release group",
|
"ClickToChangeReleaseGroup": "Click to change release group",
|
||||||
"ClientPriority": "Client Priority",
|
"ClientPriority": "Client Priority",
|
||||||
"Clone": "Clone",
|
"Clone": "Clone",
|
||||||
|
"CloneCondition": "Clone Condition",
|
||||||
"CloneCustomFormat": "Clone Custom Format",
|
"CloneCustomFormat": "Clone Custom Format",
|
||||||
"CloneIndexer": "Clone Indexer",
|
"CloneIndexer": "Clone Indexer",
|
||||||
"CloneProfile": "Clone Profile",
|
"CloneProfile": "Clone Profile",
|
||||||
@@ -188,6 +190,8 @@
|
|||||||
"DeleteBackupMessageText": "Are you sure you want to delete the backup '{0}'?",
|
"DeleteBackupMessageText": "Are you sure you want to delete the backup '{0}'?",
|
||||||
"DeleteBookFile": "Delete Book File",
|
"DeleteBookFile": "Delete Book File",
|
||||||
"DeleteBookFileMessageText": "Are you sure you want to delete {0}?",
|
"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",
|
"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",
|
||||||
@@ -507,6 +511,7 @@
|
|||||||
"NameStyle": "Author Name Style",
|
"NameStyle": "Author Name Style",
|
||||||
"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",
|
||||||
"New": "New",
|
"New": "New",
|
||||||
"NewBooks": "New Books",
|
"NewBooks": "New Books",
|
||||||
"NoBackupsAreAvailable": "No backups are available",
|
"NoBackupsAreAvailable": "No backups are available",
|
||||||
@@ -656,7 +661,11 @@
|
|||||||
"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?",
|
||||||
|
"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",
|
"RemoveTagExistingTag": "Existing tag",
|
||||||
"RemoveTagRemovingTag": "Removing tag",
|
"RemoveTagRemovingTag": "Removing tag",
|
||||||
"RemovedFromTaskQueue": "Removed from task queue",
|
"RemovedFromTaskQueue": "Removed from task queue",
|
||||||
@@ -669,6 +678,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": "This {0} condition must match for the custom format to apply. Otherwise a single {0} match is sufficient.",
|
"RequiredHelpText": "This {0} condition must match for the custom format to apply. Otherwise a single {0} match is sufficient.",
|
||||||
"RequiredPlaceHolder": "Add new restriction",
|
"RequiredPlaceHolder": "Add new restriction",
|
||||||
"RescanAfterRefreshHelpText": "Rescan the author folder after refreshing the author",
|
"RescanAfterRefreshHelpText": "Rescan the author folder after refreshing the author",
|
||||||
@@ -679,6 +689,8 @@
|
|||||||
"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",
|
||||||
"Restart": "Restart",
|
"Restart": "Restart",
|
||||||
"RestartNow": "Restart Now",
|
"RestartNow": "Restart Now",
|
||||||
|
|||||||
Reference in New Issue
Block a user