mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Fix language tag - thx Jamakmake :)
This commit is contained in:
parent
0363240a3f
commit
4e7c44294f
@ -205,7 +205,6 @@ Note: Do check free disk space.</WaveFileMalformed>
|
||||
<AutoBalance>Auto balance lines</AutoBalance>
|
||||
<ScanFolder>Scan folder...</ScanFolder>
|
||||
<Recursive>Include sub folders</Recursive>
|
||||
<SetMinMsBetweenSubtitles>Set min. milliseconds between subtitles</SetMinMsBetweenSubtitles>
|
||||
<BridgeGaps>Bridge gaps</BridgeGaps>
|
||||
<PlainText>Plain text</PlainText>
|
||||
<Ocr>OCR...</Ocr>
|
||||
|
@ -345,7 +345,6 @@ namespace Nikse.SubtitleEdit.Core
|
||||
OverwriteOriginalFiles = "Overwrite original files (new extension if format is changed)",
|
||||
ScanFolder = "Scan folder...",
|
||||
Recursive = "Include sub folders",
|
||||
SetMinMsBetweenSubtitles = "Set min. milliseconds between subtitles",
|
||||
BridgeGaps = "Bridge gaps",
|
||||
PlainText = "Plain text",
|
||||
Ocr = "OCR...",
|
||||
|
@ -556,9 +556,6 @@ namespace Nikse.SubtitleEdit.Core
|
||||
case "BatchConvert/Recursive":
|
||||
language.BatchConvert.Recursive = reader.Value;
|
||||
break;
|
||||
case "BatchConvert/SetMinMsBetweenSubtitles":
|
||||
language.BatchConvert.SetMinMsBetweenSubtitles = reader.Value;
|
||||
break;
|
||||
case "BatchConvert/BridgeGaps":
|
||||
language.BatchConvert.BridgeGaps = reader.Value;
|
||||
break;
|
||||
|
@ -215,7 +215,6 @@
|
||||
public string AutoBalance { get; set; }
|
||||
public string ScanFolder { get; set; }
|
||||
public string Recursive { get; set; }
|
||||
public string SetMinMsBetweenSubtitles { get; set; }
|
||||
public string BridgeGaps { get; set; }
|
||||
public string PlainText { get; set; }
|
||||
public string Ocr { get; set; }
|
||||
|
@ -385,7 +385,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
},
|
||||
new FixActionItem
|
||||
{
|
||||
Text = l.SetMinMsBetweenSubtitles,
|
||||
Text = Configuration.Settings.Language.SetMinimumDisplayTimeBetweenParagraphs.Title,
|
||||
Checked = Configuration.Settings.Tools.BatchConvertSetMinDisplayTimeBetweenSubtitles,
|
||||
Action = CommandLineConverter.BatchAction.SetMinGap
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user