mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-02 05:08:49 +00:00
Vmess 2 VMess
This commit is contained in:
parent
d418f79d8f
commit
209786cdb6
11 changed files with 158 additions and 159 deletions
|
@ -23,7 +23,7 @@ namespace v2rayN.Forms
|
|||
|
||||
switch (eConfigType)
|
||||
{
|
||||
case EConfigType.Vmess:
|
||||
case EConfigType.VMess:
|
||||
panVmess.Dock = DockStyle.Fill;
|
||||
panVmess.Visible = true;
|
||||
|
||||
|
@ -84,7 +84,7 @@ namespace v2rayN.Forms
|
|||
|
||||
switch (eConfigType)
|
||||
{
|
||||
case EConfigType.Vmess:
|
||||
case EConfigType.VMess:
|
||||
txtId.Text = vmessItem.id;
|
||||
txtAlterId.Text = vmessItem.alterId.ToString();
|
||||
cmbSecurity.Text = vmessItem.security;
|
||||
|
@ -124,7 +124,7 @@ namespace v2rayN.Forms
|
|||
|
||||
switch (eConfigType)
|
||||
{
|
||||
case EConfigType.Vmess:
|
||||
case EConfigType.VMess:
|
||||
txtId.Text = "";
|
||||
txtAlterId.Text = "0";
|
||||
cmbSecurity.Text = Global.DefaultSecurity;
|
||||
|
@ -164,7 +164,7 @@ namespace v2rayN.Forms
|
|||
|
||||
switch (eConfigType)
|
||||
{
|
||||
case EConfigType.Vmess:
|
||||
case EConfigType.VMess:
|
||||
id = txtId.Text;
|
||||
alterId = txtAlterId.Text;
|
||||
security = cmbSecurity.Text;
|
||||
|
@ -241,7 +241,7 @@ namespace v2rayN.Forms
|
|||
int ret = -1;
|
||||
switch (eConfigType)
|
||||
{
|
||||
case EConfigType.Vmess:
|
||||
case EConfigType.VMess:
|
||||
ret = ConfigHandler.AddServer(ref config, vmessItem);
|
||||
break;
|
||||
case EConfigType.Shadowsocks:
|
||||
|
|
|
@ -666,7 +666,7 @@ namespace v2rayN.Forms
|
|||
|
||||
private void menuAddVmessServer_Click(object sender, EventArgs e)
|
||||
{
|
||||
ShowServerForm(EConfigType.Vmess, -1);
|
||||
ShowServerForm(EConfigType.VMess, -1);
|
||||
}
|
||||
|
||||
private void menuAddVlessServer_Click(object sender, EventArgs e)
|
||||
|
|
|
@ -245,7 +245,7 @@ namespace v2rayN.Handler
|
|||
/// <returns></returns>
|
||||
public static int AddServer(ref Config config, VmessItem vmessItem, bool toFile = true)
|
||||
{
|
||||
vmessItem.configType = EConfigType.Vmess;
|
||||
vmessItem.configType = EConfigType.VMess;
|
||||
|
||||
vmessItem.address = vmessItem.address.TrimEx();
|
||||
vmessItem.id = vmessItem.id.TrimEx();
|
||||
|
@ -609,7 +609,7 @@ namespace v2rayN.Handler
|
|||
{
|
||||
return 0;
|
||||
}
|
||||
if (vmessItem.configType == EConfigType.Vmess)
|
||||
if (vmessItem.configType == EConfigType.VMess)
|
||||
{
|
||||
string path = "";
|
||||
string host = "";
|
||||
|
@ -896,7 +896,7 @@ namespace v2rayN.Handler
|
|||
//groupId
|
||||
vmessItem.groupId = groupId;
|
||||
|
||||
if (vmessItem.configType == EConfigType.Vmess)
|
||||
if (vmessItem.configType == EConfigType.VMess)
|
||||
{
|
||||
if (AddServer(ref config, vmessItem, false) == 0)
|
||||
{
|
||||
|
|
|
@ -95,7 +95,7 @@ namespace v2rayN.Handler
|
|||
graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
|
||||
//graphics.FillRectangle(drawBrush, new Rectangle(0, 0, width, height));
|
||||
graphics.DrawImage(new Bitmap(item.customIcon), 0, 0, width, height);
|
||||
graphics.FillEllipse(drawBrush, width/2, width/2, width/2, width/2);
|
||||
graphics.FillEllipse(drawBrush, width / 2, width / 2, width / 2, width / 2);
|
||||
|
||||
Icon createdIcon = Icon.FromHandle(bitmap.GetHicon());
|
||||
|
||||
|
@ -118,8 +118,7 @@ namespace v2rayN.Handler
|
|||
{
|
||||
return;
|
||||
}
|
||||
if (item.configType != EConfigType.Vmess
|
||||
&& item.configType != EConfigType.VLESS)
|
||||
if (item.configType == EConfigType.Custom)
|
||||
{
|
||||
UI.Show(ResUI.NonVmessService);
|
||||
return;
|
||||
|
@ -158,7 +157,7 @@ namespace v2rayN.Handler
|
|||
{
|
||||
return;
|
||||
}
|
||||
if (item.configType != EConfigType.Vmess
|
||||
if (item.configType != EConfigType.VMess
|
||||
&& item.configType != EConfigType.VLESS)
|
||||
{
|
||||
UI.Show(ResUI.NonVmessService);
|
||||
|
|
|
@ -31,7 +31,7 @@ namespace v2rayN.Handler
|
|||
|
||||
switch (item.configType)
|
||||
{
|
||||
case EConfigType.Vmess:
|
||||
case EConfigType.VMess:
|
||||
url = ShareVmess(item);
|
||||
break;
|
||||
case EConfigType.Shadowsocks:
|
||||
|
@ -374,7 +374,7 @@ namespace v2rayN.Handler
|
|||
msg = string.Empty;
|
||||
var vmessItem = new VmessItem
|
||||
{
|
||||
configType = EConfigType.Vmess
|
||||
configType = EConfigType.VMess
|
||||
};
|
||||
|
||||
result = result.Substring(Global.vmessProtocol.Length);
|
||||
|
@ -422,7 +422,7 @@ namespace v2rayN.Handler
|
|||
{
|
||||
VmessItem vmessItem = new VmessItem
|
||||
{
|
||||
configType = EConfigType.Vmess
|
||||
configType = EConfigType.VMess
|
||||
};
|
||||
result = result.Substring(Global.vmessProtocol.Length);
|
||||
int indexSplit = result.IndexOf("?");
|
||||
|
@ -460,7 +460,7 @@ namespace v2rayN.Handler
|
|||
{
|
||||
VmessItem i = new VmessItem
|
||||
{
|
||||
configType = EConfigType.Vmess,
|
||||
configType = EConfigType.VMess,
|
||||
security = "auto"
|
||||
};
|
||||
|
||||
|
|
|
@ -363,7 +363,7 @@ namespace v2rayN.Handler
|
|||
{
|
||||
var config = LazyConfig.Instance.GetConfig();
|
||||
Outbounds outbound = v2rayConfig.outbounds[0];
|
||||
if (node.configType == EConfigType.Vmess)
|
||||
if (node.configType == EConfigType.VMess)
|
||||
{
|
||||
VnextItem vnextItem;
|
||||
if (outbound.settings.vnext.Count <= 0)
|
||||
|
@ -1076,7 +1076,7 @@ namespace v2rayN.Handler
|
|||
usersItem.id = node.id;
|
||||
usersItem.email = Global.userEMail;
|
||||
|
||||
if (node.configType == EConfigType.Vmess)
|
||||
if (node.configType == EConfigType.VMess)
|
||||
{
|
||||
inbound.protocol = Global.vmessProtocolLite;
|
||||
usersItem.alterId = node.alterId;
|
||||
|
@ -1492,7 +1492,7 @@ namespace v2rayN.Handler
|
|||
{
|
||||
continue;
|
||||
}
|
||||
if (it.configType == EConfigType.Vmess || it.configType == EConfigType.VLESS)
|
||||
if (it.configType == EConfigType.VMess || it.configType == EConfigType.VLESS)
|
||||
{
|
||||
if (!Utils.IsGuidByParse(configCopy.GetVmessItem(it.indexId).id))
|
||||
{
|
||||
|
|
|
@ -282,7 +282,7 @@ namespace v2rayN.Mode
|
|||
public VmessItem()
|
||||
{
|
||||
indexId = string.Empty;
|
||||
configType = EConfigType.Vmess;
|
||||
configType = EConfigType.VMess;
|
||||
configVersion = 2;
|
||||
sort = 0;
|
||||
address = string.Empty;
|
||||
|
@ -323,7 +323,7 @@ namespace v2rayN.Mode
|
|||
}
|
||||
switch (configType)
|
||||
{
|
||||
case EConfigType.Vmess:
|
||||
case EConfigType.VMess:
|
||||
case EConfigType.Shadowsocks:
|
||||
case EConfigType.Socks:
|
||||
case EConfigType.VLESS:
|
||||
|
|
|
@ -3,7 +3,7 @@ namespace v2rayN.Mode
|
|||
{
|
||||
public enum EConfigType
|
||||
{
|
||||
Vmess = 1,
|
||||
VMess = 1,
|
||||
Custom = 2,
|
||||
Shadowsocks = 3,
|
||||
Socks = 4,
|
||||
|
|
264
v2rayN/v2rayN/Resx/ResUI.Designer.cs
generated
264
v2rayN/v2rayN/Resx/ResUI.Designer.cs
generated
|
@ -1,10 +1,10 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
|
@ -13,13 +13,13 @@ namespace v2rayN.Resx {
|
|||
|
||||
|
||||
/// <summary>
|
||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||
/// 一个强类型的资源类,用于查找本地化的字符串等。
|
||||
/// </summary>
|
||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
|
||||
// 此类是由 StronglyTypedResourceBuilder
|
||||
// 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
|
||||
// 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
|
||||
// (以 /str 作为命令选项),或重新生成 VS 项目。
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
internal class ResUI {
|
||||
|
@ -33,7 +33,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the cached ResourceManager instance used by this class.
|
||||
/// 返回此类使用的缓存的 ResourceManager 实例。
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||
|
@ -47,8 +47,8 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Overrides the current thread's CurrentUICulture property for all
|
||||
/// resource lookups using this strongly typed resource class.
|
||||
/// 重写当前线程的 CurrentUICulture 属性,对
|
||||
/// 使用此强类型资源类的所有资源查找执行重写。
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Globalization.CultureInfo Culture {
|
||||
|
@ -61,7 +61,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Do you want to append rules? Choose yes to append, choose otherwise to replace.
|
||||
/// 查找类似 Do you want to append rules? Choose yes to append, choose otherwise to replace 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string AddBatchRoutingRulesYesNo {
|
||||
get {
|
||||
|
@ -70,7 +70,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to All servers.
|
||||
/// 查找类似 All servers 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string AllGroupServers {
|
||||
get {
|
||||
|
@ -79,7 +79,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Batch export subscription to clipboard successfully.
|
||||
/// 查找类似 Batch export subscription to clipboard successfully 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string BatchExportSubscriptionSuccessfully {
|
||||
get {
|
||||
|
@ -88,7 +88,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Batch export share URL to clipboard successfully.
|
||||
/// 查找类似 Batch export share URL to clipboard successfully 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string BatchExportURLSuccessfully {
|
||||
get {
|
||||
|
@ -97,7 +97,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please check the server settings first.
|
||||
/// 查找类似 Please check the server settings first 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string CheckServerSettings {
|
||||
get {
|
||||
|
@ -106,7 +106,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Invalid configuration format.
|
||||
/// 查找类似 Invalid configuration format 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string ConfigurationFormatIncorrect {
|
||||
get {
|
||||
|
@ -115,7 +115,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Note that custom configuration relies entirely on your own configuration and does not work with all settings. If you want to use the system proxy, please modify the listening port manually..
|
||||
/// 查找类似 Note that custom configuration relies entirely on your own configuration and does not work with all settings. If you want to use the system proxy, please modify the listening port manually. 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string CustomServerTips {
|
||||
get {
|
||||
|
@ -124,7 +124,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Downloading....
|
||||
/// 查找类似 Downloading... 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string Downloading {
|
||||
get {
|
||||
|
@ -133,7 +133,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Download.
|
||||
/// 查找类似 Download 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string downloadSpeed {
|
||||
get {
|
||||
|
@ -142,7 +142,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Whether to download? {0}.
|
||||
/// 查找类似 Whether to download? {0} 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string DownloadYesNo {
|
||||
get {
|
||||
|
@ -151,7 +151,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Failed to convert configuration file.
|
||||
/// 查找类似 Failed to convert configuration file 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FailedConversionConfiguration {
|
||||
get {
|
||||
|
@ -160,7 +160,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Failed to generate default configuration file.
|
||||
/// 查找类似 Failed to generate default configuration file 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FailedGenDefaultConfiguration {
|
||||
get {
|
||||
|
@ -169,7 +169,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Failed to get the default configuration.
|
||||
/// 查找类似 Failed to get the default configuration 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FailedGetDefaultConfiguration {
|
||||
get {
|
||||
|
@ -178,7 +178,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Failed to import custom configuration server.
|
||||
/// 查找类似 Failed to import custom configuration server 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FailedImportedCustomServer {
|
||||
get {
|
||||
|
@ -187,7 +187,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Failed to read configuration file.
|
||||
/// 查找类似 Failed to read configuration file 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FailedReadConfiguration {
|
||||
get {
|
||||
|
@ -196,7 +196,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please fill in the correct custom DNS.
|
||||
/// 查找类似 Please fill in the correct custom DNS 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FillCorrectDNSText {
|
||||
get {
|
||||
|
@ -205,7 +205,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please fill in the correct format server port.
|
||||
/// 查找类似 Please fill in the correct format server port 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FillCorrectServerPort {
|
||||
get {
|
||||
|
@ -214,7 +214,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please fill in the KCP parameters correctly.
|
||||
/// 查找类似 Please fill in the KCP parameters correctly 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FillKcpParameters {
|
||||
get {
|
||||
|
@ -223,7 +223,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please fill in the local listening port.
|
||||
/// 查找类似 Please fill in the local listening port 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FillLocalListeningPort {
|
||||
get {
|
||||
|
@ -232,7 +232,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please fill in the password.
|
||||
/// 查找类似 Please fill in the password 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FillPassword {
|
||||
get {
|
||||
|
@ -241,7 +241,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please fill in the server address.
|
||||
/// 查找类似 Please fill in the server address 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FillServerAddress {
|
||||
get {
|
||||
|
@ -250,7 +250,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please browse to import server configuration.
|
||||
/// 查找类似 Please browse to import server configuration 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FillServerAddressCustom {
|
||||
get {
|
||||
|
@ -259,7 +259,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please fill in the user ID.
|
||||
/// 查找类似 Please fill in the user ID 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string FillUUID {
|
||||
get {
|
||||
|
@ -268,7 +268,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to is not the correct client configuration file, please check.
|
||||
/// 查找类似 is not the correct client configuration file, please check 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string IncorrectClientConfiguration {
|
||||
get {
|
||||
|
@ -277,7 +277,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to is not the correct configuration, please check.
|
||||
/// 查找类似 is not the correct configuration, please check 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string Incorrectconfiguration {
|
||||
get {
|
||||
|
@ -286,7 +286,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to is not the correct server configuration file, please check.
|
||||
/// 查找类似 is not the correct server configuration file, please check 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string IncorrectServerConfiguration {
|
||||
get {
|
||||
|
@ -295,7 +295,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Initial Configuration.
|
||||
/// 查找类似 Initial Configuration 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string InitialConfiguration {
|
||||
get {
|
||||
|
@ -304,7 +304,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {0} already up to date..
|
||||
/// 查找类似 {0} already up to date. 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string IsLatestCore {
|
||||
get {
|
||||
|
@ -313,7 +313,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {0} already up to date..
|
||||
/// 查找类似 {0} already up to date. 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string IsLatestN {
|
||||
get {
|
||||
|
@ -322,7 +322,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to LAN.
|
||||
/// 查找类似 LAN 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LabLAN {
|
||||
get {
|
||||
|
@ -331,7 +331,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Local.
|
||||
/// 查找类似 Local 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LabLocal {
|
||||
get {
|
||||
|
@ -340,7 +340,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Address.
|
||||
/// 查找类似 Address 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvAddress {
|
||||
get {
|
||||
|
@ -349,7 +349,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Alias.
|
||||
/// 查找类似 Alias 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvAlias {
|
||||
get {
|
||||
|
@ -358,7 +358,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Count.
|
||||
/// 查找类似 Count 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvCount {
|
||||
get {
|
||||
|
@ -367,7 +367,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Custom Icon.
|
||||
/// 查找类似 Custom Icon 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvCustomIcon {
|
||||
get {
|
||||
|
@ -376,7 +376,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Security.
|
||||
/// 查找类似 Security 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvEncryptionMethod {
|
||||
get {
|
||||
|
@ -385,7 +385,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Port.
|
||||
/// 查找类似 Port 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvPort {
|
||||
get {
|
||||
|
@ -394,7 +394,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to remarks.
|
||||
/// 查找类似 remarks 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvRemarks {
|
||||
get {
|
||||
|
@ -403,7 +403,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Type.
|
||||
/// 查找类似 Type 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvServiceType {
|
||||
get {
|
||||
|
@ -412,7 +412,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Subs.
|
||||
/// 查找类似 Subs 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvSubscription {
|
||||
get {
|
||||
|
@ -421,7 +421,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Test Results.
|
||||
/// 查找类似 Test Results 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvTestResults {
|
||||
get {
|
||||
|
@ -430,7 +430,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to TLS.
|
||||
/// 查找类似 TLS 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvTLS {
|
||||
get {
|
||||
|
@ -439,7 +439,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Download traffic today.
|
||||
/// 查找类似 Download traffic today 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvTodayDownloadDataAmount {
|
||||
get {
|
||||
|
@ -448,7 +448,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Upload traffic today.
|
||||
/// 查找类似 Upload traffic today 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvTodayUploadDataAmount {
|
||||
get {
|
||||
|
@ -457,7 +457,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Total download traffic.
|
||||
/// 查找类似 Total download traffic 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvTotalDownloadDataAmount {
|
||||
get {
|
||||
|
@ -466,7 +466,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Total upload traffic.
|
||||
/// 查找类似 Total upload traffic 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvTotalUploadDataAmount {
|
||||
get {
|
||||
|
@ -475,7 +475,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Transport.
|
||||
/// 查找类似 Transport 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvTransportProtocol {
|
||||
get {
|
||||
|
@ -484,7 +484,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Url.
|
||||
/// 查找类似 Url 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string LvUrl {
|
||||
get {
|
||||
|
@ -493,7 +493,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Medium.
|
||||
/// 查找类似 Medium 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MediumFresh {
|
||||
get {
|
||||
|
@ -502,7 +502,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Clear original subscription content.
|
||||
/// 查找类似 Clear original subscription content 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgClearSubscription {
|
||||
get {
|
||||
|
@ -511,7 +511,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Download GeoFile: {0} successfully.
|
||||
/// 查找类似 Download GeoFile: {0} successfully 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgDownloadGeoFileSuccessfully {
|
||||
get {
|
||||
|
@ -520,7 +520,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Download Core successfully.
|
||||
/// 查找类似 Download Core successfully 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgDownloadV2rayCoreSuccessfully {
|
||||
get {
|
||||
|
@ -529,7 +529,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Failed to import subscription content.
|
||||
/// 查找类似 Failed to import subscription content 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgFailedImportSubscription {
|
||||
get {
|
||||
|
@ -538,7 +538,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Get subscription content successfully.
|
||||
/// 查找类似 Get subscription content successfully 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgGetSubscriptionSuccessfully {
|
||||
get {
|
||||
|
@ -547,7 +547,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Information (Filter : {0}).
|
||||
/// 查找类似 Information (Filter : {0}) 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgInformationTitle {
|
||||
get {
|
||||
|
@ -556,7 +556,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please fill in the address (Url).
|
||||
/// 查找类似 Please fill in the address (Url) 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgNeedUrl {
|
||||
get {
|
||||
|
@ -565,7 +565,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to No valid subscriptions set.
|
||||
/// 查找类似 No valid subscriptions set 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgNoValidSubscription {
|
||||
get {
|
||||
|
@ -574,7 +574,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to PAC update failed.
|
||||
/// 查找类似 PAC update failed 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgPACUpdateFailed {
|
||||
get {
|
||||
|
@ -583,7 +583,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to PAC update succeeded.
|
||||
/// 查找类似 PAC update succeeded 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgPACUpdateSuccessfully {
|
||||
get {
|
||||
|
@ -592,7 +592,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Resolve {0} successfully.
|
||||
/// 查找类似 Resolve {0} successfully 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgParsingSuccessfully {
|
||||
get {
|
||||
|
@ -601,7 +601,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Servers (Filter : {0}).
|
||||
/// 查找类似 Servers (Filter : {0}) 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgServerTitle {
|
||||
get {
|
||||
|
@ -610,7 +610,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Simplify PAC Success.
|
||||
/// 查找类似 Simplify PAC Success 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgSimplifyPAC {
|
||||
get {
|
||||
|
@ -619,7 +619,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Start getting subscriptions.
|
||||
/// 查找类似 Start getting subscriptions 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgStartGettingSubscriptions {
|
||||
get {
|
||||
|
@ -628,7 +628,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Start updating {0}....
|
||||
/// 查找类似 Start updating {0}... 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgStartUpdating {
|
||||
get {
|
||||
|
@ -637,7 +637,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Start updating PAC....
|
||||
/// 查找类似 Start updating PAC... 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgStartUpdatingPAC {
|
||||
get {
|
||||
|
@ -646,7 +646,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Invalid subscription content.
|
||||
/// 查找类似 Invalid subscription content 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgSubscriptionDecodingFailed {
|
||||
get {
|
||||
|
@ -655,7 +655,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to is unpacking....
|
||||
/// 查找类似 is unpacking... 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgUnpacking {
|
||||
get {
|
||||
|
@ -664,7 +664,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Update subscription end.
|
||||
/// 查找类似 Update subscription end 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgUpdateSubscriptionEnd {
|
||||
get {
|
||||
|
@ -673,7 +673,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Update subscription starts.
|
||||
/// 查找类似 Update subscription starts 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgUpdateSubscriptionStart {
|
||||
get {
|
||||
|
@ -682,7 +682,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Update Core successfully.
|
||||
/// 查找类似 Update Core successfully 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgUpdateV2rayCoreSuccessfully {
|
||||
get {
|
||||
|
@ -691,7 +691,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Update Core successfully! Restarting service....
|
||||
/// 查找类似 Update Core successfully! Restarting service... 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string MsgUpdateV2rayCoreSuccessfullyMore {
|
||||
get {
|
||||
|
@ -700,7 +700,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to This feature relies on the Http global proxy, please set it correctly first..
|
||||
/// 查找类似 This feature relies on the Http global proxy, please set it correctly first. 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string NeedHttpGlobalProxy {
|
||||
get {
|
||||
|
@ -709,7 +709,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Non-vmess or ss protocol.
|
||||
/// 查找类似 Non-VMess or ss protocol 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string NonvmessOrssProtocol {
|
||||
get {
|
||||
|
@ -718,7 +718,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to non-Vmess service, this feature is invalid.
|
||||
/// 查找类似 non-standard service, this feature is invalid 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string NonVmessService {
|
||||
get {
|
||||
|
@ -727,7 +727,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Core not found, please download: {0}.
|
||||
/// 查找类似 Core not found, please download: {0} 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string NotFoundCore {
|
||||
get {
|
||||
|
@ -736,7 +736,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Scan completed, no valid QR code found.
|
||||
/// 查找类似 Scan completed, no valid QR code found 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string NoValidQRcodeFound {
|
||||
get {
|
||||
|
@ -745,7 +745,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to operation failed, please check and retry.
|
||||
/// 查找类似 operation failed, please check and retry 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string OperationFailed {
|
||||
get {
|
||||
|
@ -754,7 +754,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Operation success.
|
||||
/// 查找类似 Operation success 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string OperationSuccess {
|
||||
get {
|
||||
|
@ -763,7 +763,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please Fill Remarks.
|
||||
/// 查找类似 Please Fill Remarks 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string PleaseFillRemarks {
|
||||
get {
|
||||
|
@ -772,7 +772,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please select the encryption method.
|
||||
/// 查找类似 Please select the encryption method 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string PleaseSelectEncryption {
|
||||
get {
|
||||
|
@ -781,7 +781,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please select a protocol.
|
||||
/// 查找类似 Please select a protocol 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string PleaseSelectProtocol {
|
||||
get {
|
||||
|
@ -790,7 +790,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please select rules.
|
||||
/// 查找类似 Please select rules 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string PleaseSelectRules {
|
||||
get {
|
||||
|
@ -799,7 +799,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please select the server first.
|
||||
/// 查找类似 Please select the server first 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string PleaseSelectServer {
|
||||
get {
|
||||
|
@ -808,7 +808,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Fast.
|
||||
/// 查找类似 Fast 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string QuickFresh {
|
||||
get {
|
||||
|
@ -817,7 +817,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Global hotkey {0} registered failed, reason {1}.
|
||||
/// 查找类似 Global hotkey {0} registered failed, reason {1} 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string RegisterGlobalHotkeyFailed {
|
||||
get {
|
||||
|
@ -826,7 +826,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Global hotkey {0} registered successfully.
|
||||
/// 查找类似 Global hotkey {0} registered successfully 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string RegisterGlobalHotkeySuccessfully {
|
||||
get {
|
||||
|
@ -835,7 +835,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Servers deduplication completed. Old: {0}, New: {1}..
|
||||
/// 查找类似 Servers deduplication completed. Old: {0}, New: {1}. 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string RemoveDuplicateServerResult {
|
||||
get {
|
||||
|
@ -844,7 +844,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Are you sure to remove the rules?.
|
||||
/// 查找类似 Are you sure to remove the rules? 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string RemoveRules {
|
||||
get {
|
||||
|
@ -853,7 +853,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Are you sure to remove the server?.
|
||||
/// 查找类似 Are you sure to remove the server? 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string RemoveServer {
|
||||
get {
|
||||
|
@ -862,7 +862,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {0},One of the required..
|
||||
/// 查找类似 {0},One of the required. 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string RoutingRuleDetailRequiredTips {
|
||||
get {
|
||||
|
@ -871,7 +871,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to The client configuration file is saved at: {0}.
|
||||
/// 查找类似 The client configuration file is saved at: {0} 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string SaveClientConfigurationIn {
|
||||
get {
|
||||
|
@ -880,7 +880,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to The server configuration file is saved at: {0}.
|
||||
/// 查找类似 The server configuration file is saved at: {0} 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string SaveServerConfigurationIn {
|
||||
get {
|
||||
|
@ -889,7 +889,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Slow.
|
||||
/// 查找类似 Slow 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string SlowFresh {
|
||||
get {
|
||||
|
@ -898,7 +898,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Note: This feature relies on the Http global proxy. Please manually adjust the Http global proxy and active node after testing..
|
||||
/// 查找类似 Note: This feature relies on the Http global proxy. Please manually adjust the Http global proxy and active node after testing. 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string SpeedServerTips {
|
||||
get {
|
||||
|
@ -907,7 +907,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Speed Test....
|
||||
/// 查找类似 Speed Test... 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string Speedtesting {
|
||||
get {
|
||||
|
@ -916,7 +916,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to PAC failed to start. Please run this program as Administrator..
|
||||
/// 查找类似 PAC failed to start. Please run this program as Administrator. 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string StartPacFailed {
|
||||
get {
|
||||
|
@ -925,7 +925,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Start service ({0})....
|
||||
/// 查找类似 Start service ({0})... 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string StartService {
|
||||
get {
|
||||
|
@ -934,8 +934,8 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Configuration successful
|
||||
///{0}.
|
||||
/// 查找类似 Configuration successful
|
||||
///{0} 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string SuccessfulConfiguration {
|
||||
get {
|
||||
|
@ -944,7 +944,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Custom configuration server imported successfully..
|
||||
/// 查找类似 Custom configuration server imported successfully. 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string SuccessfullyImportedCustomServer {
|
||||
get {
|
||||
|
@ -953,7 +953,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {0} servers have been imported from clipboard..
|
||||
/// 查找类似 {0} servers have been imported from clipboard. 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string SuccessfullyImportedServerViaClipboard {
|
||||
get {
|
||||
|
@ -962,7 +962,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Scan import URL successfully.
|
||||
/// 查找类似 Scan import URL successfully 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string SuccessfullyImportedServerViaScan {
|
||||
get {
|
||||
|
@ -971,7 +971,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to System proxy.
|
||||
/// 查找类似 System proxy 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string SystemProxy {
|
||||
get {
|
||||
|
@ -980,7 +980,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to The ping of current service: {0} ms.
|
||||
/// 查找类似 The ping of current service: {0} ms 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TestMeOutput {
|
||||
get {
|
||||
|
@ -989,7 +989,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Too many servers, please open the main interface.
|
||||
/// 查找类似 Too many servers, please open the main interface 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TooManyServersTip {
|
||||
get {
|
||||
|
@ -998,7 +998,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *tcp camouflage type.
|
||||
/// 查找类似 *tcp camouflage type 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportHeaderTypeTip1 {
|
||||
get {
|
||||
|
@ -1007,7 +1007,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *kcp camouflage type.
|
||||
/// 查找类似 *kcp camouflage type 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportHeaderTypeTip2 {
|
||||
get {
|
||||
|
@ -1016,7 +1016,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *QUIC camouflage type.
|
||||
/// 查找类似 *QUIC camouflage type 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportHeaderTypeTip3 {
|
||||
get {
|
||||
|
@ -1025,7 +1025,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *grpc mode.
|
||||
/// 查找类似 *grpc mode 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportHeaderTypeTip4 {
|
||||
get {
|
||||
|
@ -1034,7 +1034,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *ws path.
|
||||
/// 查找类似 *ws path 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportPathTip1 {
|
||||
get {
|
||||
|
@ -1043,7 +1043,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *h2 path.
|
||||
/// 查找类似 *h2 path 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportPathTip2 {
|
||||
get {
|
||||
|
@ -1052,7 +1052,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *QUIC key/Kcp seed.
|
||||
/// 查找类似 *QUIC key/Kcp seed 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportPathTip3 {
|
||||
get {
|
||||
|
@ -1061,7 +1061,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *grpc serviceName.
|
||||
/// 查找类似 *grpc serviceName 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportPathTip4 {
|
||||
get {
|
||||
|
@ -1070,7 +1070,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *Kcp seed.
|
||||
/// 查找类似 *Kcp seed 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportPathTip5 {
|
||||
get {
|
||||
|
@ -1079,7 +1079,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *http host Separated by commas (,).
|
||||
/// 查找类似 *http host Separated by commas (,) 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportRequestHostTip1 {
|
||||
get {
|
||||
|
@ -1088,7 +1088,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *ws host.
|
||||
/// 查找类似 *ws host 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportRequestHostTip2 {
|
||||
get {
|
||||
|
@ -1097,7 +1097,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *h2 host Separated by commas (,).
|
||||
/// 查找类似 *h2 host Separated by commas (,) 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportRequestHostTip3 {
|
||||
get {
|
||||
|
@ -1106,7 +1106,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to *QUIC securty.
|
||||
/// 查找类似 *QUIC securty 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string TransportRequestHostTip4 {
|
||||
get {
|
||||
|
@ -1115,7 +1115,7 @@ namespace v2rayN.Resx {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Ungrouped.
|
||||
/// 查找类似 Ungrouped 的本地化字符串。
|
||||
/// </summary>
|
||||
internal static string UngroupedServers {
|
||||
get {
|
||||
|
|
|
@ -289,10 +289,10 @@
|
|||
<value> This feature relies on the Http global proxy, please set it correctly first.</value>
|
||||
</data>
|
||||
<data name="NonvmessOrssProtocol" xml:space="preserve">
|
||||
<value>Non-vmess or ss protocol</value>
|
||||
<value>Non-VMess or ss protocol</value>
|
||||
</data>
|
||||
<data name="NonVmessService" xml:space="preserve">
|
||||
<value> non-Vmess service, this feature is invalid</value>
|
||||
<value> non-standard service, this feature is invalid</value>
|
||||
</data>
|
||||
<data name="NotFoundCore" xml:space="preserve">
|
||||
<value>Core not found, please download: {0}</value>
|
||||
|
|
|
@ -289,10 +289,10 @@
|
|||
<value>此功能依赖Http全局代理,请先设置正确。</value>
|
||||
</data>
|
||||
<data name="NonvmessOrssProtocol" xml:space="preserve">
|
||||
<value>非vmess或ss协议</value>
|
||||
<value>非VMess或ss协议</value>
|
||||
</data>
|
||||
<data name="NonVmessService" xml:space="preserve">
|
||||
<value>非Vmess服务,此功能无效</value>
|
||||
<value>非标准服务,此功能无效</value>
|
||||
</data>
|
||||
<data name="NotFoundCore" xml:space="preserve">
|
||||
<value>找不到Core,下载地址: {0}</value>
|
||||
|
|
Loading…
Reference in a new issue