mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Add language tags
This commit is contained in:
parent
f073750f3f
commit
134415f639
@ -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>
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user