mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
Fix missing translation in "Batch convert" - thx Jamakmake :)
This commit is contained in:
parent
8c30163475
commit
bc4da75a46
@ -195,6 +195,7 @@ Note: Do check free disk space.</WaveFileMalformed>
|
||||
<FixCommonErrorsErrorX>Fix common errors: {0}</FixCommonErrorsErrorX>
|
||||
<MultipleReplaceErrorX>Multiple replace: {0}</MultipleReplaceErrorX>
|
||||
<AutoBalanceErrorX>Auto balance: {0}</AutoBalanceErrorX>
|
||||
<OffsetTimeCodes>Offset time codes</OffsetTimeCodes>
|
||||
</BatchConvert>
|
||||
<Beamer>
|
||||
<Title>Beamer</Title>
|
||||
|
@ -328,6 +328,7 @@ namespace Nikse.SubtitleEdit.Core
|
||||
FixCommonErrorsErrorX = "Fix common errors: {0}",
|
||||
MultipleReplaceErrorX = "Multiple replace: {0}",
|
||||
AutoBalanceErrorX = "Auto balance: {0}",
|
||||
OffsetTimeCodes = "Offset time codes",
|
||||
};
|
||||
|
||||
Beamer = new LanguageStructure.Beamer
|
||||
|
@ -526,6 +526,9 @@ namespace Nikse.SubtitleEdit.Core
|
||||
case "BatchConvert/AutoBalanceErrorX":
|
||||
language.BatchConvert.AutoBalanceErrorX = reader.Value;
|
||||
break;
|
||||
case "BatchConvert/OffsetTimeCodes":
|
||||
language.BatchConvert.OffsetTimeCodes = reader.Value;
|
||||
break;
|
||||
case "Beamer/Title":
|
||||
language.Beamer.Title = reader.Value;
|
||||
break;
|
||||
|
@ -203,6 +203,7 @@
|
||||
public string FixCommonErrorsErrorX { get; set; }
|
||||
public string MultipleReplaceErrorX { get; set; }
|
||||
public string AutoBalanceErrorX { get; set; }
|
||||
public string OffsetTimeCodes { get; set; }
|
||||
}
|
||||
|
||||
public class Beamer
|
||||
|
@ -113,7 +113,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
checkBoxScanFolderRecursive.Left = buttonSearchFolder.Left - checkBoxScanFolderRecursive.Width - 5;
|
||||
|
||||
groupBoxChangeFrameRate.Text = Configuration.Settings.Language.ChangeFrameRate.Title;
|
||||
groupBoxOffsetTimeCodes.Text = Configuration.Settings.Language.ShowEarlierLater.TitleAll;
|
||||
groupBoxOffsetTimeCodes.Text = l.OffsetTimeCodes;
|
||||
groupBoxSpeed.Text = Configuration.Settings.Language.ChangeSpeedInPercent.TitleShort;
|
||||
labelFromFrameRate.Text = Configuration.Settings.Language.ChangeFrameRate.FromFrameRate;
|
||||
labelToFrameRate.Text = Configuration.Settings.Language.ChangeFrameRate.ToFrameRate;
|
||||
@ -191,6 +191,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
checkBoxBridgeGaps.Checked = Configuration.Settings.Tools.BatchConvertBridgeGaps;
|
||||
checkBoxSetMinimumDisplayTimeBetweenSubs.Checked = Configuration.Settings.Tools.BatchConvertSetMinDisplayTimeBetweenSubtitles;
|
||||
buttonRemoveTextForHiSettings.Text = l.Settings;
|
||||
buttonBridgeGapsSettings.Text = l.Settings;
|
||||
buttonFixCommonErrorSettings.Text = l.Settings;
|
||||
buttonMultipleReplaceSettings.Text = l.Settings;
|
||||
checkBoxFixCommonErrors.Text = Configuration.Settings.Language.FixCommonErrors.Title;
|
||||
|
Loading…
Reference in New Issue
Block a user