Update language

This commit is contained in:
Nikolaj Olsson 2024-06-01 10:18:10 +02:00
parent dd7add85da
commit 966cb98d18
4 changed files with 8 additions and 2 deletions

View File

@ -108,6 +108,8 @@ namespace Nikse.SubtitleEdit.Forms
Text = LanguageSettings.Current.ChooseLanguage.Title;
labelLanguage.Text = LanguageSettings.Current.ChooseLanguage.Language;
labelLanguageCode.Text = LanguageSettings.Current.EbuSaveOptions.LanguageCode;
labelTitle.Text = LanguageSettings.Current.SubStationAlphaProperties.Title;
buttonOK.Text = LanguageSettings.Current.General.Ok;
buttonCancel.Text = LanguageSettings.Current.General.Cancel;
UiUtil.FixLargeFonts(this, buttonOK);

View File

@ -107,8 +107,8 @@ namespace Nikse.SubtitleEdit.Forms
comboBoxRule.Items.Add(LanguageSettings.Current.ModifySelection.DurationGreaterThan);
comboBoxRule.Items.Add(LanguageSettings.Current.ModifySelection.CpsLessThan);
comboBoxRule.Items.Add(LanguageSettings.Current.ModifySelection.CpsGreaterThan);
comboBoxRule.Items.Add("Length less than");
comboBoxRule.Items.Add("Length greater than");
comboBoxRule.Items.Add(LanguageSettings.Current.ModifySelection.LengthLessThan);
comboBoxRule.Items.Add(LanguageSettings.Current.ModifySelection.LengthGreaterThan);
comboBoxRule.Items.Add(LanguageSettings.Current.ModifySelection.ExactlyOneLine);
comboBoxRule.Items.Add(LanguageSettings.Current.ModifySelection.ExactlyTwoLines);
comboBoxRule.Items.Add(LanguageSettings.Current.ModifySelection.MoreThanTwoLines);

View File

@ -2468,6 +2468,8 @@ namespace Nikse.SubtitleEdit.Logic
DurationGreaterThan = "Duration greater than",
CpsLessThan = "CPS less than",
CpsGreaterThan = "CPS greater than",
LengthLessThan = "Length less than",
LengthGreaterThan = "Length greater than",
ExactlyOneLine = "Exactly one line",
ExactlyTwoLines = "Exactly two lines",
MoreThanTwoLines = "More than two lines",

View File

@ -2280,6 +2280,8 @@
public string DurationGreaterThan { get; set; }
public string CpsLessThan { get; set; }
public string CpsGreaterThan { get; set; }
public string LengthLessThan { get; set; }
public string LengthGreaterThan { get; set; }
public string ExactlyOneLine { get; set; }
public string ExactlyTwoLines { get; set; }
public string MoreThanTwoLines { get; set; }