Rename 'On Import' to 'On File Import' and 'On Upgrade' to 'On File Upgrade'

Closes #10164
pull/10568/head
Bogdan 4 months ago
parent d99a7e9b8a
commit aadefbe3b0

@ -105,7 +105,7 @@ class Notification extends Component {
{ {
supportsOnDownload && onDownload ? supportsOnDownload && onDownload ?
<Label kind={kinds.SUCCESS}> <Label kind={kinds.SUCCESS}>
{translate('OnImport')} {translate('OnFileImport')}
</Label> : </Label> :
null null
} }
@ -113,7 +113,7 @@ class Notification extends Component {
{ {
supportsOnUpgrade && onDownload && onUpgrade ? supportsOnUpgrade && onDownload && onUpgrade ?
<Label kind={kinds.SUCCESS}> <Label kind={kinds.SUCCESS}>
{translate('OnUpgrade')} {translate('OnFileUpgrade')}
</Label> : </Label> :
null null
} }

@ -66,7 +66,7 @@ function NotificationEventItems(props) {
<FormInputGroup <FormInputGroup
type={inputTypes.CHECK} type={inputTypes.CHECK}
name="onDownload" name="onDownload"
helpText={translate('OnImport')} helpText={translate('OnFileImport')}
isDisabled={!supportsOnDownload.value} isDisabled={!supportsOnDownload.value}
{...onDownload} {...onDownload}
onChange={onInputChange} onChange={onInputChange}
@ -79,7 +79,7 @@ function NotificationEventItems(props) {
<FormInputGroup <FormInputGroup
type={inputTypes.CHECK} type={inputTypes.CHECK}
name="onUpgrade" name="onUpgrade"
helpText={translate('OnUpgrade')} helpText={translate('OnFileUpgrade')}
isDisabled={!supportsOnUpgrade.value} isDisabled={!supportsOnUpgrade.value}
{...onUpgrade} {...onUpgrade}
onChange={onInputChange} onChange={onInputChange}

@ -1247,10 +1247,11 @@
"Ok": "Ok", "Ok": "Ok",
"OnApplicationUpdate": "On Application Update", "OnApplicationUpdate": "On Application Update",
"OnExcludedList": "On Excluded List", "OnExcludedList": "On Excluded List",
"OnFileImport": "On File Import",
"OnFileUpgrade": "On File Upgrade",
"OnGrab": "On Grab", "OnGrab": "On Grab",
"OnHealthIssue": "On Health Issue", "OnHealthIssue": "On Health Issue",
"OnHealthRestored": "On Health Restored", "OnHealthRestored": "On Health Restored",
"OnImport": "On Import",
"OnLatestVersion": "The latest version of {appName} is already installed", "OnLatestVersion": "The latest version of {appName} is already installed",
"OnManualInteractionRequired": "On Manual Interaction Required", "OnManualInteractionRequired": "On Manual Interaction Required",
"OnManualInteractionRequiredHelpText": "On Manual Interaction Required", "OnManualInteractionRequiredHelpText": "On Manual Interaction Required",
@ -1259,7 +1260,6 @@
"OnMovieFileDelete": "On Movie File Delete", "OnMovieFileDelete": "On Movie File Delete",
"OnMovieFileDeleteForUpgrade": "On Movie File Delete For Upgrade", "OnMovieFileDeleteForUpgrade": "On Movie File Delete For Upgrade",
"OnRename": "On Rename", "OnRename": "On Rename",
"OnUpgrade": "On Upgrade",
"OneMinute": "1 Minute", "OneMinute": "1 Minute",
"OnlyTorrent": "Only Torrent", "OnlyTorrent": "Only Torrent",
"OnlyUsenet": "Only Usenet", "OnlyUsenet": "Only Usenet",

Loading…
Cancel
Save