fix ConvertFileFormatDialog localization

This commit is contained in:
ww-rm
2025-04-30 11:08:05 +08:00
parent 179fbfe84f
commit ebcd61a9a2
3 changed files with 4127 additions and 787 deletions

View File

@@ -20,200 +20,204 @@
base.Dispose(disposing); base.Dispose(disposing);
} }
#region Windows Form Designer generated code #region Windows Form Designer generated code
/// <summary> /// <summary>
/// Required method for Designer support - do not modify /// Required method for Designer support - do not modify
/// the contents of this method with the code editor. /// the contents of this method with the code editor.
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConvertFileFormatDialog)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConvertFileFormatDialog));
panel = new Panel(); panel = new Panel();
tableLayoutPanel1 = new TableLayoutPanel(); tableLayoutPanel1 = new TableLayoutPanel();
label5 = new Label(); label5 = new Label();
comboBox_TargetVersion = new ComboBox(); comboBox_TargetVersion = new ComboBox();
flowLayoutPanel_TargetFormat = new FlowLayoutPanel(); flowLayoutPanel_TargetFormat = new FlowLayoutPanel();
radioButton_BinaryTarget = new RadioButton(); radioButton_BinaryTarget = new RadioButton();
radioButton_JsonTarget = new RadioButton(); radioButton_JsonTarget = new RadioButton();
label1 = new Label(); label1 = new Label();
label4 = new Label(); label4 = new Label();
label3 = new Label(); label3 = new Label();
comboBox_SourceVersion = new ComboBox(); comboBox_SourceVersion = new ComboBox();
tableLayoutPanel2 = new TableLayoutPanel(); tableLayoutPanel2 = new TableLayoutPanel();
button_Ok = new Button(); button_Ok = new Button();
button_Cancel = new Button(); button_Cancel = new Button();
label2 = new Label(); label2 = new Label();
skelFileListBox = new Controls.SkelFileListBox(); skelFileListBox = new SpineViewer.Controls.SkelFileListBox();
tableLayoutPanel3 = new TableLayoutPanel(); tableLayoutPanel3 = new TableLayoutPanel();
textBox_OutputDir = new TextBox(); textBox_OutputDir = new TextBox();
button_SelectOutputDir = new Button(); button_SelectOutputDir = new Button();
folderBrowserDialog_Output = new FolderBrowserDialog(); folderBrowserDialog_Output = new FolderBrowserDialog();
panel.SuspendLayout(); panel.SuspendLayout();
tableLayoutPanel1.SuspendLayout(); tableLayoutPanel1.SuspendLayout();
flowLayoutPanel_TargetFormat.SuspendLayout(); flowLayoutPanel_TargetFormat.SuspendLayout();
tableLayoutPanel2.SuspendLayout(); tableLayoutPanel2.SuspendLayout();
tableLayoutPanel3.SuspendLayout(); tableLayoutPanel3.SuspendLayout();
SuspendLayout(); SuspendLayout();
// //
// panel // panel
// //
panel.Controls.Add(tableLayoutPanel1); resources.ApplyResources(panel, "panel");
resources.ApplyResources(panel, "panel"); panel.Controls.Add(tableLayoutPanel1);
panel.Name = "panel"; panel.Name = "panel";
// //
// tableLayoutPanel1 // tableLayoutPanel1
// //
resources.ApplyResources(tableLayoutPanel1, "tableLayoutPanel1"); resources.ApplyResources(tableLayoutPanel1, "tableLayoutPanel1");
tableLayoutPanel1.Controls.Add(label5, 0, 2); tableLayoutPanel1.Controls.Add(label5, 0, 2);
tableLayoutPanel1.Controls.Add(comboBox_TargetVersion, 1, 4); tableLayoutPanel1.Controls.Add(comboBox_TargetVersion, 1, 4);
tableLayoutPanel1.Controls.Add(flowLayoutPanel_TargetFormat, 1, 5); tableLayoutPanel1.Controls.Add(flowLayoutPanel_TargetFormat, 1, 5);
tableLayoutPanel1.Controls.Add(label1, 0, 4); tableLayoutPanel1.Controls.Add(label1, 0, 4);
tableLayoutPanel1.Controls.Add(label4, 0, 0); tableLayoutPanel1.Controls.Add(label4, 0, 0);
tableLayoutPanel1.Controls.Add(label3, 0, 3); tableLayoutPanel1.Controls.Add(label3, 0, 3);
tableLayoutPanel1.Controls.Add(comboBox_SourceVersion, 1, 3); tableLayoutPanel1.Controls.Add(comboBox_SourceVersion, 1, 3);
tableLayoutPanel1.Controls.Add(tableLayoutPanel2, 0, 6); tableLayoutPanel1.Controls.Add(tableLayoutPanel2, 0, 6);
tableLayoutPanel1.Controls.Add(label2, 0, 5); tableLayoutPanel1.Controls.Add(label2, 0, 5);
tableLayoutPanel1.Controls.Add(skelFileListBox, 0, 1); tableLayoutPanel1.Controls.Add(skelFileListBox, 0, 1);
tableLayoutPanel1.Controls.Add(tableLayoutPanel3, 1, 2); tableLayoutPanel1.Controls.Add(tableLayoutPanel3, 1, 2);
tableLayoutPanel1.Name = "tableLayoutPanel1"; tableLayoutPanel1.Name = "tableLayoutPanel1";
// //
// label5 // label5
// //
resources.ApplyResources(label5, "label5"); resources.ApplyResources(label5, "label5");
label5.Name = "label5"; label5.Name = "label5";
// //
// comboBox_TargetVersion // comboBox_TargetVersion
// //
resources.ApplyResources(comboBox_TargetVersion, "comboBox_TargetVersion"); resources.ApplyResources(comboBox_TargetVersion, "comboBox_TargetVersion");
comboBox_TargetVersion.DropDownStyle = ComboBoxStyle.DropDownList; comboBox_TargetVersion.DropDownStyle = ComboBoxStyle.DropDownList;
comboBox_TargetVersion.FormattingEnabled = true; comboBox_TargetVersion.FormattingEnabled = true;
comboBox_TargetVersion.Name = "comboBox_TargetVersion"; comboBox_TargetVersion.Name = "comboBox_TargetVersion";
comboBox_TargetVersion.Sorted = true; comboBox_TargetVersion.Sorted = true;
// //
// flowLayoutPanel_TargetFormat // flowLayoutPanel_TargetFormat
// //
resources.ApplyResources(flowLayoutPanel_TargetFormat, "flowLayoutPanel_TargetFormat"); resources.ApplyResources(flowLayoutPanel_TargetFormat, "flowLayoutPanel_TargetFormat");
flowLayoutPanel_TargetFormat.Controls.Add(radioButton_BinaryTarget); flowLayoutPanel_TargetFormat.Controls.Add(radioButton_BinaryTarget);
flowLayoutPanel_TargetFormat.Controls.Add(radioButton_JsonTarget); flowLayoutPanel_TargetFormat.Controls.Add(radioButton_JsonTarget);
flowLayoutPanel_TargetFormat.Name = "flowLayoutPanel_TargetFormat"; flowLayoutPanel_TargetFormat.Name = "flowLayoutPanel_TargetFormat";
// //
// radioButton_BinaryTarget // radioButton_BinaryTarget
// //
resources.ApplyResources(radioButton_BinaryTarget, "radioButton_BinaryTarget"); resources.ApplyResources(radioButton_BinaryTarget, "radioButton_BinaryTarget");
radioButton_BinaryTarget.Name = "radioButton_BinaryTarget"; radioButton_BinaryTarget.Name = "radioButton_BinaryTarget";
radioButton_BinaryTarget.UseVisualStyleBackColor = true; radioButton_BinaryTarget.UseVisualStyleBackColor = true;
// //
// radioButton_JsonTarget // radioButton_JsonTarget
// //
resources.ApplyResources(radioButton_JsonTarget, "radioButton_JsonTarget"); resources.ApplyResources(radioButton_JsonTarget, "radioButton_JsonTarget");
radioButton_JsonTarget.Checked = true; radioButton_JsonTarget.Checked = true;
radioButton_JsonTarget.Name = "radioButton_JsonTarget"; radioButton_JsonTarget.Name = "radioButton_JsonTarget";
radioButton_JsonTarget.TabStop = true; radioButton_JsonTarget.TabStop = true;
radioButton_JsonTarget.UseVisualStyleBackColor = true; radioButton_JsonTarget.UseVisualStyleBackColor = true;
// //
// label1 // label1
// //
resources.ApplyResources(label1, "label1"); resources.ApplyResources(label1, "label1");
label1.Name = "label1"; label1.Name = "label1";
// //
// label4 // label4
// //
resources.ApplyResources(label4, "label4"); resources.ApplyResources(label4, "label4");
tableLayoutPanel1.SetColumnSpan(label4, 4); tableLayoutPanel1.SetColumnSpan(label4, 4);
label4.Name = "label4"; label4.Name = "label4";
// //
// label3 // label3
// //
resources.ApplyResources(label3, "label3"); resources.ApplyResources(label3, "label3");
label3.Name = "label3"; label3.Name = "label3";
// //
// comboBox_SourceVersion // comboBox_SourceVersion
// //
resources.ApplyResources(comboBox_SourceVersion, "comboBox_SourceVersion"); resources.ApplyResources(comboBox_SourceVersion, "comboBox_SourceVersion");
comboBox_SourceVersion.DropDownStyle = ComboBoxStyle.DropDownList; comboBox_SourceVersion.DropDownStyle = ComboBoxStyle.DropDownList;
comboBox_SourceVersion.FormattingEnabled = true; comboBox_SourceVersion.FormattingEnabled = true;
comboBox_SourceVersion.Name = "comboBox_SourceVersion"; comboBox_SourceVersion.Name = "comboBox_SourceVersion";
comboBox_SourceVersion.Sorted = true; comboBox_SourceVersion.Sorted = true;
// //
// tableLayoutPanel2 // tableLayoutPanel2
// //
resources.ApplyResources(tableLayoutPanel2, "tableLayoutPanel2"); resources.ApplyResources(tableLayoutPanel2, "tableLayoutPanel2");
tableLayoutPanel1.SetColumnSpan(tableLayoutPanel2, 4); tableLayoutPanel1.SetColumnSpan(tableLayoutPanel2, 4);
tableLayoutPanel2.Controls.Add(button_Ok, 0, 0); tableLayoutPanel2.Controls.Add(button_Ok, 0, 0);
tableLayoutPanel2.Controls.Add(button_Cancel, 1, 0); tableLayoutPanel2.Controls.Add(button_Cancel, 1, 0);
tableLayoutPanel2.Name = "tableLayoutPanel2"; tableLayoutPanel2.Name = "tableLayoutPanel2";
// //
// button_Ok // button_Ok
// //
resources.ApplyResources(button_Ok, "button_Ok"); resources.ApplyResources(button_Ok, "button_Ok");
button_Ok.Name = "button_Ok"; button_Ok.Name = "button_Ok";
button_Ok.UseVisualStyleBackColor = true; button_Ok.UseVisualStyleBackColor = true;
button_Ok.Click += button_Ok_Click; button_Ok.Click += button_Ok_Click;
// //
// button_Cancel // button_Cancel
// //
resources.ApplyResources(button_Cancel, "button_Cancel"); resources.ApplyResources(button_Cancel, "button_Cancel");
button_Cancel.Name = "button_Cancel"; button_Cancel.Name = "button_Cancel";
button_Cancel.UseVisualStyleBackColor = true; button_Cancel.UseVisualStyleBackColor = true;
button_Cancel.Click += button_Cancel_Click; button_Cancel.Click += button_Cancel_Click;
// //
// label2 // label2
// //
resources.ApplyResources(label2, "label2"); resources.ApplyResources(label2, "label2");
label2.Name = "label2"; label2.Name = "label2";
// //
// skelFileListBox // skelFileListBox
// //
tableLayoutPanel1.SetColumnSpan(skelFileListBox, 2); resources.ApplyResources(skelFileListBox, "skelFileListBox");
resources.ApplyResources(skelFileListBox, "skelFileListBox"); tableLayoutPanel1.SetColumnSpan(skelFileListBox, 2);
skelFileListBox.Name = "skelFileListBox"; skelFileListBox.Name = "skelFileListBox";
// //
// tableLayoutPanel3 // tableLayoutPanel3
// //
resources.ApplyResources(tableLayoutPanel3, "tableLayoutPanel3"); resources.ApplyResources(tableLayoutPanel3, "tableLayoutPanel3");
tableLayoutPanel3.Controls.Add(textBox_OutputDir, 1, 0); tableLayoutPanel3.Controls.Add(textBox_OutputDir, 1, 0);
tableLayoutPanel3.Controls.Add(button_SelectOutputDir, 2, 0); tableLayoutPanel3.Controls.Add(button_SelectOutputDir, 2, 0);
tableLayoutPanel3.Name = "tableLayoutPanel3"; tableLayoutPanel3.Name = "tableLayoutPanel3";
// //
// textBox_OutputDir // textBox_OutputDir
// //
resources.ApplyResources(textBox_OutputDir, "textBox_OutputDir"); resources.ApplyResources(textBox_OutputDir, "textBox_OutputDir");
textBox_OutputDir.Name = "textBox_OutputDir"; textBox_OutputDir.Name = "textBox_OutputDir";
// //
// button_SelectOutputDir // button_SelectOutputDir
// //
resources.ApplyResources(button_SelectOutputDir, "button_SelectOutputDir"); resources.ApplyResources(button_SelectOutputDir, "button_SelectOutputDir");
button_SelectOutputDir.Name = "button_SelectOutputDir"; button_SelectOutputDir.Name = "button_SelectOutputDir";
button_SelectOutputDir.UseVisualStyleBackColor = true; button_SelectOutputDir.UseVisualStyleBackColor = true;
button_SelectOutputDir.Click += button_SelectOutputDir_Click; button_SelectOutputDir.Click += button_SelectOutputDir_Click;
// //
// ConvertFileFormatDialog // folderBrowserDialog_Output
// //
AcceptButton = button_Ok; resources.ApplyResources(folderBrowserDialog_Output, "folderBrowserDialog_Output");
resources.ApplyResources(this, "$this"); //
AutoScaleMode = AutoScaleMode.Font; // ConvertFileFormatDialog
CancelButton = button_Cancel; //
Controls.Add(panel); AcceptButton = button_Ok;
FormBorderStyle = FormBorderStyle.FixedDialog; resources.ApplyResources(this, "$this");
MaximizeBox = false; AutoScaleMode = AutoScaleMode.Font;
MinimizeBox = false; CancelButton = button_Cancel;
Name = "ConvertFileFormatDialog"; Controls.Add(panel);
ShowInTaskbar = false; FormBorderStyle = FormBorderStyle.FixedDialog;
panel.ResumeLayout(false); MaximizeBox = false;
tableLayoutPanel1.ResumeLayout(false); MinimizeBox = false;
tableLayoutPanel1.PerformLayout(); Name = "ConvertFileFormatDialog";
flowLayoutPanel_TargetFormat.ResumeLayout(false); ShowInTaskbar = false;
flowLayoutPanel_TargetFormat.PerformLayout(); panel.ResumeLayout(false);
tableLayoutPanel2.ResumeLayout(false); tableLayoutPanel1.ResumeLayout(false);
tableLayoutPanel3.ResumeLayout(false); tableLayoutPanel1.PerformLayout();
tableLayoutPanel3.PerformLayout(); flowLayoutPanel_TargetFormat.ResumeLayout(false);
ResumeLayout(false); flowLayoutPanel_TargetFormat.PerformLayout();
} tableLayoutPanel2.ResumeLayout(false);
tableLayoutPanel3.ResumeLayout(false);
tableLayoutPanel3.PerformLayout();
ResumeLayout(false);
}
#endregion #endregion
private Panel panel; private Panel panel;
private TableLayoutPanel tableLayoutPanel1; private TableLayoutPanel tableLayoutPanel1;
private Label label4; private Label label4;
private Label label3; private Label label3;

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff