Fixed: Added Missing & New Translations

This commit is contained in:
bakerboy448 2022-08-03 17:50:23 -05:00
parent c1dd253bc1
commit 4243dde089
15 changed files with 149 additions and 89 deletions

View File

@ -45,7 +45,7 @@ function QueueDetails(props) {
<Icon <Icon
name={icons.DOWNLOAD} name={icons.DOWNLOAD}
kind={kinds.WARNING} kind={kinds.WARNING}
title={'Downloaded - Unable to Import: check logs for details'} title={translate('UnableToImportCheckLogs')}
/> />
); );
} }
@ -55,7 +55,7 @@ function QueueDetails(props) {
<Icon <Icon
name={icons.DOWNLOAD} name={icons.DOWNLOAD}
kind={kinds.PURPLE} kind={kinds.PURPLE}
title={'Downloaded - Waiting to Import'} title={`${translate('Downloaded')} - ${translate('WaitingToImport')}`}
/> />
); );
} }
@ -65,7 +65,7 @@ function QueueDetails(props) {
<Icon <Icon
name={icons.DOWNLOAD} name={icons.DOWNLOAD}
kind={kinds.PURPLE} kind={kinds.PURPLE}
title={'Downloaded - Importing'} title={`${translate('Downloaded')} - ${translate('Importing')}`}
/> />
); );
} }

View File

@ -8,17 +8,17 @@ function ArtistMonitorNewItemsOptionsPopoverContent() {
<DescriptionList> <DescriptionList>
<DescriptionListItem <DescriptionListItem
title={translate('AllAlbums')} title={translate('AllAlbums')}
data="Monitor all new albums" data={translate('MonitorAllAlbumsData')}
/> />
<DescriptionListItem <DescriptionListItem
title={translate('NewAlbums')} title={translate('NewAlbums')}
data="Monitor new albums released after the newest existing album" data={translate('MonitorNewAlbumsData')}
/> />
<DescriptionListItem <DescriptionListItem
title={translate('None')} title={translate('None')}
data="Don't monitor any new albums" data={translate('MonitorNoneData')}
/> />
</DescriptionList> </DescriptionList>
); );

View File

@ -8,42 +8,42 @@ function ArtistMonitoringOptionsPopoverContent() {
return ( return (
<> <>
<Alert> <Alert>
This is a one time adjustment to set which albums are monitored {translate('MonitorOneTimeAdjustmentAlert')}
</Alert> </Alert>
<DescriptionList> <DescriptionList>
<DescriptionListItem <DescriptionListItem
title={translate('AllAlbums')} title={translate('AllAlbums')}
data={translate('AllAlbumsData')} data={translate('MonitorAllAlbumsData')}
/> />
<DescriptionListItem <DescriptionListItem
title={translate('FutureAlbums')} title={translate('FutureAlbums')}
data={translate('FutureAlbumsData')} data={translate('MonitorFutureAlbumsData')}
/> />
<DescriptionListItem <DescriptionListItem
title={translate('MissingAlbums')} title={translate('MissingAlbums')}
data={translate('MissingAlbumsData')} data={translate('MonitorMissingAlbumsData')}
/> />
<DescriptionListItem <DescriptionListItem
title={translate('ExistingAlbums')} title={translate('ExistingAlbums')}
data={translate('ExistingAlbumsData')} data={translate('MonitorExistingAlbumsData')}
/> />
<DescriptionListItem <DescriptionListItem
title={translate('FirstAlbum')} title={translate('FirstAlbum')}
data={translate('FirstAlbumData')} data={translate('MonitorFirstAlbumData')}
/> />
<DescriptionListItem <DescriptionListItem
title={translate('LatestAlbum')} title={translate('LatestAlbum')}
data={translate('LatestAlbumData')} data={translate('MonitorLatestAlbumData')}
/> />
<DescriptionListItem <DescriptionListItem
title={translate('None')} title={translate('None')}
data={translate('NoneData')} data={translate('MonitorNoneData')}
/> />
</DescriptionList> </DescriptionList>
</> </>

View File

@ -77,7 +77,9 @@ function AppUpdatedModalContent(props) {
<div> <div>
{ {
!update.changes && !update.changes &&
<div className={styles.maintenance}>Maintenance release</div> <div className={styles.maintenance}>
{translate('MaintenanceRelease')}
</div>
} }
{ {

View File

@ -8,6 +8,7 @@ import ModalContent from 'Components/Modal/ModalContent';
import ModalFooter from 'Components/Modal/ModalFooter'; import ModalFooter from 'Components/Modal/ModalFooter';
import ModalHeader from 'Components/Modal/ModalHeader'; import ModalHeader from 'Components/Modal/ModalHeader';
import { inputTypes } from 'Helpers/Props'; import { inputTypes } from 'Helpers/Props';
import translate from 'Utilities/String/translate';
import FilterBuilderRow from './FilterBuilderRow'; import FilterBuilderRow from './FilterBuilderRow';
import styles from './FilterBuilderModalContent.css'; import styles from './FilterBuilderModalContent.css';
@ -165,7 +166,9 @@ class FilterBuilderModalContent extends Component {
</div> </div>
</div> </div>
<div className={styles.label}>Filters</div> <div className={styles.label}>
{translate('Filters')}
</div>
<div className={styles.rows}> <div className={styles.rows}>
{ {

View File

@ -3,7 +3,6 @@ import React, { Component } from 'react';
import TextInput from 'Components/Form/TextInput'; import TextInput from 'Components/Form/TextInput';
import Icon from 'Components/Icon'; import Icon from 'Components/Icon';
import Button from 'Components/Link/Button'; import Button from 'Components/Link/Button';
import Link from 'Components/Link/Link';
import LoadingIndicator from 'Components/Loading/LoadingIndicator'; import LoadingIndicator from 'Components/Loading/LoadingIndicator';
import PageContent from 'Components/Page/PageContent'; import PageContent from 'Components/Page/PageContent';
import PageContentBody from 'Components/Page/PageContentBody'; import PageContentBody from 'Components/Page/PageContentBody';
@ -166,11 +165,11 @@ class AddNewItem extends Component {
{ {
!isFetching && !error && !items.length && !!term && !isFetching && !error && !items.length && !!term &&
<div className={styles.message}> <div className={styles.message}>
<div className={styles.noResults}>Couldn't find any results for '{term}'</div> <div className={styles.noResults}>
{translate('CouldntFindAnyResultsForTerm', [term])}
</div>
<div> <div>
You can also search using the {translate('YouCanAlsoSearch')}
<Link to="https://musicbrainz.org/search"> MusicBrainz ID </Link>
of an artist or release group e.g. lidarr:cc197bad-dc9c-440d-a5b5-d52ba2e14234
</div> </div>
</div> </div>
} }
@ -178,11 +177,11 @@ class AddNewItem extends Component {
{ {
!term && !term &&
<div className={styles.message}> <div className={styles.message}>
<div className={styles.helpText}>It's easy to add a new artist, just start typing the name of the artist you want to add.</div> <div className={styles.helpText}>
{translate('ItsEasyToAddANewArtistJustStartTypingTheNameOfTheArtistYouWantToAdd')}
</div>
<div> <div>
You can also search using the {translate('YouCanAlsoSearchArtist')}
<Link to="https://musicbrainz.org/search"> MusicBrainz ID </Link>
of an artist e.g. lidarr:cc197bad-dc9c-440d-a5b5-d52ba2e14234
</div> </div>
</div> </div>
} }

View File

@ -51,9 +51,15 @@ class RemotePathMappings extends Component {
{...otherProps} {...otherProps}
> >
<div className={styles.remotePathMappingsHeader}> <div className={styles.remotePathMappingsHeader}>
<div className={styles.host}>Host</div> <div className={styles.host}>
<div className={styles.path}>Remote Path</div> {translate('Host')}
<div className={styles.path}>Local Path</div> </div>
<div className={styles.path}>
{translate('RemotePath')}
</div>
<div className={styles.path}>
{translate('LocalPath')}
</div>
</div> </div>
<div> <div>

View File

@ -51,8 +51,12 @@ class ImportListExclusions extends Component {
{...otherProps} {...otherProps}
> >
<div className={styles.importListExclusionsHeader}> <div className={styles.importListExclusionsHeader}>
<div className={styles.host}>Name</div> <div className={styles.host}>
<div className={styles.path}>Foreign Id</div> {translate('Name')}
</div>
<div className={styles.path}>
{translate('ForeignId')}
</div>
</div> </div>
<div> <div>

View File

@ -28,17 +28,17 @@ function ImportListMonitoringOptionsPopoverContent() {
<DescriptionList> <DescriptionList>
<DescriptionListItem <DescriptionListItem
title={translate('None')} title={translate('None')}
data="Do not monitor artists or albums" data={translate('MonitorNoAlbumsDataText')}
/> />
<DescriptionListItem <DescriptionListItem
title={translate('SpecificAlbum')} title={translate('SpecificAlbum')}
data="Monitor artists but only monitor albums explicitly included in the list" data={translate('MonitorSpecifcAlbumDataText')}
/> />
<DescriptionListItem <DescriptionListItem
title={translate('AllArtistAlbums')} title={translate('AllArtistAlbums')}
data="Monitor artists and all albums for each artist included on the import list" data={translate('MonitorAllArtistAlbumsDataText')}
/> />
</DescriptionList> </DescriptionList>
); );
@ -89,7 +89,7 @@ function EditImportListModalContent(props) {
return ( return (
<ModalContent onModalClose={onModalClose}> <ModalContent onModalClose={onModalClose}>
<ModalHeader> <ModalHeader>
{id ? 'Edit List' : 'Add List'} {id ? translate('EditList') : translate('AddList')}
</ModalHeader> </ModalHeader>
<ModalBody> <ModalBody>
@ -148,7 +148,7 @@ function EditImportListModalContent(props) {
<FormGroup> <FormGroup>
<FormLabel> <FormLabel>
Monitor {translate('Monitor')}
<Popover <Popover
anchor={ anchor={
@ -318,7 +318,7 @@ function EditImportListModalContent(props) {
kind={kinds.DANGER} kind={kinds.DANGER}
onPress={onDeleteImportListPress} onPress={onDeleteImportListPress}
> >
Delete {translate('Delete')}
</Button> </Button>
} }
@ -327,13 +327,13 @@ function EditImportListModalContent(props) {
error={saveError} error={saveError}
onPress={onTestPress} onPress={onTestPress}
> >
Test {translate('Test')}
</SpinnerErrorButton> </SpinnerErrorButton>
<Button <Button
onPress={onModalClose} onPress={onModalClose}
> >
Cancel {translate('Cancel')}
</Button> </Button>
<SpinnerErrorButton <SpinnerErrorButton
@ -341,7 +341,7 @@ function EditImportListModalContent(props) {
error={saveError} error={saveError}
onPress={onSavePress} onPress={onSavePress}
> >
Save {translate('Save')}
</SpinnerErrorButton> </SpinnerErrorButton>
</ModalFooter> </ModalFooter>
</ModalContent> </ModalContent>

View File

@ -168,12 +168,12 @@ function EditIndexerModalContent(props) {
advancedSettings={advancedSettings} advancedSettings={advancedSettings}
isAdvanced={true} isAdvanced={true}
> >
<FormLabel>DownloadClient</FormLabel> <FormLabel>{translate('DownloadClient')}</FormLabel>
<FormInputGroup <FormInputGroup
type={inputTypes.DOWNLOAD_CLIENT_SELECT} type={inputTypes.DOWNLOAD_CLIENT_SELECT}
name="downloadClientId" name="downloadClientId"
helpText={'Specify which download client is used for grabs from this indexer'} helpText={translate('IndexerDownloadClientHelpText')}
{...downloadClientId} {...downloadClientId}
includeAny={true} includeAny={true}
protocol={protocol.value} protocol={protocol.value}

View File

@ -15,26 +15,26 @@ import NamingConnector from './Naming/NamingConnector';
import RootFoldersConnector from './RootFolder/RootFoldersConnector'; import RootFoldersConnector from './RootFolder/RootFoldersConnector';
const rescanAfterRefreshOptions = [ const rescanAfterRefreshOptions = [
{ key: 'always', value: 'Always' }, { key: 'always', value: translate('Always') },
{ key: 'afterManual', value: 'After Manual Refresh' }, { key: 'afterManual', value: translate('AfterManualRefresh') },
{ key: 'never', value: 'Never' } { key: 'never', value: translate('Never') }
]; ];
const allowFingerprintingOptions = [ const allowFingerprintingOptions = [
{ key: 'allFiles', value: 'Always' }, { key: 'allFiles', value: translate('Always') },
{ key: 'newFiles', value: 'For new imports only' }, { key: 'newFiles', value: translate('ForNewImportsOnly') },
{ key: 'never', value: 'Never' } { key: 'never', value: translate('Never') }
]; ];
const downloadPropersAndRepacksOptions = [ const downloadPropersAndRepacksOptions = [
{ key: 'preferAndUpgrade', value: 'Prefer and Upgrade' }, { key: 'preferAndUpgrade', value: translate('PreferAndUpgrade') },
{ key: 'doNotUpgrade', value: 'Do not Upgrade Automatically' }, { key: 'doNotUpgrade', value: translate('DoNotUpgradeAutomatically') },
{ key: 'doNotPrefer', value: 'Do not Prefer' } { key: 'doNotPrefer', value: translate('DoNotPrefer') }
]; ];
const fileDateOptions = [ const fileDateOptions = [
{ key: 'none', value: 'None' }, { key: 'none', value: translate('None') },
{ key: 'albumReleaseDate', value: 'Album Release Date' } { key: 'albumReleaseDate', value: translate('AlbumReleaseDate') }
]; ];
class MediaManagement extends Component { class MediaManagement extends Component {
@ -254,7 +254,7 @@ class MediaManagement extends Component {
]} ]}
helpTextWarning={ helpTextWarning={
settings.downloadPropersAndRepacks.value === 'doNotPrefer' ? settings.downloadPropersAndRepacks.value === 'doNotPrefer' ?
'Use preferred words for automatic upgrades to propers/repacks' : translate('DownloadPropersAndRepacksHelpTextWarning') :
undefined undefined
} }
values={downloadPropersAndRepacksOptions} values={downloadPropersAndRepacksOptions}

View File

@ -216,14 +216,14 @@ function EditRootFolderModalContent(props) {
kind={kinds.DANGER} kind={kinds.DANGER}
onPress={onDeleteRootFolderPress} onPress={onDeleteRootFolderPress}
> >
Delete {translate('Delete')}
</Button> </Button>
} }
<Button <Button
onPress={onModalClose} onPress={onModalClose}
> >
Cancel {translate('Cancel')}
</Button> </Button>
<SpinnerErrorButton <SpinnerErrorButton
@ -231,7 +231,7 @@ function EditRootFolderModalContent(props) {
error={saveError} error={saveError}
onPress={onSavePress} onPress={onSavePress}
> >
Save {translate('Save')}
</SpinnerErrorButton> </SpinnerErrorButton>
</ModalFooter> </ModalFooter>
</ModalContent> </ModalContent>

View File

@ -82,10 +82,18 @@ class DelayProfiles extends Component {
> >
<div> <div>
<div className={styles.delayProfilesHeader}> <div className={styles.delayProfilesHeader}>
<div className={styles.column}>Protocol</div> <div className={styles.column}>
<div className={styles.column}>Usenet Delay</div> {translate('Protocol')}
<div className={styles.column}>Torrent Delay</div> </div>
<div className={styles.tags}>Tags</div> <div className={styles.column}>
{translate('UsenetDelay')}
</div>
<div className={styles.column}>
{translate('TorrentDelay')}
</div>
<div className={styles.tags}>
{translate('Tags')}
</div>
</div> </div>
<div className={styles.delayProfiles}> <div className={styles.delayProfiles}>

View File

@ -25,9 +25,15 @@ class QualityDefinitions extends Component {
{...otherProps} {...otherProps}
> >
<div className={styles.header}> <div className={styles.header}>
<div className={styles.quality}>Quality</div> <div className={styles.quality}>
<div className={styles.title}>Title</div> {translate('Quality')}
<div className={styles.sizeLimit}>Size Limit</div> </div>
<div className={styles.title}>
{translate('Title')}
</div>
<div className={styles.sizeLimit}>
{translate('SizeLimit')}
</div>
{ {
advancedSettings ? advancedSettings ?
<div className={styles.kilobitsPerSecond}> <div className={styles.kilobitsPerSecond}>

View File

@ -8,20 +8,22 @@
"AddedArtistSettings": "Added Artist Settings", "AddedArtistSettings": "Added Artist Settings",
"AddImportListExclusionHelpText": "Prevent artist from being added to Lidarr by Import lists", "AddImportListExclusionHelpText": "Prevent artist from being added to Lidarr by Import lists",
"AddingTag": "Adding tag", "AddingTag": "Adding tag",
"AddList": "Add List",
"AddListExclusion": "Add List Exclusion", "AddListExclusion": "Add List Exclusion",
"AddMissing": "Add missing", "AddMissing": "Add Missing",
"AddNewItem": "Add New Item", "AddNewItem": "Add New Item",
"AdvancedSettingsHiddenClickToShow": "Hidden, click to show", "AdvancedSettingsHiddenClickToShow": "Hidden, click to show",
"AdvancedSettingsShownClickToHide": "Shown, click to hide", "AdvancedSettingsShownClickToHide": "Shown, click to hide",
"AfterManualRefresh": "After Manual Refresh",
"AgeWhenGrabbed": "Age (when grabbed)", "AgeWhenGrabbed": "Age (when grabbed)",
"Album": "Album", "Album": "Album",
"AlbumHasNotAired": "Album has not aired", "AlbumHasNotAired": "Album has not aired",
"AlbumIsDownloading": "Album is downloading", "AlbumIsDownloading": "Album is downloading",
"AlbumIsDownloadingInterp": "Album is downloading - {0}% {1}", "AlbumIsDownloadingInterp": "Album is downloading - {0}% {1}",
"AlbumIsNotMonitored": "Album is not monitored", "AlbumIsNotMonitored": "Album is not monitored",
"AlbumReleaseDate": "Album Release Date",
"AlbumStudio": "Album Studio", "AlbumStudio": "Album Studio",
"AllAlbums": "All Albums", "AllAlbums": "All Albums",
"AllAlbumsData": "Monitor all albums except specials",
"AllArtistAlbums": "All Artist Albums", "AllArtistAlbums": "All Artist Albums",
"AllExpandedCollapseAll": "Collapse All", "AllExpandedCollapseAll": "Collapse All",
"AllExpandedExpandAll": "Expand All", "AllExpandedExpandAll": "Expand All",
@ -33,17 +35,19 @@
"AlternateTitles": "Alternate Titles", "AlternateTitles": "Alternate Titles",
"AlternateTitleslength1Title": "Title", "AlternateTitleslength1Title": "Title",
"AlternateTitleslength1Titles": "Titles", "AlternateTitleslength1Titles": "Titles",
"Always": "Always",
"Analytics": "Analytics", "Analytics": "Analytics",
"AnalyticsEnabledHelpText": "Send anonymous usage and error information to Lidarr's servers. This includes information on your browser, which Lidarr WebUI pages you use, error reporting as well as OS and runtime version. We will use this information to prioritize features and bug fixes.", "AnalyticsEnabledHelpText": "Send anonymous usage and error information to Lidarr's servers. This includes information on your browser, which Lidarr WebUI pages you use, error reporting as well as OS and runtime version. We will use this information to prioritize features and bug fixes.",
"AnalyticsEnabledHelpTextWarning": "Requires restart to take effect", "AnalyticsEnabledHelpTextWarning": "Requires restart to take effect",
"AnchorTooltip": "This file is already in your library for a release you are currently importing", "AnchorTooltip": "This file is already in your library for a release you are currently importing",
"AnyReleaseOkHelpText": "Lidarr will automatically switch to the release best matching downloaded tracks", "AnyReleaseOkHelpText": "Lidarr will automatically switch to the release best matching downloaded tracks",
"ApiKey": "API Key",
"APIKey": "API Key", "APIKey": "API Key",
"ApiKeyHelpTextWarning": "Requires restart to take effect", "ApiKeyHelpTextWarning": "Requires restart to take effect",
"AppDataDirectory": "AppData directory", "AppDataDirectory": "AppData directory",
"ApplyTags": "Apply Tags", "ApplyTags": "Apply Tags",
"ApplyTagsHelpTexts1": "How to apply tags to the selected artist", "ApplyTagsHelpTexts1": "How to apply tags to the selected artist",
"ApplyTagsHelpTexts2": "Add: Add the tags the existing list of tags", "ApplyTagsHelpTexts2": "Add: Add the tags to the existing list of tags",
"ApplyTagsHelpTexts3": "Remove: Remove the entered tags", "ApplyTagsHelpTexts3": "Remove: Remove the entered tags",
"ApplyTagsHelpTexts4": "Replace: Replace the tags with the entered tags (enter no tags to clear all tags)", "ApplyTagsHelpTexts4": "Replace: Replace the tags with the entered tags (enter no tags to clear all tags)",
"Artist": "Artist", "Artist": "Artist",
@ -104,6 +108,7 @@
"ContinuingNoAdditionalAlbumsAreExpected": "No additional albums are expected", "ContinuingNoAdditionalAlbumsAreExpected": "No additional albums are expected",
"CopyUsingHardlinksHelpText": "Use Hardlinks when trying to copy files from torrents that are still being seeded", "CopyUsingHardlinksHelpText": "Use Hardlinks when trying to copy files from torrents that are still being seeded",
"CopyUsingHardlinksHelpTextWarning": "Occasionally, file locks may prevent renaming files that are being seeded. You may temporarily disable seeding and use Lidarr's rename function as a work around.", "CopyUsingHardlinksHelpTextWarning": "Occasionally, file locks may prevent renaming files that are being seeded. You may temporarily disable seeding and use Lidarr's rename function as a work around.",
"CouldntFindAnyResultsForTerm": "Couldn't find any results for term '{0}'",
"Country": "Country", "Country": "Country",
"CreateEmptyArtistFolders": "Create empty artist folders", "CreateEmptyArtistFolders": "Create empty artist folders",
"CreateEmptyArtistFoldersHelpText": "Create missing artist folders during disk scan", "CreateEmptyArtistFoldersHelpText": "Create missing artist folders during disk scan",
@ -154,24 +159,29 @@
"DeleteTrackFileMessageText": "Are you sure you want to delete {0}?", "DeleteTrackFileMessageText": "Are you sure you want to delete {0}?",
"DestinationPath": "Destination Path", "DestinationPath": "Destination Path",
"DetailedProgressBar": "Detailed Progress Bar", "DetailedProgressBar": "Detailed Progress Bar",
"DetailedProgressBarHelpText": "Show text on progess bar", "DetailedProgressBarHelpText": "Show text on progress bar",
"Disambiguation": "Disambiguation", "Disambiguation": "Disambiguation",
"DiscCount": "Disc Count", "DiscCount": "Disc Count",
"DiscNumber": "Disc Number", "DiscNumber": "Disc Number",
"DiskSpace": "Disk Space", "DiskSpace": "Disk Space",
"Docker": "Docker", "Docker": "Docker",
"DoNotPrefer": "Do Not Prefer",
"DoNotUpgradeAutomatically": "Do not Upgrade Automatically",
"DownloadClient": "Download Client", "DownloadClient": "Download Client",
"DownloadClients": "Download Clients", "DownloadClients": "Download Clients",
"DownloadClientSettings": "Download Client Settings", "DownloadClientSettings": "Download Client Settings",
"Downloaded": "Downloaded",
"DownloadFailedCheckDownloadClientForMoreDetails": "Download failed: check download client for more details", "DownloadFailedCheckDownloadClientForMoreDetails": "Download failed: check download client for more details",
"DownloadFailedInterp": "Download failed: {0}", "DownloadFailedInterp": "Download failed: {0}",
"Downloading": "Downloading", "Downloading": "Downloading",
"DownloadPropersAndRepacksHelpTexts1": "Whether or not to automatically upgrade to Propers/Repacks", "DownloadPropersAndRepacksHelpTexts1": "Whether or not to automatically upgrade to Propers/Repacks",
"DownloadPropersAndRepacksHelpTexts2": "Use 'Do not Prefer' to sort by preferred word score over propers/repacks", "DownloadPropersAndRepacksHelpTexts2": "Use 'Do not Prefer' to sort by preferred word score over propers/repacks",
"DownloadPropersAndRepacksHelpTextWarning": "Use Preferred words in Release Profiles for automatic upgrades to Propers/Repacks",
"DownloadWarningCheckDownloadClientForMoreDetails": "Download warning: check download client for more details", "DownloadWarningCheckDownloadClientForMoreDetails": "Download warning: check download client for more details",
"Duration": "Duration", "Duration": "Duration",
"Edit": "Edit", "Edit": "Edit",
"EditArtist": "Edit Artist", "EditArtist": "Edit Artist",
"EditList": "Edit List",
"Enable": "Enable", "Enable": "Enable",
"EnableAutomaticAdd": "Enable Automatic Add", "EnableAutomaticAdd": "Enable Automatic Add",
"EnableAutomaticAddHelpText": "Add artist/albums to Lidarr when syncs are performed via the UI or by Lidarr", "EnableAutomaticAddHelpText": "Add artist/albums to Lidarr when syncs are performed via the UI or by Lidarr",
@ -179,7 +189,7 @@
"EnableColorImpairedMode": "Enable Color-Impaired Mode", "EnableColorImpairedMode": "Enable Color-Impaired Mode",
"EnableColorImpairedModeHelpText": "Altered style to allow color-impaired users to better distinguish color coded information", "EnableColorImpairedModeHelpText": "Altered style to allow color-impaired users to better distinguish color coded information",
"EnableCompletedDownloadHandlingHelpText": "Automatically import completed downloads from download client", "EnableCompletedDownloadHandlingHelpText": "Automatically import completed downloads from download client",
"EnabledHelpText": "Check to enable release profile", "EnabledHelpText": "Enable this list for use in Radarr",
"EnableHelpText": "Enable metadata file creation for this metadata type", "EnableHelpText": "Enable metadata file creation for this metadata type",
"EnableInteractiveSearch": "Enable Interactive Search", "EnableInteractiveSearch": "Enable Interactive Search",
"EnableProfile": "Enable Profile", "EnableProfile": "Enable Profile",
@ -195,7 +205,6 @@
"ErrorLoadingPreviews": "Error loading previews", "ErrorLoadingPreviews": "Error loading previews",
"Exception": "Exception", "Exception": "Exception",
"ExistingAlbums": "Existing Albums", "ExistingAlbums": "Existing Albums",
"ExistingAlbumsData": "Monitor albums that have files or have not released yet",
"ExistingTagsScrubbed": "Existing tags scrubbed", "ExistingTagsScrubbed": "Existing tags scrubbed",
"ExpandAlbumByDefaultHelpText": "Albums", "ExpandAlbumByDefaultHelpText": "Albums",
"ExpandBroadcastByDefaultHelpText": "Broadcast", "ExpandBroadcastByDefaultHelpText": "Broadcast",
@ -204,25 +213,27 @@
"ExpandOtherByDefaultHelpText": "Other", "ExpandOtherByDefaultHelpText": "Other",
"ExpandSingleByDefaultHelpText": "Singles", "ExpandSingleByDefaultHelpText": "Singles",
"ExtraFileExtensionsHelpTexts1": "Comma separated list of extra files to import (.nfo will be imported as .nfo-orig)", "ExtraFileExtensionsHelpTexts1": "Comma separated list of extra files to import (.nfo will be imported as .nfo-orig)",
"ExtraFileExtensionsHelpTexts2": "\"Examples: \".sub", "ExtraFileExtensionsHelpTexts2": "Examples: '.sub, .nfo' or 'sub,nfo'",
"FailedDownloadHandling": "Failed Download Handling",
"FileDateHelpText": "Change file date on import/rescan", "FileDateHelpText": "Change file date on import/rescan",
"FileManagement": "File Management", "FileManagement": "File Management",
"Filename": "Filename", "Filename": "Filename",
"FileNames": "File Names", "FileNames": "File Names",
"Files": "Files", "Files": "Files",
"FilterPlaceHolder": "Filter artist", "FilterPlaceHolder": "Filter artist",
"Filters": "Filters",
"FirstAlbum": "First Album", "FirstAlbum": "First Album",
"FirstAlbumData": "Monitor the first albums. All other albums will be ignored",
"FirstDayOfWeek": "First Day of Week", "FirstDayOfWeek": "First Day of Week",
"Fixed": "Fixed", "Fixed": "Fixed",
"Folder": "Folder", "Folder": "Folder",
"Folders": "Folders", "Folders": "Folders",
"ForeignId": "Foreign Id",
"ForeignIdHelpText": "The Musicbrainz Id of the artist/album to exclude", "ForeignIdHelpText": "The Musicbrainz Id of the artist/album to exclude",
"ForMoreInformationOnTheIndividualDownloadClientsClickOnTheInfoButtons": "For more information on the individual download clients, click the more info buttons.", "ForMoreInformationOnTheIndividualDownloadClientsClickOnTheInfoButtons": "For more information on the individual download clients, click the more info buttons.",
"ForMoreInformationOnTheIndividualIndexersClickOnTheInfoButtons": "For more information on the individual indexers, click on the info buttons.", "ForMoreInformationOnTheIndividualIndexersClickOnTheInfoButtons": "For more information on the individual indexers, click on the info buttons.",
"ForMoreInformationOnTheIndividualListsClickOnTheInfoButtons": "For more information on the individual lists, click on the info buttons.", "ForMoreInformationOnTheIndividualListsClickOnTheInfoButtons": "For more information on the individual lists, click on the info buttons.",
"ForNewImportsOnly": "For new imports only",
"FutureAlbums": "Future Albums", "FutureAlbums": "Future Albums",
"FutureAlbumsData": "Monitor albums that have not released yet",
"FutureDays": "Future Days", "FutureDays": "Future Days",
"FutureDaysHelpText": "Days for iCal feed to look into the future", "FutureDaysHelpText": "Days for iCal feed to look into the future",
"GeneralSettings": "General Settings", "GeneralSettings": "General Settings",
@ -246,12 +257,13 @@
"Hostname": "Hostname", "Hostname": "Hostname",
"ICalFeed": "iCal Feed", "ICalFeed": "iCal Feed",
"ICalHttpUrlHelpText": "Copy this URL to your client(s) or click to subscribe if your browser supports webcal", "ICalHttpUrlHelpText": "Copy this URL to your client(s) or click to subscribe if your browser supports webcal",
"iCalLink": "iCal Link",
"ICalLink": "iCal Link", "ICalLink": "iCal Link",
"IconForCutoffUnmet": "Icon for Cutoff Unmet", "IconForCutoffUnmet": "Icon for Cutoff Unmet",
"IconTooltip": "Scheduled", "IconTooltip": "Scheduled",
"IfYouDontAddAnImportListExclusionAndTheArtistHasAMetadataProfileOtherThanNoneThenThisAlbumMayBeReaddedDuringTheNextArtistRefresh": "If you don't add an import list exclusion and the artist has a metadata profile other than 'None' then this album may be re-added during the next artist refresh.", "IfYouDontAddAnImportListExclusionAndTheArtistHasAMetadataProfileOtherThanNoneThenThisAlbumMayBeReaddedDuringTheNextArtistRefresh": "If you don't add an import list exclusion and the artist has a metadata profile other than 'None' then this album may be re-added during the next artist refresh.",
"IgnoredAddresses": "Ignored Addresses", "IgnoredAddresses": "Ignored Addresses",
"IgnoredHelpText": "The release will be rejected if it contains one or more of terms (case insensitive)", "IgnoredHelpText": "The release will be rejected if it contains one or more of the terms (case insensitive)",
"IgnoredPlaceHolder": "Add new restriction", "IgnoredPlaceHolder": "Add new restriction",
"IllRestartLater": "I'll restart later", "IllRestartLater": "I'll restart later",
"ImportedTo": "Imported To", "ImportedTo": "Imported To",
@ -269,6 +281,7 @@
"IncludeUnknownArtistItemsHelpText": "Show items without a artist in the queue, this could include removed artists, movies or anything else in Lidarr's category", "IncludeUnknownArtistItemsHelpText": "Show items without a artist in the queue, this could include removed artists, movies or anything else in Lidarr's category",
"IncludeUnmonitored": "Include Unmonitored", "IncludeUnmonitored": "Include Unmonitored",
"Indexer": "Indexer", "Indexer": "Indexer",
"IndexerDownloadClientHelpText": "Specify which download client is used for grabs from this indexer",
"IndexerIdHelpText": "Specify what indexer the profile applies to", "IndexerIdHelpText": "Specify what indexer the profile applies to",
"IndexerIdHelpTextWarning": "Using a specific indexer with preferred words can lead to duplicate releases being grabbed", "IndexerIdHelpTextWarning": "Using a specific indexer with preferred words can lead to duplicate releases being grabbed",
"IndexerIdvalue0IncludeInPreferredWordsRenamingFormat": "Include in {Preferred Words} renaming format", "IndexerIdvalue0IncludeInPreferredWordsRenamingFormat": "Include in {Preferred Words} renaming format",
@ -293,13 +306,12 @@
"IsShowingMonitoredMonitorSelected": "Monitor Selected", "IsShowingMonitoredMonitorSelected": "Monitor Selected",
"IsShowingMonitoredUnmonitorSelected": "Unmonitor Selected", "IsShowingMonitoredUnmonitorSelected": "Unmonitor Selected",
"IsTagUsedCannotBeDeletedWhileInUse": "Cannot be deleted while in use", "IsTagUsedCannotBeDeletedWhileInUse": "Cannot be deleted while in use",
"ItsEasyToAddANewArtistJustStartTypingTheNameOfTheArtistYouWantToAdd": "It's easy to add a new artist, just start typing the name of the artist you want to add.",
"Label": "Label", "Label": "Label",
"Language": "Language", "Language": "Language",
"LatestAlbum": "Latest Album", "LatestAlbum": "Latest Album",
"LatestAlbumData": "Monitor the latest albums and future albums",
"LaunchBrowserHelpText": " Open a web browser and navigate to Lidarr homepage on app start.", "LaunchBrowserHelpText": " Open a web browser and navigate to Lidarr homepage on app start.",
"Level": "Level", "Level": "Level",
"Lidarr": "Lidarr",
"LidarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Lidarr supports many popular torrent and usenet download clients.", "LidarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Lidarr supports many popular torrent and usenet download clients.",
"LidarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Lidarr supports any indexer that uses the Newznab standard, as well as other indexers listed below.", "LidarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Lidarr supports any indexer that uses the Newznab standard, as well as other indexers listed below.",
"LidarrSupportsMultipleListsForImportingAlbumsAndArtistsIntoTheDatabase": "Lidarr supports multiple lists for importing Albums and Artists into the database.", "LidarrSupportsMultipleListsForImportingAlbumsAndArtistsIntoTheDatabase": "Lidarr supports multiple lists for importing Albums and Artists into the database.",
@ -321,11 +333,11 @@
"ManualImport": "Manual Import", "ManualImport": "Manual Import",
"MarkAsFailed": "Mark as Failed", "MarkAsFailed": "Mark as Failed",
"MarkAsFailedMessageText": "Are you sure you want to mark '{0}' as failed?", "MarkAsFailedMessageText": "Are you sure you want to mark '{0}' as failed?",
"MassAlbumsSearchWarning": "Are you sure you want to search for all '{0}' missing albums?",
"MassAlbumsCutoffUnmetWarning": "Are you sure you want to search for all '{0}' Cutoff Unmet albums?", "MassAlbumsCutoffUnmetWarning": "Are you sure you want to search for all '{0}' Cutoff Unmet albums?",
"MassAlbumsSearchWarning": "Are you sure you want to search for all '{0}' missing albums?",
"MaximumLimits": "Maximum Limits", "MaximumLimits": "Maximum Limits",
"MaximumSize": "Maximum Size", "MaximumSize": "Maximum Size",
"MaximumSizeHelpText": "Maximum size for a release to be grabbed in MB. Set to zero to set to unlimited.", "MaximumSizeHelpText": "Maximum size for a release to be grabbed in MB. Set to zero to set to unlimited",
"Mechanism": "Mechanism", "Mechanism": "Mechanism",
"MediaInfo": "Media Info", "MediaInfo": "Media Info",
"MediaManagementSettings": "Media Management Settings", "MediaManagementSettings": "Media Management Settings",
@ -348,19 +360,32 @@
"MinimumLimits": "Minimum Limits", "MinimumLimits": "Minimum Limits",
"Missing": "Missing", "Missing": "Missing",
"MissingAlbums": "Missing Albums", "MissingAlbums": "Missing Albums",
"MissingAlbumsData": "Monitor albums that do not have files or have not released yet",
"MissingTracksArtistMonitored": "Missing Tracks (Artist monitored)", "MissingTracksArtistMonitored": "Missing Tracks (Artist monitored)",
"MissingTracksArtistNotMonitored": "Missing Tracks (Artist not monitored)", "MissingTracksArtistNotMonitored": "Missing Tracks (Artist not monitored)",
"Mode": "Mode", "Mode": "Mode",
"Monitor": "Monitor",
"MonitorAlbum": "Monitor Album",
"MonitorAlbumExistingOnlyWarning": "This is a one off adjustment of the monitored setting for each album. Use the option under Artist/Edit to control what happens for newly added albums", "MonitorAlbumExistingOnlyWarning": "This is a one off adjustment of the monitored setting for each album. Use the option under Artist/Edit to control what happens for newly added albums",
"MonitorAllAlbumsData": "Monitor all albums except specials",
"MonitorAllArtistAlbumsDataText": "Monitor artists and all albums for each artist included on the import list",
"MonitorArtist": "Monitor Artist", "MonitorArtist": "Monitor Artist",
"Monitored": "Monitored", "Monitored": "Monitored",
"MonitoredHelpText": "Download monitored albums from this artist", "MonitoredHelpText": "Download monitored albums from this artist",
"MonitorExistingAlbumsData": "Monitor albums that have files or have not released yet",
"MonitorFirstAlbumData": "Monitor the first albums. All other albums will be ignored",
"MonitorFutureAlbumsData": "Monitor albums that have not released yet",
"Monitoring": "Monitoring",
"MonitoringOptions": "Monitoring Options", "MonitoringOptions": "Monitoring Options",
"MonitoringOptionsHelpText": "Which albums should be monitored after the artist is added (one-time adjustment)", "MonitoringOptionsHelpText": "Which albums should be monitored after the artist is added (one-time adjustment)",
"MonitorLatestAlbumData": "Monitor the latest albums and future albums",
"MonitorMissingAlbumsData": "Monitor albums that do not have files or have not released yet",
"MonitorNewAlbumsData": "Monitor new albums released after the newest existing album",
"MonitorNewItems": "Monitor New Albums", "MonitorNewItems": "Monitor New Albums",
"MonitorNewItemsHelpText": "Which new albums should be monitored", "MonitorNewItemsHelpText": "Which new albums should be monitored",
"MonoVersion": "Mono Version", "MonitorNoAlbumsDataText": "Do not monitor artists or albums",
"MonitorNoneData": "No albums will be monitored",
"MonitorOneTimeAdjustmentAlert": "This is a one time adjustment to set which albums are monitored",
"MonitorSpecifcAlbumDataText": "Monitor artists but only monitor albums explicitly included in the list",
"MoreInfo": "More Info", "MoreInfo": "More Info",
"MultiDiscTrackFormat": "Multi Disc Track Format", "MultiDiscTrackFormat": "Multi Disc Track Format",
"MusicBrainzAlbumID": "MusicBrainz Album ID", "MusicBrainzAlbumID": "MusicBrainz Album ID",
@ -374,16 +399,16 @@
"Name": "Name", "Name": "Name",
"NamingSettings": "Naming Settings", "NamingSettings": "Naming Settings",
"NETCore": ".NET", "NETCore": ".NET",
"Never": "Never",
"New": "New", "New": "New",
"NewAlbums": "New Albums", "NewAlbums": "New Albums",
"NoBackupsAreAvailable": "No backups are available", "NoBackupsAreAvailable": "No backups are available",
"NoHistory": "No history.", "NoHistory": "No history",
"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",
"NoMinimumForAnyRuntime": "No minimum for any runtime", "NoMinimumForAnyRuntime": "No minimum for any runtime",
"None": "None", "None": "None",
"NoneData": "No albums will be monitored",
"NoTagsHaveBeenAddedYetAddTagsToLinkArtistsWithDelayProfilesRestrictionsOrNotificationsClickLinkTohttpswikiservarrcomlidarrsettingstagshereLinkToFindOutMoreAboutTagsInLidarr": "No tags have been added yet. Add tags to link artists with delay profiles, restrictions, or notifications. Click <Link to='https://wiki.servarr.com/lidarr/settings#tags'>here</Link> to find out more about tags in Lidarr.", "NoTagsHaveBeenAddedYetAddTagsToLinkArtistsWithDelayProfilesRestrictionsOrNotificationsClickLinkTohttpswikiservarrcomlidarrsettingstagshereLinkToFindOutMoreAboutTagsInLidarr": "No tags have been added yet. Add tags to link artists with delay profiles, restrictions, or notifications. Click <Link to='https://wiki.servarr.com/lidarr/settings#tags'>here</Link> to find out more about tags in Lidarr.",
"NotificationTriggers": "Notification Triggers", "NotificationTriggers": "Notification Triggers",
"NoUpdatesAreAvailable": "No updates are available", "NoUpdatesAreAvailable": "No updates are available",
@ -422,6 +447,7 @@
"Port": "Port", "Port": "Port",
"PortNumber": "Port Number", "PortNumber": "Port Number",
"PosterSize": "Poster Size", "PosterSize": "Poster Size",
"PreferAndUpgrade": "Prefer and Upgrade",
"Preferred": "Preferred", "Preferred": "Preferred",
"PreferredHelpTexts1": "The release will be preferred based on the each term's score (case insensitive)", "PreferredHelpTexts1": "The release will be preferred based on the each term's score (case insensitive)",
"PreferredHelpTexts2": "A positive score will be more preferred", "PreferredHelpTexts2": "A positive score will be more preferred",
@ -436,7 +462,6 @@
"PropersAndRepacks": "Propers and Repacks", "PropersAndRepacks": "Propers and Repacks",
"Protocol": "Protocol", "Protocol": "Protocol",
"ProtocolHelpText": "Choose which protocol(s) to use and which one is preferred when choosing between otherwise equal releases", "ProtocolHelpText": "Choose which protocol(s) to use and which one is preferred when choosing between otherwise equal releases",
"Prowlarr": "Prowlarr",
"Proxy": "Proxy", "Proxy": "Proxy",
"ProxyBypassFilterHelpText": "Use ',' as a separator, and '*.' as a wildcard for subdomains", "ProxyBypassFilterHelpText": "Use ',' as a separator, and '*.' as a wildcard for subdomains",
"ProxyPasswordHelpText": "You only need to enter a username and password if one is required. Leave them blank otherwise.", "ProxyPasswordHelpText": "You only need to enter a username and password if one is required. Leave them blank otherwise.",
@ -450,8 +475,6 @@
"QualityProfiles": "Quality Profiles", "QualityProfiles": "Quality Profiles",
"QualitySettings": "Quality Settings", "QualitySettings": "Quality Settings",
"Queue": "Queue", "Queue": "Queue",
"Radarr": "Radarr",
"Readarr": "Readarr",
"ReadTheWikiForMoreInformation": "Read the Wiki for more information", "ReadTheWikiForMoreInformation": "Read the Wiki for more information",
"Real": "Real", "Real": "Real",
"Reason": "Reason", "Reason": "Reason",
@ -510,6 +533,7 @@
"Restart": "Restart", "Restart": "Restart",
"RestartLidarr": "Restart Lidarr", "RestartLidarr": "Restart Lidarr",
"RestartNow": "Restart Now", "RestartNow": "Restart Now",
"RestartRequiredHelpTextWarning": "Requires restart to take effect",
"Restore": "Restore", "Restore": "Restore",
"RestoreBackup": "Restore Backup", "RestoreBackup": "Restore Backup",
"Result": "Result", "Result": "Result",
@ -522,6 +546,7 @@
"RSSSync": "RSS Sync", "RSSSync": "RSS Sync",
"RSSSyncInterval": "RSS Sync Interval", "RSSSyncInterval": "RSS Sync Interval",
"RssSyncIntervalHelpText": "Interval in minutes. Set to zero to disable (this will stop all automatic release grabbing)", "RssSyncIntervalHelpText": "Interval in minutes. Set to zero to disable (this will stop all automatic release grabbing)",
"Save": "Save",
"SceneInformation": "Scene Information", "SceneInformation": "Scene Information",
"SceneNumberHasntBeenVerifiedYet": "Scene number hasn't been verified yet", "SceneNumberHasntBeenVerifiedYet": "Scene number hasn't been verified yet",
"Scheduled": "Scheduled", "Scheduled": "Scheduled",
@ -550,9 +575,9 @@
"SetPermissionsLinuxHelpTextWarning": "If you're unsure what these settings do, do not alter them.", "SetPermissionsLinuxHelpTextWarning": "If you're unsure what these settings do, do not alter them.",
"Settings": "Settings", "Settings": "Settings",
"ShortDateFormat": "Short Date Format", "ShortDateFormat": "Short Date Format",
"ShouldMonitorHelpText": "Monitor artists and albums added from this list",
"ShouldMonitorExisting": "Monitor existing albums", "ShouldMonitorExisting": "Monitor existing albums",
"ShouldMonitorExistingHelpText": "Automatically monitor albums on this list which are already in Lidarr", "ShouldMonitorExistingHelpText": "Automatically monitor albums on this list which are already in Lidarr",
"ShouldMonitorHelpText": "Monitor artists and albums added from this list",
"ShouldSearch": "Search for New Items", "ShouldSearch": "Search for New Items",
"ShouldSearchHelpText": "Search indexers for newly added items. Use with caution for large lists.", "ShouldSearchHelpText": "Search indexers for newly added items. Use with caution for large lists.",
"ShowAlbumCount": "Show Album Count", "ShowAlbumCount": "Show Album Count",
@ -575,12 +600,12 @@
"ShowSizeOnDisk": "Show Size on Disk", "ShowSizeOnDisk": "Show Size on Disk",
"ShowTitleHelpText": "Show artist name under poster", "ShowTitleHelpText": "Show artist name under poster",
"ShowUnknownArtistItems": "Show Unknown Artist Items", "ShowUnknownArtistItems": "Show Unknown Artist Items",
"Size": " Size", "Size": "Size",
"SizeLimit": "Size Limit",
"SkipFreeSpaceCheck": "Skip Free Space Check", "SkipFreeSpaceCheck": "Skip Free Space Check",
"SkipFreeSpaceCheckWhenImportingHelpText": "Use when Lidarr is unable to detect free space from your artist root folder", "SkipFreeSpaceCheckWhenImportingHelpText": "Use when Lidarr is unable to detect free space from your artist root folder",
"SkipRedownload": "Skip Redownload", "SkipRedownload": "Skip Redownload",
"SkipredownloadHelpText": "Prevents Lidarr from trying download alternative releases for the removed items", "SkipredownloadHelpText": "Prevents Lidarr from trying download alternative releases for the removed items",
"Sonarr": "Sonarr",
"SorryThatAlbumCannotBeFound": "Sorry, that album cannot be found.", "SorryThatAlbumCannotBeFound": "Sorry, that album cannot be found.",
"SorryThatArtistCannotBeFound": "Sorry, that artist cannot be found.", "SorryThatArtistCannotBeFound": "Sorry, that artist cannot be found.",
"Source": "Source", "Source": "Source",
@ -590,6 +615,7 @@
"SslCertPasswordHelpText": "Password for pfx file", "SslCertPasswordHelpText": "Password for pfx file",
"SslCertPasswordHelpTextWarning": "Requires restart to take effect", "SslCertPasswordHelpTextWarning": "Requires restart to take effect",
"SSLCertPath": "SSL Cert Path", "SSLCertPath": "SSL Cert Path",
"SSLCertPathHelpText": "Path to pfx file",
"SslCertPathHelpText": "Path to pfx file", "SslCertPathHelpText": "Path to pfx file",
"SslCertPathHelpTextWarning": "Requires restart to take effect", "SslCertPathHelpTextWarning": "Requires restart to take effect",
"SSLPort": "SSL Port", "SSLPort": "SSL Port",
@ -613,6 +639,7 @@
"Tasks": "Tasks", "Tasks": "Tasks",
"TBA": "TBA", "TBA": "TBA",
"Term": "Term", "Term": "Term",
"Test": "Test",
"TestAll": "Test All", "TestAll": "Test All",
"TestAllClients": "Test All Clients", "TestAllClients": "Test All Clients",
"TestAllIndexers": "Test All Indexers", "TestAllIndexers": "Test All Indexers",
@ -623,6 +650,7 @@
"ThisWillApplyToAllIndexersPleaseFollowTheRulesSetForthByThem": "This will apply to all indexers, please follow the rules set forth by them", "ThisWillApplyToAllIndexersPleaseFollowTheRulesSetForthByThem": "This will apply to all indexers, please follow the rules set forth by them",
"Time": "Time", "Time": "Time",
"TimeFormat": "Time Format", "TimeFormat": "Time Format",
"Title": "Title",
"TorrentDelay": "Torrent Delay", "TorrentDelay": "Torrent Delay",
"TorrentDelayHelpText": "Delay in minutes to wait before grabbing a torrent", "TorrentDelayHelpText": "Delay in minutes to wait before grabbing a torrent",
"Torrents": "Torrents", "Torrents": "Torrents",
@ -654,13 +682,14 @@
"UnableToAddANewQualityProfilePleaseTryAgain": "Unable to add a new quality profile, please try again.", "UnableToAddANewQualityProfilePleaseTryAgain": "Unable to add a new quality profile, please try again.",
"UnableToAddANewRemotePathMappingPleaseTryAgain": "Unable to add a new remote path mapping, please try again.", "UnableToAddANewRemotePathMappingPleaseTryAgain": "Unable to add a new remote path mapping, please try again.",
"UnableToAddANewRootFolderPleaseTryAgain": "Unable to add a new root folder, please try again.", "UnableToAddANewRootFolderPleaseTryAgain": "Unable to add a new root folder, please try again.",
"UnableToImportCheckLogs": "Downloaded - Unable to Import: check logs for details",
"UnableToLoadBackups": "Unable to load backups", "UnableToLoadBackups": "Unable to load backups",
"UnableToLoadBlocklist": "Unable to load blocklist", "UnableToLoadBlocklist": "Unable to load blocklist",
"UnableToLoadDelayProfiles": "Unable to load Delay Profiles", "UnableToLoadDelayProfiles": "Unable to load Delay Profiles",
"UnableToLoadDownloadClientOptions": "Unable to load download client options", "UnableToLoadDownloadClientOptions": "Unable to load download client options",
"UnableToLoadDownloadClients": "Unable to load download clients", "UnableToLoadDownloadClients": "Unable to load download clients",
"UnableToLoadGeneralSettings": "Unable to load General settings", "UnableToLoadGeneralSettings": "Unable to load General settings",
"UnableToLoadHistory": "Unable to load history.", "UnableToLoadHistory": "Unable to load history",
"UnableToLoadImportListExclusions": "Unable to load Import List Exclusions", "UnableToLoadImportListExclusions": "Unable to load Import List Exclusions",
"UnableToLoadIndexerOptions": "Unable to load indexer options", "UnableToLoadIndexerOptions": "Unable to load indexer options",
"UnableToLoadIndexers": "Unable to load Indexers", "UnableToLoadIndexers": "Unable to load Indexers",
@ -705,11 +734,14 @@
"UsingExternalUpdateMechanismBranchToUseToUpdateLidarr": "Branch to use to update Lidarr", "UsingExternalUpdateMechanismBranchToUseToUpdateLidarr": "Branch to use to update Lidarr",
"UsingExternalUpdateMechanismBranchUsedByExternalUpdateMechanism": "Branch used by external update mechanism", "UsingExternalUpdateMechanismBranchUsedByExternalUpdateMechanism": "Branch used by external update mechanism",
"Version": "Version", "Version": "Version",
"WaitingToImport": "Waiting to Import",
"WatchLibraryForChangesHelpText": "Rescan automatically when files change in a root folder", "WatchLibraryForChangesHelpText": "Rescan automatically when files change in a root folder",
"WatchRootFoldersForFileChanges": "Watch Root Folders for file changes", "WatchRootFoldersForFileChanges": "Watch Root Folders for file changes",
"WeekColumnHeader": "Week Column Header", "WeekColumnHeader": "Week Column Header",
"WriteAudioTagsHelpTextWarning": "Selecting 'All files' will alter existing files when they are imported.", "WriteAudioTagsHelpTextWarning": "Selecting 'All files' will alter existing files when they are imported.",
"WriteMetadataToAudioFiles": "Write Metadata to Audio Files", "WriteMetadataToAudioFiles": "Write Metadata to Audio Files",
"Year": "Year", "Year": "Year",
"YesCancel": "Yes, Cancel" "YesCancel": "Yes, Cancel",
"YouCanAlsoSearch": "You can also search using the MusicBrainz ID of an artist or release group e.g. `lidarr:cc197bad-dc9c-440d-a5b5-d52ba2e14234`",
"YouCanAlsoSearchArtist": "You can also search using the MusicBrainz ID of an artist e.g. `lidarr:cc197bad-dc9c-440d-a5b5-d52ba2e14234`"
} }