Add language tags

This commit is contained in:
Nikolaj Olsson 2024-06-02 07:40:59 +02:00
parent f073750f3f
commit 134415f639
2 changed files with 8 additions and 0 deletions

View File

@ -2135,6 +2135,8 @@ Download and continue?</VideoFromUrlRequirements>
<DurationGreaterThan>Duration greater than</DurationGreaterThan>
<CpsLessThan>CPS less than</CpsLessThan>
<CpsGreaterThan>CPS greater than</CpsGreaterThan>
<LengthLessThan>Length less than</LengthLessThan>
<LengthGreaterThan>Length greater than</LengthGreaterThan>
<ExactlyOneLine>Exactly one line</ExactlyOneLine>
<ExactlyTwoLines>Exactly two lines</ExactlyTwoLines>
<MoreThanTwoLines>More than two lines</MoreThanTwoLines>

View File

@ -5797,6 +5797,12 @@ namespace Nikse.SubtitleEdit.Logic
case "ModifySelection/CpsGreaterThan":
language.ModifySelection.CpsGreaterThan = reader.Value;
break;
case "ModifySelection/LengthLessThan":
language.ModifySelection.LengthLessThan = reader.Value;
break;
case "ModifySelection/LengthGreaterThan":
language.ModifySelection.LengthGreaterThan = reader.Value;
break;
case "ModifySelection/ExactlyOneLine":
language.ModifySelection.ExactlyOneLine = reader.Value;
break;