Fix missing translation - thx Minherre :)

Related to #7212
This commit is contained in:
niksedk 2023-08-06 11:06:23 +02:00
parent dd675c2cfc
commit 5406fc1d0d
4 changed files with 5 additions and 3 deletions

View File

@ -512,6 +512,7 @@ We leverage the intrinsic rhythm of the image.</CreateSimpleChainingToolTip>
<Enabled>Enabled</Enabled>
<Name>Name</Name>
<LinesFoundX>Lines found: {0}</LinesFoundX>
<ExtraNames>Add extra names (separate by comma, one-time use only)</ExtraNames>
</ChangeCasingNames>
<ChangeFrameRate>
<Title>Change frame rate</Title>

View File

@ -33,7 +33,7 @@
this.buttonCancel = new System.Windows.Forms.Button();
this.groupBoxNames = new System.Windows.Forms.GroupBox();
this.buttonAddCustomNames = new System.Windows.Forms.Button();
this.textBoxExtraNames = new System.Windows.Forms.TextBox();
this.textBoxExtraNames = new Nikse.SubtitleEdit.Controls.SETextBox();
this.labelExtraNames = new System.Windows.Forms.Label();
this.buttonInverseSelection = new System.Windows.Forms.Button();
this.buttonSelectAll = new System.Windows.Forms.Button();
@ -341,7 +341,7 @@
private System.Windows.Forms.Button buttonInverseSelection;
private System.Windows.Forms.Button buttonSelectAll;
private System.Windows.Forms.Button buttonAddCustomNames;
private System.Windows.Forms.TextBox textBoxExtraNames;
private Nikse.SubtitleEdit.Controls.SETextBox textBoxExtraNames;
private System.Windows.Forms.Label labelExtraNames;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItemSelectAll;

View File

@ -38,7 +38,7 @@ namespace Nikse.SubtitleEdit.Forms
toolStripMenuItem1SelectAll.Text = LanguageSettings.Current.FixCommonErrors.SelectAll;
toolStripMenuItem2InverseSelection.Text = LanguageSettings.Current.FixCommonErrors.InverseSelection;
labelExtraNames.Text = LanguageSettings.Current.ChangeCasingNames.ExtraNames;
buttonAddCustomNames.Text = LanguageSettings.Current.DvdSubRip.Add;
buttonAddCustomNames.Text = LanguageSettings.Current.DvdSubRip.Add.TrimEnd('.');
toolStripMenuItemInverseSelection.Text = LanguageSettings.Current.Main.Menu.Edit.InverseSelection;
toolStripMenuItemSelectAll.Text = LanguageSettings.Current.Main.Menu.ContextMenu.SelectAll;
buttonOK.Text = LanguageSettings.Current.General.Ok;

View File

@ -708,6 +708,7 @@ namespace Nikse.SubtitleEdit.Logic
Enabled = "Enabled",
Name = "Name",
LinesFoundX = "Lines found: {0}",
ExtraNames = "Add extra names (separate by comma, one-time use only)",
};
ChangeFrameRate = new LanguageStructure.ChangeFrameRate