Fix missing language tag

This commit is contained in:
Nikolaj Olsson 2021-01-17 15:53:55 +01:00
parent 86b682760c
commit 9662c00d0a
5 changed files with 7 additions and 1 deletions

View File

@ -1254,6 +1254,7 @@ To use an API key go to "Options -> Settings -> Tools" to enter your Googl
<GoogleAndMicrosoftTranslateSelectedLine>Google/Microsoft translate original line</GoogleAndMicrosoftTranslateSelectedLine>
<TranslateSelectedLines>Translate selected lines...</TranslateSelectedLines>
<AdjustDisplayDurationForSelectedLines>Adjust durations for selected lines...</AdjustDisplayDurationForSelectedLines>
<ApplyDurationLimitsForSelectedLines>Apply duration limits for selected lines...</ApplyDurationLimitsForSelectedLines>
<FixCommonErrorsInSelectedLines>Fix common errors in selected lines...</FixCommonErrorsInSelectedLines>
<ChangeCasingForSelectedLines>Change casing for selected lines...</ChangeCasingForSelectedLines>
<SaveSelectedLines>Save selected lines as...</SaveSelectedLines>

View File

@ -251,7 +251,7 @@ namespace Nikse.SubtitleEdit.Forms.BinaryEdit
changeAlphaForSelectedLinesToolStripMenuItem.Text = LanguageSettings.Current.BinEdit.ChangeAlphaForSelectedLines;
adjustAllTimesForSelectedLinesToolStripMenuItem.Text = LanguageSettings.Current.Main.Menu.ContextMenu.ShowSelectedLinesEarlierLater;
adjustDisplayTimeForSelectedLinesToolStripMenuItem.Text = LanguageSettings.Current.Main.Menu.ContextMenu.AdjustDisplayDurationForSelectedLines;
applyDurationLimitsForSelectedLinesToolStripMenuItem.Text = LanguageSettings.Current.Main.Menu.ContextMenu.AdjustDisplayDurationForSelectedLines;
applyDurationLimitsForSelectedLinesToolStripMenuItem.Text = LanguageSettings.Current.Main.Menu.ContextMenu.ApplyDurationLimitsForSelectedLines;
setAspectRatio11ToolStripMenuItem.Text = LanguageSettings.Current.BinEdit.SetAspectRatio11;
labelStart.Text = LanguageSettings.Current.General.StartTime;

View File

@ -1771,6 +1771,7 @@ namespace Nikse.SubtitleEdit.Logic
GoogleAndMicrosoftTranslateSelectedLine = "Google/Microsoft translate original line",
TranslateSelectedLines = "Translate selected lines...",
AdjustDisplayDurationForSelectedLines = "Adjust durations for selected lines...",
ApplyDurationLimitsForSelectedLines = "Apply duration limits for selected lines...",
FixCommonErrorsInSelectedLines = "Fix common errors in selected lines...",
ChangeCasingForSelectedLines = "Change casing for selected lines...",
SaveSelectedLines = "Save selected lines as...",

View File

@ -4147,6 +4147,9 @@ namespace Nikse.SubtitleEdit.Logic
case "Main/Menu/ContextMenu/AdjustDisplayDurationForSelectedLines":
language.Main.Menu.ContextMenu.AdjustDisplayDurationForSelectedLines = reader.Value;
break;
case "Main/Menu/ContextMenu/ApplyDurationLimitsForSelectedLines":
language.Main.Menu.ContextMenu.ApplyDurationLimitsForSelectedLines = reader.Value;
break;
case "Main/Menu/ContextMenu/FixCommonErrorsInSelectedLines":
language.Main.Menu.ContextMenu.FixCommonErrorsInSelectedLines = reader.Value;
break;

View File

@ -1626,6 +1626,7 @@
public string GoogleAndMicrosoftTranslateSelectedLine { get; set; }
public string TranslateSelectedLines { get; set; }
public string AdjustDisplayDurationForSelectedLines { get; set; }
public string ApplyDurationLimitsForSelectedLines { get; set; }
public string FixCommonErrorsInSelectedLines { get; set; }
public string ChangeCasingForSelectedLines { get; set; }
public string SaveSelectedLines { get; set; }