Use specific How To Apply Tags per setting section
This commit is contained in:
parent
972e140899
commit
1bba3957a7
|
@ -16,6 +16,7 @@ import { inputTypes, kinds, sizes } from 'Helpers/Props';
|
|||
import Series from 'Series/Series';
|
||||
import createAllSeriesSelector from 'Store/Selectors/createAllSeriesSelector';
|
||||
import createTagsSelector from 'Store/Selectors/createTagsSelector';
|
||||
import translate from 'Utilities/String/translate';
|
||||
import styles from './TagsModalContent.css';
|
||||
|
||||
interface TagsModalContentProps {
|
||||
|
@ -97,10 +98,10 @@ function TagsModalContent(props: TagsModalContentProps) {
|
|||
value={applyTags}
|
||||
values={applyTagsOptions}
|
||||
helpTexts={[
|
||||
'How to apply tags to the selected series',
|
||||
'Add: Add the tags the existing list of tags',
|
||||
'Remove: Remove the entered tags',
|
||||
'Replace: Replace the tags with the entered tags (enter no tags to clear all tags)',
|
||||
translate('ApplyTagsHelpTextHowToApplySeries'),
|
||||
translate('ApplyTagsHelpTextAdd'),
|
||||
translate('ApplyTagsHelpTextRemove'),
|
||||
translate('ApplyTagsHelpTextReplace'),
|
||||
]}
|
||||
onChange={onApplyTagsChange}
|
||||
/>
|
||||
|
|
|
@ -103,7 +103,7 @@ function TagsModalContent(props: TagsModalContentProps) {
|
|||
value={applyTags}
|
||||
values={applyTagsOptions}
|
||||
helpTexts={[
|
||||
translate('ApplyTagsHelpTextHowToApply'),
|
||||
translate('ApplyTagsHelpTextHowToApplyDownloadClients'),
|
||||
translate('ApplyTagsHelpTextAdd'),
|
||||
translate('ApplyTagsHelpTextRemove'),
|
||||
translate('ApplyTagsHelpTextReplace'),
|
||||
|
|
|
@ -101,7 +101,7 @@ function TagsModalContent(props: TagsModalContentProps) {
|
|||
value={applyTags}
|
||||
values={applyTagsOptions}
|
||||
helpTexts={[
|
||||
translate('ApplyTagsHelpTextHowToApply'),
|
||||
translate('ApplyTagsHelpTextHowToApplyImportLists'),
|
||||
translate('ApplyTagsHelpTextAdd'),
|
||||
translate('ApplyTagsHelpTextRemove'),
|
||||
translate('ApplyTagsHelpTextReplace'),
|
||||
|
|
|
@ -101,7 +101,7 @@ function TagsModalContent(props: TagsModalContentProps) {
|
|||
value={applyTags}
|
||||
values={applyTagsOptions}
|
||||
helpTexts={[
|
||||
translate('ApplyTagsHelpTextHowToApply'),
|
||||
translate('ApplyTagsHelpTextHowToApplyIndexers'),
|
||||
translate('ApplyTagsHelpTextAdd'),
|
||||
translate('ApplyTagsHelpTextRemove'),
|
||||
translate('ApplyTagsHelpTextReplace'),
|
||||
|
|
|
@ -14,6 +14,10 @@
|
|||
"ApplyTags": "Apply Tags",
|
||||
"ApplyTagsHelpTextAdd": "Add: Add the tags the existing list of tags",
|
||||
"ApplyTagsHelpTextHowToApply": "How to apply tags to the selected indexers",
|
||||
"ApplyTagsHelpTextHowToApplyDownloadClients": "How to apply tags to the selected download clients",
|
||||
"ApplyTagsHelpTextHowToApplyImportLists": "How to apply tags to the selected import lists",
|
||||
"ApplyTagsHelpTextHowToApplyIndexers": "How to apply tags to the selected indexers",
|
||||
"ApplyTagsHelpTextHowToApplySeries": "How to apply tags to the selected series",
|
||||
"ApplyTagsHelpTextRemove": "Remove: Remove the entered tags",
|
||||
"ApplyTagsHelpTextReplace": "Replace: Replace the tags with the entered tags (enter no tags to clear all tags)",
|
||||
"AutoAdd": "Auto Add",
|
||||
|
|
Loading…
Reference in New Issue