mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-23 22:17:15 -04:00
Fixed: Translate strings for single vs multiple options
This commit is contained in:
parent
86da4e87ea
commit
5ce1829709
2 changed files with 7 additions and 3 deletions
|
@ -83,12 +83,12 @@ class RemoveQueueItemsModal extends Component {
|
|||
onModalClose={this.onModalClose}
|
||||
>
|
||||
<ModalHeader>
|
||||
Remove Selected Item{selectedCount > 1 ? 's' : ''}
|
||||
{selectedCount > 1 ? translate('RemoveSelectedItems') : translate('RemoveSelectedItem')}
|
||||
</ModalHeader>
|
||||
|
||||
<ModalBody>
|
||||
<div className={styles.message}>
|
||||
{translate('AreYouSureYouWantToRemoveSelectedItemsFromQueue', [selectedCount, selectedCount > 1 ? 's' : ''])}
|
||||
{selectedCount > 1 ? translate('AreYouSureYouWantToRemoveSelectedItemsFromQueue', selectedCount) : translate('AreYouSureYouWantToRemoveSelectedItemFromQueue')}
|
||||
</div>
|
||||
|
||||
{
|
||||
|
@ -110,7 +110,7 @@ class RemoveQueueItemsModal extends Component {
|
|||
|
||||
<FormGroup>
|
||||
<FormLabel>
|
||||
Blocklist Release{selectedCount > 1 ? 's' : ''}
|
||||
{selectedCount > 1 ? translate('BlocklistReleases') : translate('BlocklistRelease')}
|
||||
</FormLabel>
|
||||
|
||||
<FormInputGroup
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"AreYouSureYouWantToDeleteThisDelayProfile": "Are you sure you want to delete this delay profile?",
|
||||
"AreYouSureYouWantToDeleteThisImportListExclusion": "Are you sure you want to delete this import list exclusion?",
|
||||
"AreYouSureYouWantToDeleteThisRemotePathMapping": "Are you sure you want to delete this remote path mapping?",
|
||||
"AreYouSureYouWantToRemoveSelectedItemFromQueue": "Are you sure you want to remove 1 item from the queue?",
|
||||
"AreYouSureYouWantToRemoveSelectedItemsFromQueue": "Are you sure you want to remove {0} item{1} from the queue?",
|
||||
"AreYouSureYouWantToRemoveTheSelectedItemsFromBlocklist": "Are you sure you want to remove the selected items from the blocklist?",
|
||||
"AreYouSureYouWantToResetYourAPIKey": "Are you sure you want to reset your API Key?",
|
||||
|
@ -90,6 +91,7 @@
|
|||
"Blocklisted": "Blocklisted",
|
||||
"BlocklistHelpText": "Prevents Radarr from automatically grabbing this release again",
|
||||
"BlocklistRelease": "Blocklist Release",
|
||||
"BlocklistReleases": "Blocklist Releases",
|
||||
"Branch": "Branch",
|
||||
"BranchUpdate": "Branch to use to update Radarr",
|
||||
"BranchUpdateMechanism": "Branch used by external update mechanism",
|
||||
|
@ -798,6 +800,8 @@
|
|||
"RemoveMovieAndKeepFiles": "Remove Movie and Keep Files",
|
||||
"RemoveRootFolder": "Remove root folder",
|
||||
"RemoveSelected": "Remove Selected",
|
||||
"RemoveSelectedItem": "Remove Selected Item",
|
||||
"RemoveSelectedItems": "Remove Selected Items",
|
||||
"RemovingTag": "Removing tag",
|
||||
"Renamed": "Renamed",
|
||||
"RenameFiles": "Rename Files",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue