mirror of
https://github.com/Sonarr/Sonarr
synced 2025-03-15 00:21:42 +00:00
Fixed: Regular Expression Custom Format translation
This commit is contained in:
parent
3c1ca6ea4e
commit
9f50166fa6
2 changed files with 2 additions and 2 deletions
frontend/src/Settings/CustomFormats/CustomFormats/Specifications
src/NzbDrone.Core/Localization/Core
|
@ -49,7 +49,7 @@ function EditSpecificationModalContent(props) {
|
||||||
{...otherProps}
|
{...otherProps}
|
||||||
>
|
>
|
||||||
{
|
{
|
||||||
fields && fields.some((x) => x.label === translate('RegularExpression')) &&
|
fields && fields.some((x) => x.label === translate('CustomFormatsSpecificationRegularExpression')) &&
|
||||||
<Alert kind={kinds.INFO}>
|
<Alert kind={kinds.INFO}>
|
||||||
<div>
|
<div>
|
||||||
<InlineMarkdown data={translate('ConditionUsingRegularExpressions')} />
|
<InlineMarkdown data={translate('ConditionUsingRegularExpressions')} />
|
||||||
|
|
|
@ -270,7 +270,7 @@
|
||||||
"CustomFormatsSpecificationMaximumSizeHelpText": "Release must be less than or equal to this size",
|
"CustomFormatsSpecificationMaximumSizeHelpText": "Release must be less than or equal to this size",
|
||||||
"CustomFormatsSpecificationMinimumSize": "Minimum Size",
|
"CustomFormatsSpecificationMinimumSize": "Minimum Size",
|
||||||
"CustomFormatsSpecificationMinimumSizeHelpText": "Release must be greater than this size",
|
"CustomFormatsSpecificationMinimumSizeHelpText": "Release must be greater than this size",
|
||||||
"CustomFormatsSpecificationRegularExpression": "Language",
|
"CustomFormatsSpecificationRegularExpression": "Regular Expression",
|
||||||
"CustomFormatsSpecificationRegularExpressionHelpText": "Custom Format RegEx is Case Insensitive",
|
"CustomFormatsSpecificationRegularExpressionHelpText": "Custom Format RegEx is Case Insensitive",
|
||||||
"CustomFormatsSpecificationReleaseGroup": "Release Group",
|
"CustomFormatsSpecificationReleaseGroup": "Release Group",
|
||||||
"CustomFormatsSpecificationResolution": "Resolution",
|
"CustomFormatsSpecificationResolution": "Resolution",
|
||||||
|
|
Loading…
Add table
Reference in a new issue