From dd4e8303e54e8241344f09e69937c60808e6580d Mon Sep 17 00:00:00 2001 From: yyq-404 Date: Sat, 19 Oct 2019 22:11:11 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B7=BB=E5=8A=A0Vmess?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E5=99=A8=E8=A1=A8=E5=8D=95=E5=AD=97=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- v2rayN/v2rayN/Forms/AddServerForm.Designer.cs | 35 +- v2rayN/v2rayN/Forms/AddServerForm.resx | 1008 +++++++++++++---- .../v2rayN/Forms/AddServerForm.zh-Hans.resx | 22 +- 3 files changed, 800 insertions(+), 265 deletions(-) diff --git a/v2rayN/v2rayN/Forms/AddServerForm.Designer.cs b/v2rayN/v2rayN/Forms/AddServerForm.Designer.cs index c398397b..1856ed7f 100644 --- a/v2rayN/v2rayN/Forms/AddServerForm.Designer.cs +++ b/v2rayN/v2rayN/Forms/AddServerForm.Designer.cs @@ -31,6 +31,7 @@ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddServerForm)); this.btnClose = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); + this.lbAdvanced = new System.Windows.Forms.Label(); this.btnGUID = new System.Windows.Forms.Button(); this.label13 = new System.Windows.Forms.Label(); this.groupBox2 = new System.Windows.Forms.GroupBox(); @@ -72,13 +73,12 @@ this.label1 = new System.Windows.Forms.Label(); this.panel2 = new System.Windows.Forms.Panel(); this.btnOK = new System.Windows.Forms.Button(); - this.panel1 = new System.Windows.Forms.Panel(); this.menuServer = new System.Windows.Forms.MenuStrip(); this.MenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.MenuItemImportClient = new System.Windows.Forms.ToolStripMenuItem(); this.MenuItemImportServer = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.MenuItemImportClipboard = new System.Windows.Forms.ToolStripMenuItem(); + this.lbBase = new System.Windows.Forms.Label(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.panTlsMore.SuspendLayout(); @@ -96,6 +96,7 @@ // // groupBox1 // + this.groupBox1.Controls.Add(this.lbAdvanced); this.groupBox1.Controls.Add(this.btnGUID); this.groupBox1.Controls.Add(this.label13); this.groupBox1.Controls.Add(this.groupBox2); @@ -119,6 +120,11 @@ this.groupBox1.Name = "groupBox1"; this.groupBox1.TabStop = false; // + // lbAdvanced + // + resources.ApplyResources(this.lbAdvanced, "lbAdvanced"); + this.lbAdvanced.Name = "lbAdvanced"; + // // btnGUID // resources.ApplyResources(this.btnGUID, "btnGUID"); @@ -389,11 +395,6 @@ this.btnOK.UseVisualStyleBackColor = true; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // - // panel1 - // - resources.ApplyResources(this.panel1, "panel1"); - this.panel1.Name = "panel1"; - // // menuServer // this.menuServer.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { @@ -403,13 +404,13 @@ // // MenuItem1 // + resources.ApplyResources(this.MenuItem1, "MenuItem1"); this.MenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MenuItemImportClient, this.MenuItemImportServer, - this.toolStripSeparator1, this.MenuItemImportClipboard}); + this.MenuItem1.Image = global::v2rayN.Properties.Resources.option; this.MenuItem1.Name = "MenuItem1"; - resources.ApplyResources(this.MenuItem1, "MenuItem1"); // // MenuItemImportClient // @@ -423,25 +424,25 @@ resources.ApplyResources(this.MenuItemImportServer, "MenuItemImportServer"); this.MenuItemImportServer.Click += new System.EventHandler(this.MenuItemImportServer_Click); // - // toolStripSeparator1 - // - this.toolStripSeparator1.Name = "toolStripSeparator1"; - resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); - // // MenuItemImportClipboard // this.MenuItemImportClipboard.Name = "MenuItemImportClipboard"; resources.ApplyResources(this.MenuItemImportClipboard, "MenuItemImportClipboard"); this.MenuItemImportClipboard.Click += new System.EventHandler(this.MenuItemImportClipboard_Click); // + // lbBase + // + resources.ApplyResources(this.lbBase, "lbBase"); + this.lbBase.Name = "lbBase"; + // // AddServerForm // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.btnClose; + this.Controls.Add(this.lbBase); this.Controls.Add(this.groupBox1); this.Controls.Add(this.panel2); - this.Controls.Add(this.panel1); this.Controls.Add(this.menuServer); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Name = "AddServerForm"; @@ -481,7 +482,6 @@ private System.Windows.Forms.Label label7; private System.Windows.Forms.Label label9; private System.Windows.Forms.Label label8; - private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Panel panel2; private System.Windows.Forms.TextBox txtRequestHost; private System.Windows.Forms.Label label10; @@ -496,7 +496,6 @@ private System.Windows.Forms.ToolStripMenuItem MenuItemImportServer; private System.Windows.Forms.Label label15; private System.Windows.Forms.ComboBox cmbStreamSecurity; - private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripMenuItem MenuItemImportClipboard; private System.Windows.Forms.Button btnGUID; private System.Windows.Forms.Label label16; @@ -512,5 +511,7 @@ private System.Windows.Forms.Panel panTlsMore; private System.Windows.Forms.Label label24; private System.Windows.Forms.Label label23; + private System.Windows.Forms.Label lbAdvanced; + private System.Windows.Forms.Label lbBase; } } \ No newline at end of file diff --git a/v2rayN/v2rayN/Forms/AddServerForm.resx b/v2rayN/v2rayN/Forms/AddServerForm.resx index e519eab6..6b33ba7d 100644 --- a/v2rayN/v2rayN/Forms/AddServerForm.resx +++ b/v2rayN/v2rayN/Forms/AddServerForm.resx @@ -143,6 +143,307 @@ 0 + + lbAdvanced + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 0 + + + btnGUID + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 1 + + + label13 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 2 + + + groupBox2 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 3 + + + label9 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 4 + + + label8 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 5 + + + cmbNetwork + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 6 + + + label7 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 7 + + + cmbSecurity + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 8 + + + txtRemarks + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 9 + + + label6 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 10 + + + label5 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 11 + + + txtAlterId + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 12 + + + label4 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 13 + + + txtId + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 14 + + + label3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 15 + + + txtPort + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 16 + + + label2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 17 + + + txtAddress + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 18 + + + label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 19 + + + + Fill + + + 微软雅黑, 9pt + + + 0, 25 + + + 729, 493 + + + 3 + + + groupBox1 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + True + + + 微软雅黑, 9pt, style=Bold + + + NoControl + + + 285, 236 + + + 116, 17 + + + 24 + + + Advanced Setting + + + lbAdvanced + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 0 + 411, 83 @@ -165,16 +466,16 @@ groupBox1 - 0 + 1 True - 285, 203 + 285, 206 - 113, 12 + 101, 17 22 @@ -192,20 +493,247 @@ groupBox1 + 2 + + + label24 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 0 + + + label23 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + 1 + + panTlsMore + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 2 + + + label20 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 3 + + + txtPath + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 4 + + + label19 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 5 + + + label18 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 6 + + + label17 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 7 + + + label16 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 8 + + + label14 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 9 + + + label15 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 10 + + + cmbStreamSecurity + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 11 + + + label12 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 12 + + + txtRequestHost + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 13 + + + label11 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 14 + + + label10 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 15 + + + cmbHeaderType + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 16 + + + Bottom + + + 3, 256 + + + 723, 234 + + + 21 + + + groupBox2 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 3 + True - NoControl - 526, 165 + 470, 165 - 65, 12 + 74, 17 35 @@ -232,10 +760,10 @@ NoControl - 470, 99 + 472, 110 - 89, 12 + 95, 17 34 @@ -255,21 +783,6 @@ 1 - - True - - - 205, 11 - - - 113, 12 - - - 32 - - - Default value true - label22 @@ -282,21 +795,6 @@ 0 - - True - - - 12, 11 - - - 83, 12 - - - 31 - - - allowInsecure - label21 @@ -309,24 +807,6 @@ 1 - - - - - true - - - false - - - 107, 7 - - - 91, 20 - - - 30 - cmbAllowInsecure @@ -360,14 +840,98 @@ 2 + + True + + + 205, 11 + + + 110, 17 + + + 32 + + + Default value true + + + label22 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panTlsMore + + + 0 + + + True + + + 12, 11 + + + 87, 17 + + + 31 + + + allowInsecure + + + label21 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panTlsMore + + + 1 + + + + + + true + + + false + + + 107, 7 + + + 91, 25 + + + 30 + + + cmbAllowInsecure + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panTlsMore + + + 2 + True - 469, 83 + 471, 90 - 203, 12 + 212, 17 29 @@ -388,13 +952,13 @@ 3 - 124, 125 + 124, 129 True - 396, 54 + 336, 54 28 @@ -415,10 +979,10 @@ True - 9, 125 + 6, 130 - 29, 12 + 33, 17 27 @@ -442,10 +1006,10 @@ True - 526, 147 + 470, 147 - 59, 12 + 63, 17 26 @@ -469,10 +1033,10 @@ True - 469, 68 + 471, 75 - 59, 12 + 63, 17 25 @@ -496,10 +1060,10 @@ True - 526, 130 + 470, 130 - 59, 12 + 64, 17 24 @@ -523,10 +1087,10 @@ True - 469, 53 + 471, 60 - 215, 12 + 221, 17 23 @@ -550,10 +1114,10 @@ True - 9, 201 + 6, 204 - 23, 12 + 28, 17 22 @@ -583,7 +1147,7 @@ 124, 197 - 143, 20 + 143, 25 21 @@ -607,7 +1171,7 @@ 282, 34 - 299, 12 + 306, 17 20 @@ -628,13 +1192,13 @@ 12 - 158, 58 + 160, 65 True - 300, 53 + 300, 54 16 @@ -655,10 +1219,10 @@ True - 9, 34 + 6, 34 - 95, 12 + 107, 17 19 @@ -682,10 +1246,10 @@ True - 9, 62 + 6, 68 - 143, 12 + 159, 17 17 @@ -730,7 +1294,7 @@ 124, 30 - 143, 20 + 143, 25 18 @@ -747,33 +1311,6 @@ 16 - - Bottom - - - 3, 237 - - - 723, 234 - - - 21 - - - Keep the default value if it is not clear - - - groupBox2 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - groupBox1 - - - 2 - True @@ -781,7 +1318,7 @@ 353, 175 - 113, 12 + 110, 17 15 @@ -799,7 +1336,7 @@ groupBox1 - 3 + 4 True @@ -808,7 +1345,7 @@ 353, 147 - 119, 12 + 139, 17 14 @@ -826,7 +1363,7 @@ groupBox1 - 4 + 5 tcp @@ -847,7 +1384,7 @@ 195, 171 - 143, 20 + 143, 25 12 @@ -862,7 +1399,7 @@ groupBox1 - 5 + 6 True @@ -871,7 +1408,7 @@ 12, 175 - 167, 12 + 174, 17 13 @@ -889,7 +1426,7 @@ groupBox1 - 6 + 7 aes-128-gcm @@ -907,7 +1444,7 @@ 195, 143 - 143, 20 + 143, 25 6 @@ -922,13 +1459,13 @@ groupBox1 - 7 + 8 - 127, 199 + 127, 202 - 143, 21 + 143, 23 11 @@ -943,16 +1480,16 @@ groupBox1 - 8 + 9 True - 12, 203 + 12, 206 - 95, 12 + 95, 17 10 @@ -970,7 +1507,7 @@ groupBox1 - 9 + 10 True @@ -979,7 +1516,7 @@ 12, 147 - 173, 12 + 174, 17 8 @@ -997,13 +1534,13 @@ groupBox1 - 10 + 11 127, 114 - 143, 21 + 143, 23 7 @@ -1018,7 +1555,7 @@ groupBox1 - 11 + 12 True @@ -1027,7 +1564,7 @@ 12, 118 - 47, 12 + 47, 17 6 @@ -1045,13 +1582,13 @@ groupBox1 - 12 + 13 127, 85 - 278, 21 + 278, 23 5 @@ -1066,7 +1603,7 @@ groupBox1 - 13 + 14 True @@ -1075,7 +1612,7 @@ 12, 89 - 53, 12 + 58, 17 4 @@ -1093,13 +1630,13 @@ groupBox1 - 14 + 15 127, 56 - 143, 21 + 143, 23 3 @@ -1114,7 +1651,7 @@ groupBox1 - 15 + 16 True @@ -1123,7 +1660,7 @@ 12, 60 - 29, 12 + 32, 17 2 @@ -1141,13 +1678,13 @@ groupBox1 - 16 + 17 127, 27 - 359, 21 + 359, 23 1 @@ -1162,7 +1699,7 @@ groupBox1 - 17 + 18 True @@ -1171,7 +1708,7 @@ 12, 31 - 47, 12 + 56, 17 0 @@ -1189,34 +1726,46 @@ groupBox1 - 18 + 19 - - Fill + + btnOK - - 0, 35 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 729, 474 + + panel2 - - 3 + + 1 - - Server + + Bottom - - groupBox1 + + 微软雅黑, 9pt - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 518 - + + 729, 51 + + + 7 + + + panel2 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - - 0 + + 2 303, 17 @@ -1242,84 +1791,9 @@ 1 - - Bottom - - - 0, 509 - - - 729, 60 - - - 7 - - - panel2 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - Top - - - 0, 25 - - - 729, 10 - - - 6 - - - panel1 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - 17, 17 - - 237, 22 - - - Import client configuration - - - 237, 22 - - - Import server configuration - - - 234, 6 - - - 237, 22 - - - Import URL from clipboard - - - 162, 21 - - - Import configuration file - 0, 0 @@ -1341,6 +1815,66 @@ 3 + + None + + + 178, 21 + + + Import configuration file + + + 237, 22 + + + Import client configuration + + + 237, 22 + + + Import server configuration + + + 237, 22 + + + Import URL from clipboard + + + True + + + 微软雅黑, 9pt, style=Bold + + + NoControl + + + 284, 9 + + + 116, 17 + + + 25 + + + Advanced Setting + + + lbBase + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + True @@ -1371,12 +1905,6 @@ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripSeparator1 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - MenuItemImportClipboard diff --git a/v2rayN/v2rayN/Forms/AddServerForm.zh-Hans.resx b/v2rayN/v2rayN/Forms/AddServerForm.zh-Hans.resx index 7c5b3623..5d722bb4 100644 --- a/v2rayN/v2rayN/Forms/AddServerForm.zh-Hans.resx +++ b/v2rayN/v2rayN/Forms/AddServerForm.zh-Hans.resx @@ -191,13 +191,13 @@ 89, 12 - 伪装类型(type) + 伪装类型 89, 12 - 伪装域名(host) + 伪装域名 143, 12 @@ -221,7 +221,7 @@ 107, 12 - 传输协议(network) + 传输协议 127, 143 @@ -233,25 +233,25 @@ 83, 12 - 别名(remarks) + 别名 113, 12 - 加密方式(security) + 加密方式 95, 12 - 额外ID(alterId) + 额外ID 65, 12 - 用户ID(id) + 用户ID 65, 12 @@ -263,7 +263,7 @@ 83, 12 - 地址(address) + 地址 确定(&O) @@ -298,4 +298,10 @@ 编辑或添加[VMess]服务器 + + 进阶设置 + + + 基础设置 + \ No newline at end of file