Fixed: Various Translations

This commit is contained in:
bakerboy448
2021-12-30 23:34:48 -06:00
committed by GitHub
parent 66a6311dcc
commit 0dbd23c52b
13 changed files with 45 additions and 68 deletions

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

@@ -166,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

@@ -41,7 +41,7 @@ function HistoryDetails(props) {
{ {
!!data && !!data &&
<DescriptionListItem <DescriptionListItem
title={'Query Results'} title={translate('QueryResults')}
data={queryResults ? queryResults : '-'} data={queryResults ? queryResults : '-'}
/> />
} }
@@ -49,7 +49,7 @@ function HistoryDetails(props) {
{ {
!!data && !!data &&
<DescriptionListItem <DescriptionListItem
title={'Categories'} title={translate('Categories')}
data={categories ? categories : '-'} data={categories ? categories : '-'}
/> />
} }
@@ -57,7 +57,7 @@ function HistoryDetails(props) {
{ {
!!data && !!data &&
<DescriptionListItem <DescriptionListItem
title={'Source'} title={translate('Source')}
data={source} data={source}
/> />
} }
@@ -65,7 +65,7 @@ function HistoryDetails(props) {
{ {
!!data && !!data &&
<DescriptionListItem <DescriptionListItem
title={'Url'} title={translate('Url')}
data={url ? <Link to={url}>{translate('Link')}</Link> : '-'} data={url ? <Link to={url}>{translate('Link')}</Link> : '-'}
/> />
} }
@@ -93,7 +93,7 @@ function HistoryDetails(props) {
{ {
!!data && !!data &&
<DescriptionListItem <DescriptionListItem
title={'Source'} title={translate('Source')}
data={source ? source : '-'} data={source ? source : '-'}
/> />
} }
@@ -101,7 +101,7 @@ function HistoryDetails(props) {
{ {
!!data && !!data &&
<DescriptionListItem <DescriptionListItem
title={'Title'} title={translate('Title')}
data={title ? title : '-'} data={title ? title : '-'}
/> />
} }
@@ -109,7 +109,7 @@ function HistoryDetails(props) {
{ {
!!data && !!data &&
<DescriptionListItem <DescriptionListItem
title={'Url'} title={translate('Url')}
data={url ? <Link to={url}>{translate('Link')}</Link> : '-'} data={url ? <Link to={url}>{translate('Link')}</Link> : '-'}
/> />
} }

View File

@@ -4,6 +4,7 @@ import FormGroup from 'Components/Form/FormGroup';
import FormInputGroup from 'Components/Form/FormInputGroup'; import FormInputGroup from 'Components/Form/FormInputGroup';
import FormLabel from 'Components/Form/FormLabel'; import FormLabel from 'Components/Form/FormLabel';
import { inputTypes } from 'Helpers/Props'; import { inputTypes } from 'Helpers/Props';
import translate from 'Utilities/String/translate';
class HistoryOptions extends Component { class HistoryOptions extends Component {
@@ -56,14 +57,14 @@ class HistoryOptions extends Component {
return ( return (
<Fragment> <Fragment>
<FormGroup> <FormGroup>
<FormLabel>History Cleanup</FormLabel> <FormLabel>{translate('HistoryCleanup')}</FormLabel>
<FormInputGroup <FormInputGroup
type={inputTypes.NUMBER} type={inputTypes.NUMBER}
name="historyCleanupDays" name="historyCleanupDays"
value={historyCleanupDays} value={historyCleanupDays}
helpText="Set to 0 to disable automatic cleanup" helpText={translate('HistoryCleanupDaysHelpText')}
helpTextWarning="History items older than the selected number of days will be cleaned up automatically" helpTextWarning={translate('HistoryCleanupDaysHelpTextWarning')}
onChange={this.onGlobalInputChange} onChange={this.onGlobalInputChange}
/> />
</FormGroup> </FormGroup>

View File

@@ -159,7 +159,7 @@ function EditIndexerModalContent(props) {
<FormInputGroup <FormInputGroup
type={inputTypes.TAG} type={inputTypes.TAG}
name="tags" name="tags"
helpText="Use tags to specify default clients, specify Indexer Proxies, or just to organize your indexers." helpText={translate('IndexerTagsHelpText')}
{...tags} {...tags}
onChange={onInputChange} onChange={onInputChange}
/> />

View File

@@ -302,14 +302,14 @@ class IndexerIndex extends Component {
<PageToolbar> <PageToolbar>
<PageToolbarSection> <PageToolbarSection>
<PageToolbarButton <PageToolbarButton
label={'Add Indexer'} label={translate('AddIndexer')}
iconName={icons.ADD} iconName={icons.ADD}
spinningName={icons.ADD} spinningName={icons.ADD}
onPress={this.onAddIndexerPress} onPress={this.onAddIndexerPress}
/> />
<PageToolbarButton <PageToolbarButton
label={'Test All Indexers'} label={translate('TestAllIndexers')}
iconName={icons.TEST} iconName={icons.TEST}
isSpinning={isTestingAll} isSpinning={isTestingAll}
isDisabled={hasNoIndexer} isDisabled={hasNoIndexer}
@@ -321,13 +321,13 @@ class IndexerIndex extends Component {
{ {
isMovieEditorActive ? isMovieEditorActive ?
<PageToolbarButton <PageToolbarButton
label={'Indexers'} label={translate('Indexers')}
iconName={icons.MOVIE_CONTINUING} iconName={icons.MOVIE_CONTINUING}
isDisabled={hasNoIndexer} isDisabled={hasNoIndexer}
onPress={this.onMovieEditorTogglePress} onPress={this.onMovieEditorTogglePress}
/> : /> :
<PageToolbarButton <PageToolbarButton
label={'Mass Editor'} label={translate('MassEditor')}
iconName={icons.EDIT} iconName={icons.EDIT}
isDisabled={hasNoIndexer} isDisabled={hasNoIndexer}
onPress={this.onMovieEditorTogglePress} onPress={this.onMovieEditorTogglePress}

View File

@@ -240,14 +240,14 @@ class IndexerIndexRow extends Component {
> >
<IconButton <IconButton
name={icons.INFO} name={icons.INFO}
title={'Indexer info'} title={translate('IndexerInfo')}
onPress={this.onIndexerInfoPress} onPress={this.onIndexerInfoPress}
/> />
<IconButton <IconButton
className={styles.externalLink} className={styles.externalLink}
name={icons.EXTERNAL_LINK} name={icons.EXTERNAL_LINK}
title={'Website'} title={translate('Website')}
to={indexerUrls[0].replace('api.', '')} to={indexerUrls[0].replace('api.', '')}
/> />

View File

@@ -299,7 +299,7 @@ class SearchIndexRow extends Component {
<IconButton <IconButton
className={styles.downloadLink} className={styles.downloadLink}
name={icons.SAVE} name={icons.SAVE}
title={'Save'} title={translate('Save')}
to={downloadUrl} to={downloadUrl}
/> />
</VirtualTableRowCell> </VirtualTableRowCell>

View File

@@ -61,7 +61,7 @@ class Applications extends Component {
return ( return (
<FieldSet legend={translate('Applications')}> <FieldSet legend={translate('Applications')}>
<PageSectionContent <PageSectionContent
errorMessage="Unable to load application list" errorMessage={translate('UnableToLoadApplicationList')}
{...otherProps} {...otherProps}
> >
<div className={styles.applications}> <div className={styles.applications}>

View File

@@ -61,7 +61,7 @@ class IndexerProxies extends Component {
} = this.state; } = this.state;
return ( return (
<FieldSet legend={translate('Indexer Proxies')}> <FieldSet legend={translate('IndexerProxies')}>
<PageSectionContent <PageSectionContent
errorMessage={translate('UnableToLoadIndexerProxies')} errorMessage={translate('UnableToLoadIndexerProxies')}
{...otherProps} {...otherProps}

View File

@@ -67,7 +67,7 @@ function TagDetailsModalContent(props) {
{ {
!!indexerProxies.length && !!indexerProxies.length &&
<FieldSet legend={translate('Indexer Proxies')}> <FieldSet legend={translate('IndexerProxies')}>
{ {
indexerProxies.map((item) => { indexerProxies.map((item) => {
return ( return (

View File

@@ -199,7 +199,7 @@ class QueuedTaskRow extends Component {
</span> </span>
{ {
clientUserAgent ? clientUserAgent ?
<span className={styles.userAgent} title="User-Agent provided by the app that called the API"> <span className={styles.userAgent} title={translate('UserAgentProvidedByTheAppThatCalledTheAPI')}>
from: {clientUserAgent} from: {clientUserAgent}
</span> : </span> :
null null

View File

@@ -61,6 +61,7 @@
"BypassProxyForLocalAddresses": "Bypass Proxy for Local Addresses", "BypassProxyForLocalAddresses": "Bypass Proxy for Local Addresses",
"Cancel": "Cancel", "Cancel": "Cancel",
"CancelPendingTask": "Are you sure you want to cancel this pending task?", "CancelPendingTask": "Are you sure you want to cancel this pending task?",
"Categories": "Categories",
"Category": "Category", "Category": "Category",
"CertificateValidation": "Certificate Validation", "CertificateValidation": "Certificate Validation",
"CertificateValidationHelpText": "Change how strict HTTPS certification validation is", "CertificateValidationHelpText": "Change how strict HTTPS certification validation is",
@@ -69,7 +70,6 @@
"ClearHistory": "Clear History", "ClearHistory": "Clear History",
"ClearHistoryMessageText": "Are you sure you want to clear all Prowlarr history?", "ClearHistoryMessageText": "Are you sure you want to clear all Prowlarr history?",
"ClientPriority": "Client Priority", "ClientPriority": "Client Priority",
"CloneIndexer": "Clone Indexer",
"CloneProfile": "Clone Profile", "CloneProfile": "Clone Profile",
"Close": "Close", "Close": "Close",
"CloseCurrentModal": "Close Current Modal", "CloseCurrentModal": "Close Current Modal",
@@ -88,7 +88,6 @@
"Date": "Date", "Date": "Date",
"Dates": "Dates", "Dates": "Dates",
"DBMigration": "DB Migration", "DBMigration": "DB Migration",
"DelayProfile": "Delay Profile",
"Delete": "Delete", "Delete": "Delete",
"DeleteApplication": "Delete Application", "DeleteApplication": "Delete Application",
"DeleteApplicationMessageText": "Are you sure you want to delete the application '{0}'?", "DeleteApplicationMessageText": "Are you sure you want to delete the application '{0}'?",
@@ -97,8 +96,6 @@
"DeleteBackupMessageText": "Are you sure you want to delete the backup '{0}'?", "DeleteBackupMessageText": "Are you sure you want to delete the backup '{0}'?",
"DeleteDownloadClient": "Delete Download Client", "DeleteDownloadClient": "Delete Download Client",
"DeleteDownloadClientMessageText": "Are you sure you want to delete the download client '{0}'?", "DeleteDownloadClientMessageText": "Are you sure you want to delete the download client '{0}'?",
"DeleteIndexer": "Delete Indexer",
"DeleteIndexerMessageText": "Are you sure you want to delete the indexer '{0}'?",
"DeleteIndexerProxy": "Delete Indexer Proxy", "DeleteIndexerProxy": "Delete Indexer Proxy",
"DeleteIndexerProxyMessageText": "Are you sure you want to delete the proxy '{0}'?", "DeleteIndexerProxyMessageText": "Are you sure you want to delete the proxy '{0}'?",
"DeleteNotification": "Delete Notification", "DeleteNotification": "Delete Notification",
@@ -113,35 +110,21 @@
"Docker": "Docker", "Docker": "Docker",
"Donations": "Donations", "Donations": "Donations",
"DownloadClient": "Download Client", "DownloadClient": "Download Client",
"DownloadClientCheckNoneAvailableMessage": "No download client is available",
"DownloadClientCheckUnableToCommunicateMessage": "Unable to communicate with {0}.",
"DownloadClients": "Download Clients", "DownloadClients": "Download Clients",
"DownloadClientSettings": "Download Client Settings", "DownloadClientSettings": "Download Client Settings",
"DownloadClientsSettingsSummary": "Download clients configuration for integration into Prowlarr UI search", "DownloadClientsSettingsSummary": "Download clients configuration for integration into Prowlarr UI search",
"DownloadClientStatusCheckAllClientMessage": "All download clients are unavailable due to failures", "DownloadClientStatusCheckAllClientMessage": "All download clients are unavailable due to failures",
"DownloadClientStatusCheckSingleClientMessage": "Download clients unavailable due to failures: {0}", "DownloadClientStatusCheckSingleClientMessage": "Download clients unavailable due to failures: {0}",
"DownloadClientUnavailable": "Download client is unavailable",
"Downloading": "Downloading",
"Edit": "Edit", "Edit": "Edit",
"EditAppProfile": "Edit App Profile", "EditAppProfile": "Edit App Profile",
"EditIndexer": "Edit Indexer", "EditIndexer": "Edit Indexer",
"Enable": "Enable", "Enable": "Enable",
"EnableAutoHelpText": "If enabled, Movies will be automatically added to Prowlarr from this list",
"EnableAutomaticAdd": "Enable Automatic Add",
"EnableAutomaticSearch": "Enable Automatic Search", "EnableAutomaticSearch": "Enable Automatic Search",
"EnableAutomaticSearchHelpText": "Will be used when automatic searches are performed via the UI or by Prowlarr", "EnableAutomaticSearchHelpText": "Will be used when automatic searches are performed via the UI or by Prowlarr",
"EnableAutomaticSearchHelpTextWarning": "Will be used when interactive search is used",
"EnableColorImpairedMode": "Enable Color-Impaired Mode",
"EnableColorImpairedModeHelpText": "Altered style to allow color-impaired users to better distinguish color coded information",
"EnableCompletedDownloadHandlingHelpText": "Automatically import completed downloads from download client",
"Enabled": "Enabled", "Enabled": "Enabled",
"EnabledHelpText": "Enable this list for use in Prowlarr",
"EnableHelpText": "Enable metadata file creation for this metadata type",
"EnableIndexer": "Enable Indexer", "EnableIndexer": "Enable Indexer",
"EnableInteractiveSearch": "Enable Interactive Search", "EnableInteractiveSearch": "Enable Interactive Search",
"EnableInteractiveSearchHelpText": "Will be used when interactive search is used", "EnableInteractiveSearchHelpText": "Will be used when interactive search is used",
"EnableInteractiveSearchHelpTextWarning": "Search is not supported with this indexer",
"EnableMediaInfoHelpText": "Extract video information such as resolution, runtime and codec information from files. This requires Prowlarr to read parts of the file which may cause high disk or network activity during scans.",
"EnableRss": "Enable RSS", "EnableRss": "Enable RSS",
"EnableRssHelpText": "Enable Rss feed for Indexer", "EnableRssHelpText": "Enable Rss feed for Indexer",
"EnableSSL": "Enable SSL", "EnableSSL": "Enable SSL",
@@ -152,7 +135,6 @@
"Events": "Events", "Events": "Events",
"EventType": "Event Type", "EventType": "Event Type",
"Exception": "Exception", "Exception": "Exception",
"ExistingMovies": "Existing Movie(s)",
"ExistingTag": "Existing tag", "ExistingTag": "Existing tag",
"Failed": "Failed", "Failed": "Failed",
"FeatureRequests": "Feature Requests", "FeatureRequests": "Feature Requests",
@@ -160,6 +142,7 @@
"Files": "Files", "Files": "Files",
"Filter": "Filter", "Filter": "Filter",
"FilterPlaceHolder": "Search indexers", "FilterPlaceHolder": "Search indexers",
"Filters": "Filters",
"Fixed": "Fixed", "Fixed": "Fixed",
"FocusSearchBox": "Focus Search Box", "FocusSearchBox": "Focus Search Box",
"Folder": "Folder", "Folder": "Folder",
@@ -175,18 +158,21 @@
"HiddenClickToShow": "Hidden, click to show", "HiddenClickToShow": "Hidden, click to show",
"HideAdvanced": "Hide Advanced", "HideAdvanced": "Hide Advanced",
"History": "History", "History": "History",
"HistoryCleanup": "History Cleanup",
"HistoryCleanupDaysHelpText": "Set to 0 to disable automatic cleanup",
"HistoryCleanupDaysHelpTextWarning": "History items older than the selected number of days will be cleaned up automatically",
"HomePage": "Home Page", "HomePage": "Home Page",
"Host": "Host", "Host": "Host",
"Hostname": "Hostname", "Hostname": "Hostname",
"Id": "Id", "Id": "Id",
"IgnoredAddresses": "Ignored Addresses", "IgnoredAddresses": "Ignored Addresses",
"IllRestartLater": "I'll restart later", "IllRestartLater": "I'll restart later",
"Importing": "Importing",
"IncludeHealthWarningsHelpText": "Include Health Warnings", "IncludeHealthWarningsHelpText": "Include Health Warnings",
"Indexer": "Indexer", "Indexer": "Indexer",
"IndexerAuth": "Indexer Auth", "IndexerAuth": "Indexer Auth",
"IndexerFlags": "Indexer Flags", "IndexerFlags": "Indexer Flags",
"IndexerHealthCheckNoIndexers": "No indexers enabled, Prowlarr will not return search results", "IndexerHealthCheckNoIndexers": "No indexers enabled, Prowlarr will not return search results",
"IndexerInfo": "Indexer Info",
"IndexerLongTermStatusCheckAllClientMessage": "All indexers are unavailable due to failures for more than 6 hours", "IndexerLongTermStatusCheckAllClientMessage": "All indexers are unavailable due to failures for more than 6 hours",
"IndexerLongTermStatusCheckSingleClientMessage": "Indexers unavailable due to failures for more than 6 hours: {0}", "IndexerLongTermStatusCheckSingleClientMessage": "Indexers unavailable due to failures for more than 6 hours: {0}",
"IndexerObsoleteCheckMessage": "Indexers are obsolete or have been updated: {0}. Please remove and (or) re-add to Prowlarr", "IndexerObsoleteCheckMessage": "Indexers are obsolete or have been updated: {0}. Please remove and (or) re-add to Prowlarr",
@@ -211,7 +197,6 @@
"Interval": "Interval", "Interval": "Interval",
"KeyboardShortcuts": "Keyboard Shortcuts", "KeyboardShortcuts": "Keyboard Shortcuts",
"Language": "Language", "Language": "Language",
"Languages": "Languages",
"LastWriteTime": "Last Write Time", "LastWriteTime": "Last Write Time",
"LaunchBrowserHelpText": " Open a web browser and navigate to the Prowlarr homepage on app start.", "LaunchBrowserHelpText": " Open a web browser and navigate to the Prowlarr homepage on app start.",
"Level": "Level", "Level": "Level",
@@ -220,27 +205,16 @@
"LogLevel": "Log Level", "LogLevel": "Log Level",
"LogLevelTraceHelpTextWarning": "Trace logging should only be enabled temporarily", "LogLevelTraceHelpTextWarning": "Trace logging should only be enabled temporarily",
"Logs": "Logs", "Logs": "Logs",
"MaintenanceRelease": "Maintenance release", "MaintenanceRelease": "Maintenance Release: bug fixes and other improvements. See Github Commit History for more details",
"Manual": "Manual", "Manual": "Manual",
"MaximumLimits": "Maximum Limits", "MassEditor": "Mass Editor",
"Mechanism": "Mechanism", "Mechanism": "Mechanism",
"Message": "Message", "Message": "Message",
"MIA": "MIA", "MIA": "MIA",
"MinimumLimits": "Minimum Limits",
"MinutesHundredTwenty": "120 Minutes: {0}",
"MinutesNinety": "90 Minutes: {0}",
"MinutesSixty": "60 Minutes: {0}",
"Mode": "Mode", "Mode": "Mode",
"MonoNotNetCoreCheckMessage": "Please upgrade to the .NET Core version of Prowlarr",
"MonoTlsCheckMessage": "Prowlarr Mono 4.x tls workaround still enabled, consider removing MONO_TLS_PROVIDER=legacy environment option",
"MonoVersion": "Mono Version",
"MonoVersionCheckUpgradeRecommendedMessage": "Currently installed Mono version {0} is supported but upgrading to {1} is recommended.",
"MoreInfo": "More Info", "MoreInfo": "More Info",
"MovieDetailsNextMovie": "Movie Details: Next Movie",
"MovieDetailsPreviousMovie": "Movie Details: Previous Movie",
"MovieIndexScrollBottom": "Movie Index: Scroll Bottom", "MovieIndexScrollBottom": "Movie Index: Scroll Bottom",
"MovieIndexScrollTop": "Movie Index: Scroll Top", "MovieIndexScrollTop": "Movie Index: Scroll Top",
"Movies": "Movies",
"MovieSearch": "Movie Search", "MovieSearch": "Movie Search",
"Name": "Name", "Name": "Name",
"NetCore": ".NET", "NetCore": ".NET",
@@ -249,10 +223,8 @@
"NoChange": "No Change", "NoChange": "No Change",
"NoChanges": "No Changes", "NoChanges": "No Changes",
"NoLeaveIt": "No, Leave It", "NoLeaveIt": "No, Leave It",
"NoLimitForAnyRuntime": "No limit for any runtime",
"NoLinks": "No Links", "NoLinks": "No Links",
"NoLogFiles": "No log files", "NoLogFiles": "No log files",
"NoMinimumForAnyRuntime": "No minimum for any runtime",
"NoSearchResultsFound": "No search results found, try performing a new search below.", "NoSearchResultsFound": "No search results found, try performing a new search below.",
"NoTagsHaveBeenAddedYet": "No tags have been added yet", "NoTagsHaveBeenAddedYet": "No tags have been added yet",
"Notification": "Notification", "Notification": "Notification",
@@ -264,6 +236,7 @@
"Ok": "Ok", "Ok": "Ok",
"OnApplicationUpdate": "On Application Update", "OnApplicationUpdate": "On Application Update",
"OnApplicationUpdateHelpText": "On Application Update", "OnApplicationUpdateHelpText": "On Application Update",
"OnGrab": "On Grab",
"OnHealthIssue": "On Health Issue", "OnHealthIssue": "On Health Issue",
"OnHealthIssueHelpText": "On Health Issue", "OnHealthIssueHelpText": "On Health Issue",
"OpenBrowserOnStart": "Open browser on start", "OpenBrowserOnStart": "Open browser on start",
@@ -274,13 +247,11 @@
"PageSizeHelpText": "Number of items to show on each page", "PageSizeHelpText": "Number of items to show on each page",
"Password": "Password", "Password": "Password",
"Peers": "Peers", "Peers": "Peers",
"Pending": "Pending",
"PendingChangesDiscardChanges": "Discard changes and leave", "PendingChangesDiscardChanges": "Discard changes and leave",
"PendingChangesMessage": "You have unsaved changes, are you sure you want to leave this page?", "PendingChangesMessage": "You have unsaved changes, are you sure you want to leave this page?",
"PendingChangesStayReview": "Stay and review changes", "PendingChangesStayReview": "Stay and review changes",
"Port": "Port", "Port": "Port",
"PortNumber": "Port Number", "PortNumber": "Port Number",
"PreferredSize": "Preferred Size",
"Presets": "Presets", "Presets": "Presets",
"Priority": "Priority", "Priority": "Priority",
"PriorityHelpText": "Prioritize multiple Download Clients. Round-Robin is used for clients with the same priority.", "PriorityHelpText": "Prioritize multiple Download Clients. Round-Robin is used for clients with the same priority.",
@@ -290,6 +261,7 @@
"Protocol": "Protocol", "Protocol": "Protocol",
"ProwlarrSupportsAnyDownloadClient": "Prowlarr supports any of the download clients listed below.", "ProwlarrSupportsAnyDownloadClient": "Prowlarr supports any of the download clients listed below.",
"ProwlarrSupportsAnyIndexer": "Prowlarr supports many indexers in addition to any indexer that uses the Newznab/Torznab standard using 'Generic Newznab' (for usenet) or 'Generic Torznab' (for torrents). Search & Select your indexer from below.", "ProwlarrSupportsAnyIndexer": "Prowlarr supports many indexers in addition to any indexer that uses the Newznab/Torznab standard using 'Generic Newznab' (for usenet) or 'Generic Torznab' (for torrents). Search & Select your indexer from below.",
"Proxies": "Proxies",
"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",
"ProxyCheckBadRequestMessage": "Failed to test proxy. StatusCode: {0}", "ProxyCheckBadRequestMessage": "Failed to test proxy. StatusCode: {0}",
@@ -300,10 +272,9 @@
"ProxyUsernameHelpText": "You only need to enter a username and password if one is required. Leave them blank otherwise.", "ProxyUsernameHelpText": "You only need to enter a username and password if one is required. Leave them blank otherwise.",
"PtpOldSettingsCheckMessage": "The following PassThePopcorn indexers have deprecated settings and should be updated: {0}", "PtpOldSettingsCheckMessage": "The following PassThePopcorn indexers have deprecated settings and should be updated: {0}",
"Public": "Public", "Public": "Public",
"QualityDefinitions": "Quality Definitions",
"QualitySettings": "Quality Settings",
"Query": "Query", "Query": "Query",
"QueryOptions": "Query Options", "QueryOptions": "Query Options",
"QueryResults": "Query Results",
"Queue": "Queue", "Queue": "Queue",
"ReadTheWikiForMoreInformation": "Read the Wiki for more information", "ReadTheWikiForMoreInformation": "Read the Wiki for more information",
"Reddit": "Reddit", "Reddit": "Reddit",
@@ -312,7 +283,6 @@
"Refresh": "Refresh", "Refresh": "Refresh",
"RefreshMovie": "Refresh movie", "RefreshMovie": "Refresh movie",
"ReleaseBranchCheckOfficialBranchMessage": "Branch {0} is not a valid Prowlarr release branch, you will not receive updates", "ReleaseBranchCheckOfficialBranchMessage": "Branch {0} is not a valid Prowlarr release branch, you will not receive updates",
"ReleaseBranchCheckPreviousVersionMessage": "Branch {0} is for a previous version of Prowlarr, set branch to 'Nightly' for further updates",
"ReleaseStatus": "Release Status", "ReleaseStatus": "Release Status",
"Reload": "Reload", "Reload": "Reload",
"RemovedFromTaskQueue": "Removed from task queue", "RemovedFromTaskQueue": "Removed from task queue",
@@ -326,7 +296,6 @@
"RestartRequiredHelpTextWarning": "Requires restart to take effect", "RestartRequiredHelpTextWarning": "Requires restart to take effect",
"Restore": "Restore", "Restore": "Restore",
"RestoreBackup": "Restore Backup", "RestoreBackup": "Restore Backup",
"Restrictions": "Restrictions",
"Result": "Result", "Result": "Result",
"Retention": "Retention", "Retention": "Retention",
"RSS": "RSS", "RSS": "RSS",
@@ -399,6 +368,7 @@
"TestAll": "Test All", "TestAll": "Test All",
"TestAllApps": "Test All Apps", "TestAllApps": "Test All Apps",
"TestAllClients": "Test All Clients", "TestAllClients": "Test All Clients",
"TestAllIndexers": "Test All Indexers",
"Time": "Time", "Time": "Time",
"Title": "Title", "Title": "Title",
"Today": "Today", "Today": "Today",
@@ -419,6 +389,7 @@
"UnableToAddANewIndexerPleaseTryAgain": "Unable to add a new indexer, please try again.", "UnableToAddANewIndexerPleaseTryAgain": "Unable to add a new indexer, please try again.",
"UnableToAddANewIndexerProxyPleaseTryAgain": "Unable to add a new indexer proxy, please try again.", "UnableToAddANewIndexerProxyPleaseTryAgain": "Unable to add a new indexer proxy, please try again.",
"UnableToAddANewNotificationPleaseTryAgain": "Unable to add a new notification, please try again.", "UnableToAddANewNotificationPleaseTryAgain": "Unable to add a new notification, please try again.",
"UnableToLoadApplicationList": "Unable to load application list",
"UnableToLoadAppProfiles": "Unable to load app profiles", "UnableToLoadAppProfiles": "Unable to load app profiles",
"UnableToLoadBackups": "Unable to load backups", "UnableToLoadBackups": "Unable to load backups",
"UnableToLoadDevelopmentSettings": "Unable to load Development settings", "UnableToLoadDevelopmentSettings": "Unable to load Development settings",
@@ -426,9 +397,7 @@
"UnableToLoadGeneralSettings": "Unable to load General settings", "UnableToLoadGeneralSettings": "Unable to load General settings",
"UnableToLoadHistory": "Unable to load history", "UnableToLoadHistory": "Unable to load history",
"UnableToLoadIndexerProxies": "Unable To Load Indexer Proxies", "UnableToLoadIndexerProxies": "Unable To Load Indexer Proxies",
"UnableToLoadIndexers": "Unable to load Indexers",
"UnableToLoadNotifications": "Unable to load Notifications", "UnableToLoadNotifications": "Unable to load Notifications",
"UnableToLoadQualityDefinitions": "Unable to load Quality Definitions",
"UnableToLoadTags": "Unable to load Tags", "UnableToLoadTags": "Unable to load Tags",
"UnableToLoadUISettings": "Unable to load UI settings", "UnableToLoadUISettings": "Unable to load UI settings",
"UnsavedChanges": "Unsaved Changes", "UnsavedChanges": "Unsaved Changes",
@@ -441,14 +410,17 @@
"Updates": "Updates", "Updates": "Updates",
"UpdateScriptPathHelpText": "Path to a custom script that takes an extracted update package and handle the remainder of the update process", "UpdateScriptPathHelpText": "Path to a custom script that takes an extracted update package and handle the remainder of the update process",
"Uptime": "Uptime", "Uptime": "Uptime",
"Url": "Url",
"URLBase": "URL Base", "URLBase": "URL Base",
"UrlBaseHelpText": "For reverse proxy support, default is empty", "UrlBaseHelpText": "For reverse proxy support, default is empty",
"Usenet": "Usenet", "Usenet": "Usenet",
"UseProxy": "Use Proxy", "UseProxy": "Use Proxy",
"UserAgentProvidedByTheAppThatCalledTheAPI": "User-Agent provided by the app that called the API",
"Username": "Username", "Username": "Username",
"Version": "Version", "Version": "Version",
"View": "View", "View": "View",
"Warn": "Warn", "Warn": "Warn",
"Website": "Website",
"Wiki": "Wiki", "Wiki": "Wiki",
"YesCancel": "Yes, Cancel", "YesCancel": "Yes, Cancel",
"Yesterday": "Yesterday" "Yesterday": "Yesterday"