diff --git a/clashN/clashN.sln b/clashN/clashN.sln index 45457a6..5e22d6d 100644 --- a/clashN/clashN.sln +++ b/clashN/clashN.sln @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.3.32811.315 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "clashN", "clashN\clashN.csproj", "{6DE127CA-1763-4236-B297-D2EF9CB2EC9B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClashN", "clashN\ClashN.csproj", "{6DE127CA-1763-4236-B297-D2EF9CB2EC9B}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "clashUpgrade", "clashUpgrade\clashUpgrade.csproj", "{59E0AF2B-9915-47F2-9F5F-9008F47DAE5F}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClashUpgrade", "clashUpgrade\ClashUpgrade.csproj", "{59E0AF2B-9915-47F2-9F5F-9008F47DAE5F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PacLib", "..\..\v2rayN\v2rayN\PacLib\PacLib.csproj", "{E27F1C24-9A0A-47D5-8723-B17D00F264FB}" EndProject diff --git a/clashN/clashN/App.xaml b/clashN/clashN/App.xaml index 0ac50ce..2185cee 100644 --- a/clashN/clashN/App.xaml +++ b/clashN/clashN/App.xaml @@ -1,9 +1,9 @@  diff --git a/clashN/clashN/App.xaml.cs b/clashN/clashN/App.xaml.cs index b3b8692..66c73d6 100644 --- a/clashN/clashN/App.xaml.cs +++ b/clashN/clashN/App.xaml.cs @@ -1,10 +1,10 @@ -using clashN.Handler; -using clashN.Mode; -using clashN.Tool; +using ClashN.Handler; +using ClashN.Mode; +using ClashN.Tool; using System.Windows; using System.Windows.Threading; -namespace clashN +namespace ClashN { /// /// Interaction logic for App.xaml diff --git a/clashN/clashN/Base/HttpClientHelper.cs b/clashN/clashN/Base/HttpClientHelper.cs index a0f728c..5214b61 100644 --- a/clashN/clashN/Base/HttpClientHelper.cs +++ b/clashN/clashN/Base/HttpClientHelper.cs @@ -2,7 +2,7 @@ using System.Net.Http; using System.Net.Http.Headers; -namespace clashN.Base +namespace ClashN.Base { /// /// diff --git a/clashN/clashN/Base/StringEx.cs b/clashN/clashN/Base/StringEx.cs index 6d399da..89621d0 100644 --- a/clashN/clashN/Base/StringEx.cs +++ b/clashN/clashN/Base/StringEx.cs @@ -1,6 +1,6 @@ using System.IO; -namespace clashN.Base +namespace ClashN.Base { static class StringEx { diff --git a/clashN/clashN/Converters/DelayColorConverter.cs b/clashN/clashN/Converters/DelayColorConverter.cs index 37c31cd..bbbd613 100644 --- a/clashN/clashN/Converters/DelayColorConverter.cs +++ b/clashN/clashN/Converters/DelayColorConverter.cs @@ -1,7 +1,7 @@ using System.Windows.Data; using System.Windows.Media; -namespace clashN.Converters +namespace ClashN.Converters { public class DelayColorConverter : IValueConverter { diff --git a/clashN/clashN/Converters/MaterialDesignFonts.cs b/clashN/clashN/Converters/MaterialDesignFonts.cs index 8befa15..a8426d2 100644 --- a/clashN/clashN/Converters/MaterialDesignFonts.cs +++ b/clashN/clashN/Converters/MaterialDesignFonts.cs @@ -1,7 +1,7 @@ -using clashN.Handler; +using ClashN.Handler; using System.Windows.Media; -namespace clashN.Converters +namespace ClashN.Converters { public class MaterialDesignFonts { diff --git a/clashN/clashN/Global.cs b/clashN/clashN/Global.cs index 5d3123c..70cb753 100644 --- a/clashN/clashN/Global.cs +++ b/clashN/clashN/Global.cs @@ -1,4 +1,4 @@ -namespace clashN +namespace ClashN { class Global { diff --git a/clashN/clashN/Handler/ConfigHandler.cs b/clashN/clashN/Handler/ConfigHandler.cs index 65fdb19..4338954 100644 --- a/clashN/clashN/Handler/ConfigHandler.cs +++ b/clashN/clashN/Handler/ConfigHandler.cs @@ -1,9 +1,9 @@ -using clashN.Mode; -using clashN.Tool; +using ClashN.Mode; +using ClashN.Tool; using System.IO; using System.Web; -namespace clashN.Handler +namespace ClashN.Handler { /// /// 本软件配置文件处理类 diff --git a/clashN/clashN/Handler/CoreConfigHandler.cs b/clashN/clashN/Handler/CoreConfigHandler.cs index 6df7d5a..ba2c799 100644 --- a/clashN/clashN/Handler/CoreConfigHandler.cs +++ b/clashN/clashN/Handler/CoreConfigHandler.cs @@ -1,8 +1,8 @@ -using clashN.Mode; -using clashN.Resx; +using ClashN.Mode; +using ClashN.Resx; using System.IO; -namespace clashN.Handler +namespace ClashN.Handler { /// /// Core配置文件处理类 diff --git a/clashN/clashN/Handler/CoreHandler.cs b/clashN/clashN/Handler/CoreHandler.cs index 0d09f0e..7d31ca5 100644 --- a/clashN/clashN/Handler/CoreHandler.cs +++ b/clashN/clashN/Handler/CoreHandler.cs @@ -1,10 +1,10 @@ -using clashN.Mode; -using clashN.Resx; +using ClashN.Mode; +using ClashN.Resx; using System.Diagnostics; using System.IO; using System.Text; -namespace clashN.Handler +namespace ClashN.Handler { /// /// core进程处理类 diff --git a/clashN/clashN/Handler/DownloadHandle.cs b/clashN/clashN/Handler/DownloadHandle.cs index 90b58b8..5b0b0d3 100644 --- a/clashN/clashN/Handler/DownloadHandle.cs +++ b/clashN/clashN/Handler/DownloadHandle.cs @@ -1,12 +1,12 @@ -using clashN.Base; -using clashN.Resx; +using ClashN.Base; +using ClashN.Resx; using System.IO; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Net.Sockets; -namespace clashN.Handler +namespace ClashN.Handler { /// ///Download diff --git a/clashN/clashN/Handler/LazyConfig.cs b/clashN/clashN/Handler/LazyConfig.cs index 5ed1210..fa33fb0 100644 --- a/clashN/clashN/Handler/LazyConfig.cs +++ b/clashN/clashN/Handler/LazyConfig.cs @@ -1,8 +1,8 @@ -using clashN.Mode; +using ClashN.Mode; using System.Runtime.Intrinsics.X86; -using static clashN.Mode.ClashProxies; +using static ClashN.Mode.ClashProxies; -namespace clashN.Handler +namespace ClashN.Handler { public sealed class LazyConfig { diff --git a/clashN/clashN/Handler/MainFormHandler.cs b/clashN/clashN/Handler/MainFormHandler.cs index c19807c..fc7609f 100644 --- a/clashN/clashN/Handler/MainFormHandler.cs +++ b/clashN/clashN/Handler/MainFormHandler.cs @@ -1,6 +1,6 @@ -using clashN.Base; -using clashN.Mode; -using clashN.Resx; +using ClashN.Base; +using ClashN.Mode; +using ClashN.Resx; using NHotkey; using NHotkey.Wpf; using Splat; @@ -8,9 +8,9 @@ using System.Drawing; using System.IO; using System.Windows.Forms; using System.Windows.Input; -using static clashN.Mode.ClashProxies; +using static ClashN.Mode.ClashProxies; -namespace clashN.Handler +namespace ClashN.Handler { public sealed class MainFormHandler { diff --git a/clashN/clashN/Handler/NoticeHandler.cs b/clashN/clashN/Handler/NoticeHandler.cs index cd80391..c180e65 100644 --- a/clashN/clashN/Handler/NoticeHandler.cs +++ b/clashN/clashN/Handler/NoticeHandler.cs @@ -1,7 +1,7 @@ using MaterialDesignThemes.Wpf; using ReactiveUI; -namespace clashN.Handler +namespace ClashN.Handler { public class NoticeHandler { diff --git a/clashN/clashN/Handler/ProxySetting.cs b/clashN/clashN/Handler/ProxySetting.cs index 857d85f..5a465cb 100644 --- a/clashN/clashN/Handler/ProxySetting.cs +++ b/clashN/clashN/Handler/ProxySetting.cs @@ -1,7 +1,7 @@ using Microsoft.Win32; using System.Runtime.InteropServices; -namespace clashN.Handler +namespace ClashN.Handler { class ProxySetting { diff --git a/clashN/clashN/Handler/QRCodeHelper.cs b/clashN/clashN/Handler/QRCodeHelper.cs index d31b528..ea93961 100644 --- a/clashN/clashN/Handler/QRCodeHelper.cs +++ b/clashN/clashN/Handler/QRCodeHelper.cs @@ -2,7 +2,7 @@ using QRCoder.Xaml; using System.Windows.Media; -namespace clashN.Handler +namespace ClashN.Handler { /// /// 含有QR码的描述类和包装编码和渲染 diff --git a/clashN/clashN/Handler/SpeedtestHandler.cs b/clashN/clashN/Handler/SpeedtestHandler.cs index c43fe85..01181e9 100644 --- a/clashN/clashN/Handler/SpeedtestHandler.cs +++ b/clashN/clashN/Handler/SpeedtestHandler.cs @@ -1,9 +1,9 @@ -using clashN.Mode; +using ClashN.Mode; using System.Diagnostics; using System.Net; using System.Net.Sockets; -namespace clashN.Handler +namespace ClashN.Handler { class SpeedtestHandler { diff --git a/clashN/clashN/Handler/StatisticsHandler.cs b/clashN/clashN/Handler/StatisticsHandler.cs index 2d03c4f..8d8425c 100644 --- a/clashN/clashN/Handler/StatisticsHandler.cs +++ b/clashN/clashN/Handler/StatisticsHandler.cs @@ -1,8 +1,8 @@ -using clashN.Mode; +using ClashN.Mode; using System.Net.WebSockets; using System.Text; -namespace clashN.Handler +namespace ClashN.Handler { class StatisticsHandler { diff --git a/clashN/clashN/Handler/SysProxyHandle.cs b/clashN/clashN/Handler/SysProxyHandle.cs index 776cd76..fb11f9e 100644 --- a/clashN/clashN/Handler/SysProxyHandle.cs +++ b/clashN/clashN/Handler/SysProxyHandle.cs @@ -1,12 +1,12 @@ -using clashN.Mode; -using clashN.Properties; -using clashN.Tool; +using ClashN.Mode; +using ClashN.Properties; +using ClashN.Tool; using PacLib; using System.Diagnostics; using System.IO; using System.Text; -namespace clashN.Handler +namespace ClashN.Handler { public static class SysProxyHandle { diff --git a/clashN/clashN/Handler/UpdateHandle.cs b/clashN/clashN/Handler/UpdateHandle.cs index 36b219b..d191cda 100644 --- a/clashN/clashN/Handler/UpdateHandle.cs +++ b/clashN/clashN/Handler/UpdateHandle.cs @@ -1,6 +1,6 @@ -using clashN.Base; -using clashN.Mode; -using clashN.Resx; +using ClashN.Base; +using ClashN.Mode; +using ClashN.Resx; using Splat; using System.Diagnostics; using System.IO; @@ -9,7 +9,7 @@ using System.Text; using System.Text.RegularExpressions; using System.Windows.Forms; -namespace clashN.Handler +namespace ClashN.Handler { class UpdateHandle { diff --git a/clashN/clashN/Mode/ClashConnections.cs b/clashN/clashN/Mode/ClashConnections.cs index ff742f3..f20333f 100644 --- a/clashN/clashN/Mode/ClashConnections.cs +++ b/clashN/clashN/Mode/ClashConnections.cs @@ -1,4 +1,4 @@ -namespace clashN.Mode +namespace ClashN.Mode { public class ClashConnections { diff --git a/clashN/clashN/Mode/ClashProviders.cs b/clashN/clashN/Mode/ClashProviders.cs index 18ab419..a6aff45 100644 --- a/clashN/clashN/Mode/ClashProviders.cs +++ b/clashN/clashN/Mode/ClashProviders.cs @@ -1,6 +1,6 @@ -using static clashN.Mode.ClashProxies; +using static ClashN.Mode.ClashProxies; -namespace clashN.Mode +namespace ClashN.Mode { public class ClashProviders { diff --git a/clashN/clashN/Mode/ClashProxies.cs b/clashN/clashN/Mode/ClashProxies.cs index 63947c3..408705b 100644 --- a/clashN/clashN/Mode/ClashProxies.cs +++ b/clashN/clashN/Mode/ClashProxies.cs @@ -1,4 +1,4 @@ -namespace clashN.Mode +namespace ClashN.Mode { public class ClashProxies { diff --git a/clashN/clashN/Mode/ComboItem.cs b/clashN/clashN/Mode/ComboItem.cs index 9e34bfd..41b76bf 100644 --- a/clashN/clashN/Mode/ComboItem.cs +++ b/clashN/clashN/Mode/ComboItem.cs @@ -1,4 +1,4 @@ -namespace clashN.Mode +namespace ClashN.Mode { class ComboItem { diff --git a/clashN/clashN/Mode/Config.cs b/clashN/clashN/Mode/Config.cs index 192ead6..a57b40c 100644 --- a/clashN/clashN/Mode/Config.cs +++ b/clashN/clashN/Mode/Config.cs @@ -1,7 +1,7 @@ using System.Drawing; using System.Windows.Forms; -namespace clashN.Mode +namespace ClashN.Mode { /// /// 本软件配置文件实体类 diff --git a/clashN/clashN/Mode/ConnectionModel.cs b/clashN/clashN/Mode/ConnectionModel.cs index ca438a2..4ec8453 100644 --- a/clashN/clashN/Mode/ConnectionModel.cs +++ b/clashN/clashN/Mode/ConnectionModel.cs @@ -1,4 +1,4 @@ -namespace clashN.Mode +namespace ClashN.Mode { public class ConnectionModel { diff --git a/clashN/clashN/Mode/CoreInfo.cs b/clashN/clashN/Mode/CoreInfo.cs index 32c94bc..0ffbdad 100644 --- a/clashN/clashN/Mode/CoreInfo.cs +++ b/clashN/clashN/Mode/CoreInfo.cs @@ -1,4 +1,4 @@ -namespace clashN.Mode +namespace ClashN.Mode { [Serializable] public class CoreInfo diff --git a/clashN/clashN/Mode/ECoreType.cs b/clashN/clashN/Mode/ECoreType.cs index 60568c2..77d0c3a 100644 --- a/clashN/clashN/Mode/ECoreType.cs +++ b/clashN/clashN/Mode/ECoreType.cs @@ -1,5 +1,5 @@  -namespace clashN.Mode +namespace ClashN.Mode { public enum ECoreType { diff --git a/clashN/clashN/Mode/EGlobalHotkey.cs b/clashN/clashN/Mode/EGlobalHotkey.cs index 26126c1..4193324 100644 --- a/clashN/clashN/Mode/EGlobalHotkey.cs +++ b/clashN/clashN/Mode/EGlobalHotkey.cs @@ -1,5 +1,5 @@  -namespace clashN.Mode +namespace ClashN.Mode { public enum EGlobalHotkey { diff --git a/clashN/clashN/Mode/EMove.cs b/clashN/clashN/Mode/EMove.cs index bf9f5e7..e58f420 100644 --- a/clashN/clashN/Mode/EMove.cs +++ b/clashN/clashN/Mode/EMove.cs @@ -1,5 +1,5 @@  -namespace clashN.Mode +namespace ClashN.Mode { public enum EMove { diff --git a/clashN/clashN/Mode/EProfileColName.cs b/clashN/clashN/Mode/EProfileColName.cs index a722e01..bafc5d2 100644 --- a/clashN/clashN/Mode/EProfileColName.cs +++ b/clashN/clashN/Mode/EProfileColName.cs @@ -1,5 +1,5 @@  -namespace clashN.Mode +namespace ClashN.Mode { public enum EProfileColName { diff --git a/clashN/clashN/Mode/ERuleMode.cs b/clashN/clashN/Mode/ERuleMode.cs index 0a8f529..e57e87b 100644 --- a/clashN/clashN/Mode/ERuleMode.cs +++ b/clashN/clashN/Mode/ERuleMode.cs @@ -1,5 +1,5 @@  -namespace clashN.Mode +namespace ClashN.Mode { public enum ERuleMode { diff --git a/clashN/clashN/Mode/ESpeedActionType.cs b/clashN/clashN/Mode/ESpeedActionType.cs index 417cd6f..b595e24 100644 --- a/clashN/clashN/Mode/ESpeedActionType.cs +++ b/clashN/clashN/Mode/ESpeedActionType.cs @@ -1,5 +1,5 @@  -namespace clashN.Mode +namespace ClashN.Mode { public enum ESpeedActionType { diff --git a/clashN/clashN/Mode/ESysProxyType.cs b/clashN/clashN/Mode/ESysProxyType.cs index ced90e3..87b1581 100644 --- a/clashN/clashN/Mode/ESysProxyType.cs +++ b/clashN/clashN/Mode/ESysProxyType.cs @@ -1,5 +1,5 @@  -namespace clashN.Mode +namespace ClashN.Mode { public enum ESysProxyType { diff --git a/clashN/clashN/Mode/ProfileItemModel.cs b/clashN/clashN/Mode/ProfileItemModel.cs index 5e652e7..6d7c09e 100644 --- a/clashN/clashN/Mode/ProfileItemModel.cs +++ b/clashN/clashN/Mode/ProfileItemModel.cs @@ -1,6 +1,6 @@ -using clashN.Base; +using ClashN.Base; -namespace clashN.Mode +namespace ClashN.Mode { public class ProfileItemModel : ProfileItem { diff --git a/clashN/clashN/Mode/ProxyModel.cs b/clashN/clashN/Mode/ProxyModel.cs index 4220564..82dafbb 100644 --- a/clashN/clashN/Mode/ProxyModel.cs +++ b/clashN/clashN/Mode/ProxyModel.cs @@ -1,6 +1,6 @@ using ReactiveUI.Fody.Helpers; -namespace clashN.Mode +namespace ClashN.Mode { [Serializable] public class ProxyModel diff --git a/clashN/clashN/Mode/ServerStatistics.cs b/clashN/clashN/Mode/ServerStatistics.cs index 5726e02..73cc32f 100644 --- a/clashN/clashN/Mode/ServerStatistics.cs +++ b/clashN/clashN/Mode/ServerStatistics.cs @@ -1,4 +1,4 @@ -namespace clashN.Mode +namespace ClashN.Mode { [Serializable] public class ServerStatistics diff --git a/clashN/clashN/Mode/ServerTestItem.cs b/clashN/clashN/Mode/ServerTestItem.cs index 61fd3fc..815716a 100644 --- a/clashN/clashN/Mode/ServerTestItem.cs +++ b/clashN/clashN/Mode/ServerTestItem.cs @@ -1,4 +1,4 @@ -namespace clashN.Mode +namespace ClashN.Mode { [Serializable] class ServerTestItem diff --git a/clashN/clashN/Properties/Resources.Designer.cs b/clashN/clashN/Properties/Resources.Designer.cs index bbaedbb..90899ea 100644 --- a/clashN/clashN/Properties/Resources.Designer.cs +++ b/clashN/clashN/Properties/Resources.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace clashN.Properties { +namespace ClashN.Properties { using System; diff --git a/clashN/clashN/Resx/ResUI.Designer.cs b/clashN/clashN/Resx/ResUI.Designer.cs index 30223b7..4d80f96 100644 --- a/clashN/clashN/Resx/ResUI.Designer.cs +++ b/clashN/clashN/Resx/ResUI.Designer.cs @@ -1,24 +1,24 @@ //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ -namespace clashN.Resx { +namespace ClashN.Resx { using System; /// - /// 一个强类型的资源类,用于查找本地化的字符串等。 + /// A strongly-typed resource class, for looking up localized strings, etc. /// - // 此类是由 StronglyTypedResourceBuilder - // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 - // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen - // (以 /str 作为命令选项),或重新生成 VS 项目。 + // 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")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -33,13 +33,13 @@ namespace clashN.Resx { } /// - /// 返回此类使用的缓存的 ResourceManager 实例。 + /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("clashN.Resx.ResUI", typeof(ResUI).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ClashN.Resx.ResUI", typeof(ResUI).Assembly); resourceMan = temp; } return resourceMan; @@ -47,8 +47,8 @@ namespace clashN.Resx { } /// - /// 重写当前线程的 CurrentUICulture 属性,对 - /// 使用此强类型资源类的所有资源查找执行重写。 + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Globalization.CultureInfo Culture { @@ -61,7 +61,7 @@ namespace clashN.Resx { } /// - /// 查找类似 All servers 的本地化字符串。 + /// Looks up a localized string similar to All servers. /// public static string AllGroupProfiles { get { @@ -70,7 +70,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Export configuration file to clipboard successfully 的本地化字符串。 + /// Looks up a localized string similar to Export configuration file to clipboard successfully. /// public static string BatchExportSuccessfully { get { @@ -79,7 +79,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Please check the configuration file settings first 的本地化字符串。 + /// Looks up a localized string similar to Please check the configuration file settings first. /// public static string CheckProfileSettings { get { @@ -88,7 +88,7 @@ namespace clashN.Resx { } /// - /// 查找类似 configuration format is incorrect 的本地化字符串。 + /// Looks up a localized string similar to configuration format is incorrect. /// public static string ConfigurationFormatIncorrect { get { @@ -97,7 +97,7 @@ namespace clashN.Resx { } /// - /// 查找类似 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. 的本地化字符串。 + /// 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.. /// public static string CustomProfileTips { get { @@ -106,7 +106,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Downloading... 的本地化字符串。 + /// Looks up a localized string similar to Downloading.... /// public static string Downloading { get { @@ -115,7 +115,7 @@ namespace clashN.Resx { } /// - /// 查找类似 DOWN 的本地化字符串。 + /// Looks up a localized string similar to DOWN. /// public static string downloadSpeed { get { @@ -124,7 +124,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Whether to download? {0} 的本地化字符串。 + /// Looks up a localized string similar to Whether to download? {0}. /// public static string DownloadYesNo { get { @@ -133,7 +133,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Failed to enable Tun mode, please run as administrator 的本地化字符串。 + /// Looks up a localized string similar to Failed to enable Tun mode, please run as administrator. /// public static string EnableTunModeFailed { get { @@ -142,7 +142,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Failed to convert configuration file 的本地化字符串。 + /// Looks up a localized string similar to Failed to convert configuration file. /// public static string FailedConversionConfiguration { get { @@ -151,7 +151,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Failed to generate default configuration file 的本地化字符串。 + /// Looks up a localized string similar to Failed to generate default configuration file. /// public static string FailedGenDefaultConfiguration { get { @@ -160,7 +160,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Failed to get the default configuration 的本地化字符串。 + /// Looks up a localized string similar to Failed to get the default configuration. /// public static string FailedGetDefaultConfiguration { get { @@ -169,7 +169,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Failed to import configuration file 的本地化字符串。 + /// Looks up a localized string similar to Failed to import configuration file. /// public static string FailedImportedCustomProfile { get { @@ -178,7 +178,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Failed to read configuration file 的本地化字符串。 + /// Looks up a localized string similar to Failed to read configuration file. /// public static string FailedReadConfiguration { get { @@ -187,7 +187,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Please browse to import configuration file configuration 的本地化字符串。 + /// Looks up a localized string similar to Please browse to import configuration file configuration. /// public static string FillProfileAddressCustom { get { @@ -196,7 +196,7 @@ namespace clashN.Resx { } /// - /// 查找类似 is not the correct client configuration file, please check 的本地化字符串。 + /// Looks up a localized string similar to is not the correct client configuration file, please check. /// public static string IncorrectClientConfiguration { get { @@ -205,7 +205,7 @@ namespace clashN.Resx { } /// - /// 查找类似 is not the correct configuration, please check 的本地化字符串。 + /// Looks up a localized string similar to is not the correct configuration, please check. /// public static string Incorrectconfiguration { get { @@ -214,7 +214,7 @@ namespace clashN.Resx { } /// - /// 查找类似 is not the correct configuration file configuration file, please check 的本地化字符串。 + /// Looks up a localized string similar to is not the correct configuration file configuration file, please check. /// public static string IncorrectProfileConfiguration { get { @@ -223,7 +223,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Initial Configuration 的本地化字符串。 + /// Looks up a localized string similar to Initial Configuration. /// public static string InitialConfiguration { get { @@ -232,7 +232,7 @@ namespace clashN.Resx { } /// - /// 查找类似 {0} already up to date. 的本地化字符串。 + /// Looks up a localized string similar to {0} already up to date.. /// public static string IsLatestCore { get { @@ -241,7 +241,7 @@ namespace clashN.Resx { } /// - /// 查找类似 {0} already up to date. 的本地化字符串。 + /// Looks up a localized string similar to {0} already up to date.. /// public static string IsLatestN { get { @@ -250,7 +250,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Add configuration file 的本地化字符串。 + /// Looks up a localized string similar to Add configuration file. /// public static string menuAddProfile { get { @@ -259,7 +259,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Add configuration file from clipboard (Ctrl+V) 的本地化字符串。 + /// Looks up a localized string similar to Add configuration file from clipboard (Ctrl+V). /// public static string menuAddProfileViaClipboard { get { @@ -268,7 +268,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Scan QR code on the screen 的本地化字符串。 + /// Looks up a localized string similar to Scan QR code on the screen. /// public static string menuAddProfileViaScan { get { @@ -277,7 +277,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Clear all service statistics 的本地化字符串。 + /// Looks up a localized string similar to Clear all service statistics. /// public static string menuClearStatistic { get { @@ -286,7 +286,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Clone selected configuration file 的本地化字符串。 + /// Looks up a localized string similar to Clone selected configuration file. /// public static string menuCloneProfile { get { @@ -295,7 +295,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Close Connection 的本地化字符串。 + /// Looks up a localized string similar to Close Connection. /// public static string menuConnectionClose { get { @@ -304,7 +304,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Close All Connection 的本地化字符串。 + /// Looks up a localized string similar to Close All Connection. /// public static string menuConnectionCloseAll { get { @@ -313,7 +313,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Edit Local File 的本地化字符串。 + /// Looks up a localized string similar to Edit Local File. /// public static string menuEditLocalFile { get { @@ -322,7 +322,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Edit configuration file 的本地化字符串。 + /// Looks up a localized string similar to Edit configuration file. /// public static string menuEditProfile { get { @@ -331,7 +331,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Exit 的本地化字符串。 + /// Looks up a localized string similar to Exit. /// public static string menuExit { get { @@ -340,7 +340,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Export configuration file to clipboard (Ctrl+C) 的本地化字符串。 + /// Looks up a localized string similar to Export configuration file to clipboard (Ctrl+C). /// public static string menuExportProfile { get { @@ -349,7 +349,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Direct 的本地化字符串。 + /// Looks up a localized string similar to Direct. /// public static string menuModeDirect { get { @@ -358,7 +358,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Global 的本地化字符串。 + /// Looks up a localized string similar to Global. /// public static string menuModeGlobal { get { @@ -367,7 +367,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Do not change 的本地化字符串。 + /// Looks up a localized string similar to Do not change. /// public static string menuModeNothing { get { @@ -376,7 +376,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Rule 的本地化字符串。 + /// Looks up a localized string similar to Rule. /// public static string menuModeRule { get { @@ -385,7 +385,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Profile 的本地化字符串。 + /// Looks up a localized string similar to Profile. /// public static string menuProfile { get { @@ -394,7 +394,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Share Qrcode 的本地化字符串。 + /// Looks up a localized string similar to Share Qrcode. /// public static string menuProfileQrcode { get { @@ -403,7 +403,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Refresh Profile (F5) 的本地化字符串。 + /// Looks up a localized string similar to Refresh Profile (F5). /// public static string menuProfileReload { get { @@ -412,7 +412,7 @@ namespace clashN.Resx { } /// - /// 查找类似 All Node Latency Test 的本地化字符串。 + /// Looks up a localized string similar to All Node Latency Test. /// public static string menuProxiesDelaytest { get { @@ -421,7 +421,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Part Node Latency Test 的本地化字符串。 + /// Looks up a localized string similar to Part Node Latency Test. /// public static string menuProxiesDelaytestPart { get { @@ -430,7 +430,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Refresh Proxies (F5) 的本地化字符串。 + /// Looks up a localized string similar to Refresh Proxies (F5). /// public static string menuProxiesReload { get { @@ -439,7 +439,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Select active node (Enter) 的本地化字符串。 + /// Looks up a localized string similar to Select active node (Enter). /// public static string menuProxiesSelectActivity { get { @@ -448,7 +448,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Remove selected configuration files (Delete) 的本地化字符串。 + /// Looks up a localized string similar to Remove selected configuration files (Delete). /// public static string menuRemoveProfile { get { @@ -457,7 +457,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Rule mode 的本地化字符串。 + /// Looks up a localized string similar to Rule mode. /// public static string menuRulemode { get { @@ -466,7 +466,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Set as active configuration file (Enter) 的本地化字符串。 + /// Looks up a localized string similar to Set as active configuration file (Enter). /// public static string menuSetDefaultProfile { get { @@ -475,7 +475,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Update subscription without proxy 的本地化字符串。 + /// Looks up a localized string similar to Update subscription without proxy. /// public static string menuSubUpdate { get { @@ -484,7 +484,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Update selected subscription without proxy 的本地化字符串。 + /// Looks up a localized string similar to Update selected subscription without proxy. /// public static string menuSubUpdateSelected { get { @@ -493,7 +493,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Update selected subscription with proxy 的本地化字符串。 + /// Looks up a localized string similar to Update selected subscription with proxy. /// public static string menuSubUpdateSelectedViaProxy { get { @@ -502,7 +502,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Update subscription with proxy 的本地化字符串。 + /// Looks up a localized string similar to Update subscription with proxy. /// public static string menuSubUpdateViaProxy { get { @@ -511,7 +511,7 @@ namespace clashN.Resx { } /// - /// 查找类似 System proxy 的本地化字符串。 + /// Looks up a localized string similar to System proxy. /// public static string menuSystemproxy { get { @@ -520,7 +520,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Clear system proxy 的本地化字符串。 + /// Looks up a localized string similar to Clear system proxy. /// public static string menuSystemProxyClear { get { @@ -529,7 +529,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Do not change system proxy 的本地化字符串。 + /// Looks up a localized string similar to Do not change system proxy. /// public static string menuSystemProxyNothing { get { @@ -538,7 +538,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Pac Mode 的本地化字符串。 + /// Looks up a localized string similar to Pac Mode. /// public static string menuSystemProxyPac { get { @@ -547,7 +547,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Set system proxy 的本地化字符串。 + /// Looks up a localized string similar to Set system proxy. /// public static string menuSystemProxySet { get { @@ -556,7 +556,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Clear original subscription content 的本地化字符串。 + /// Looks up a localized string similar to Clear original subscription content. /// public static string MsgClearSubscription { get { @@ -565,7 +565,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Download Core successfully 的本地化字符串。 + /// Looks up a localized string similar to Download Core successfully. /// public static string MsgDownloadCoreSuccessfully { get { @@ -574,7 +574,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Download GeoFile: {0} successfully 的本地化字符串。 + /// Looks up a localized string similar to Download GeoFile: {0} successfully. /// public static string MsgDownloadGeoFileSuccessfully { get { @@ -583,7 +583,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Failed to import subscription content 的本地化字符串。 + /// Looks up a localized string similar to Failed to import subscription content. /// public static string MsgFailedImportSubscription { get { @@ -592,7 +592,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Get the subscription content successfully 的本地化字符串。 + /// Looks up a localized string similar to Get the subscription content successfully. /// public static string MsgGetSubscriptionSuccessfully { get { @@ -601,7 +601,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Informations (Filter : {0}) 的本地化字符串。 + /// Looks up a localized string similar to Informations (Filter : {0}). /// public static string MsgInformationTitle { get { @@ -610,7 +610,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Please fill in the address (Url) 的本地化字符串。 + /// Looks up a localized string similar to Please fill in the address (Url). /// public static string MsgNeedUrl { get { @@ -619,7 +619,7 @@ namespace clashN.Resx { } /// - /// 查找类似 No valid subscriptions set 的本地化字符串。 + /// Looks up a localized string similar to No valid subscriptions set. /// public static string MsgNoValidSubscription { get { @@ -628,7 +628,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Resolve {0} successfully 的本地化字符串。 + /// Looks up a localized string similar to Resolve {0} successfully. /// public static string MsgParsingSuccessfully { get { @@ -637,7 +637,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Skip this subscription update 的本地化字符串。 + /// Looks up a localized string similar to Skip this subscription update. /// public static string MsgSkipSubscriptionUpdate { get { @@ -646,7 +646,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Start getting subscriptions 的本地化字符串。 + /// Looks up a localized string similar to Start getting subscriptions. /// public static string MsgStartGettingSubscriptions { get { @@ -655,7 +655,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Start updating {0}... 的本地化字符串。 + /// Looks up a localized string similar to Start updating {0}.... /// public static string MsgStartUpdating { get { @@ -664,7 +664,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Invalid subscription content 的本地化字符串。 + /// Looks up a localized string similar to Invalid subscription content. /// public static string MsgSubscriptionDecodingFailed { get { @@ -673,7 +673,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Are you sure you want to continue? 的本地化字符串。 + /// Looks up a localized string similar to Are you sure you want to continue?. /// public static string MsgSureContinue { get { @@ -682,7 +682,7 @@ namespace clashN.Resx { } /// - /// 查找类似 is unpacking... 的本地化字符串。 + /// Looks up a localized string similar to is unpacking.... /// public static string MsgUnpacking { get { @@ -691,7 +691,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Update Core failed, see the log for details 的本地化字符串。 + /// Looks up a localized string similar to Update Core failed, see the log for details. /// public static string MsgUpdateCoreCoreFailed { get { @@ -700,7 +700,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Update Core successfully 的本地化字符串。 + /// Looks up a localized string similar to Update Core successfully. /// public static string MsgUpdateCoreCoreSuccessfully { get { @@ -709,7 +709,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Update Core successfully! Restarting service... 的本地化字符串。 + /// Looks up a localized string similar to Update Core successfully! Restarting service.... /// public static string MsgUpdateCoreCoreSuccessfullyMore { get { @@ -718,7 +718,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Update subscription end 的本地化字符串。 + /// Looks up a localized string similar to Update subscription end. /// public static string MsgUpdateSubscriptionEnd { get { @@ -727,7 +727,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Update subscription starts 的本地化字符串。 + /// Looks up a localized string similar to Update subscription starts. /// public static string MsgUpdateSubscriptionStart { get { @@ -736,7 +736,7 @@ namespace clashN.Resx { } /// - /// 查找类似 This feature relies on the Http global proxy, please set it correctly first. 的本地化字符串。 + /// Looks up a localized string similar to This feature relies on the Http global proxy, please set it correctly first.. /// public static string NeedHttpGlobalProxy { get { @@ -745,7 +745,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Core not found, please download: {0} 的本地化字符串。 + /// Looks up a localized string similar to Core not found, please download: {0}. /// public static string NotFoundCore { get { @@ -754,7 +754,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Not Run As Admin 的本地化字符串。 + /// Looks up a localized string similar to Not Run As Admin. /// public static string NotRunAsAdmin { get { @@ -763,7 +763,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Scan completed, no valid QR code found 的本地化字符串。 + /// Looks up a localized string similar to Scan completed, no valid QR code found. /// public static string NoValidQRcodeFound { get { @@ -772,7 +772,7 @@ namespace clashN.Resx { } /// - /// 查找类似 operation failed, please check retry 的本地化字符串。 + /// Looks up a localized string similar to operation failed, please check retry. /// public static string OperationFailed { get { @@ -781,7 +781,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Operation success 的本地化字符串。 + /// Looks up a localized string similar to Operation success. /// public static string OperationSuccess { get { @@ -790,7 +790,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Please Fill Remarks 的本地化字符串。 + /// Looks up a localized string similar to Please Fill Remarks. /// public static string PleaseFillRemarks { get { @@ -799,7 +799,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Please select the encryption method 的本地化字符串。 + /// Looks up a localized string similar to Please select the encryption method. /// public static string PleaseSelectEncryption { get { @@ -808,7 +808,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Please select the configuration file first 的本地化字符串。 + /// Looks up a localized string similar to Please select the configuration file first. /// public static string PleaseSelectProfile { get { @@ -817,7 +817,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Please select an agreement 的本地化字符串。 + /// Looks up a localized string similar to Please select an agreement. /// public static string PleaseSelectProtocol { get { @@ -826,7 +826,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Please select rules 的本地化字符串。 + /// Looks up a localized string similar to Please select rules. /// public static string PleaseSelectRules { get { @@ -835,7 +835,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Global hotkey {0} registered failed, reason {1} 的本地化字符串。 + /// Looks up a localized string similar to Global hotkey {0} registered failed, reason {1}. /// public static string RegisterGlobalHotkeyFailed { get { @@ -844,7 +844,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Global hotkey {0} registered successfully 的本地化字符串。 + /// Looks up a localized string similar to Global hotkey {0} registered successfully. /// public static string RegisterGlobalHotkeySuccessfully { get { @@ -853,7 +853,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Are you sure to remove the configuration file? 的本地化字符串。 + /// Looks up a localized string similar to Are you sure to remove the configuration file?. /// public static string RemoveProfile { get { @@ -862,7 +862,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Run As Admin 的本地化字符串。 + /// Looks up a localized string similar to Run As Admin. /// public static string RunAsAdmin { get { @@ -871,7 +871,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Note: After this function relies on the Http global proxy test, please manually adjust the Http global proxy and active node! 的本地化字符串。 + /// Looks up a localized string similar to Note: After this function relies on the Http global proxy test, please manually adjust the Http global proxy and active node!. /// public static string SpeedProfileTips { get { @@ -880,7 +880,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Start service ({0})... 的本地化字符串。 + /// Looks up a localized string similar to Start service ({0}).... /// public static string StartService { get { @@ -889,8 +889,8 @@ namespace clashN.Resx { } /// - /// 查找类似 Successful configuration - ///{0} 的本地化字符串。 + /// Looks up a localized string similar to Successful configuration + ///{0}. /// public static string SuccessfulConfiguration { get { @@ -899,7 +899,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Successfully imported configuration file 的本地化字符串。 + /// Looks up a localized string similar to Successfully imported configuration file. /// public static string SuccessfullyImportedCustomProfile { get { @@ -908,7 +908,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Import configuration file from clipboard successfully. 的本地化字符串。 + /// Looks up a localized string similar to Import configuration file from clipboard successfully.. /// public static string SuccessfullyImportedProfileViaClipboard { get { @@ -917,7 +917,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Scan import successfully 的本地化字符串。 + /// Looks up a localized string similar to Scan import successfully. /// public static string SuccessfullyImportedProfileViaScan { get { @@ -926,7 +926,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Import from clipboard 的本地化字符串。 + /// Looks up a localized string similar to Import from clipboard. /// public static string TbAddProfileViaClipboard { get { @@ -935,7 +935,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Address 的本地化字符串。 + /// Looks up a localized string similar to Address. /// public static string TbAddress { get { @@ -944,7 +944,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Local file 的本地化字符串。 + /// Looks up a localized string similar to Local file. /// public static string TbAddressAs { get { @@ -953,7 +953,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Alias 的本地化字符串。 + /// Looks up a localized string similar to Alias. /// public static string TbAlias { get { @@ -962,7 +962,7 @@ namespace clashN.Resx { } /// - /// 查找类似 AutoRefresh 的本地化字符串。 + /// Looks up a localized string similar to AutoRefresh. /// public static string TbAutoRefresh { get { @@ -971,7 +971,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Browse 的本地化字符串。 + /// Looks up a localized string similar to Browse. /// public static string TbBrowse { get { @@ -980,7 +980,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Cancel 的本地化字符串。 + /// Looks up a localized string similar to Cancel. /// public static string TbCancel { get { @@ -989,7 +989,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Clear system proxy 的本地化字符串。 + /// Looks up a localized string similar to Clear system proxy. /// public static string TbClearSystemProxy { get { @@ -998,7 +998,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Confirm 的本地化字符串。 + /// Looks up a localized string similar to Confirm. /// public static string TbConfirm { get { @@ -1007,7 +1007,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Connections 的本地化字符串。 + /// Looks up a localized string similar to Connections. /// public static string TbConnections { get { @@ -1016,7 +1016,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Core type 的本地化字符串。 + /// Looks up a localized string similar to Core type. /// public static string TbCoreType { get { @@ -1025,7 +1025,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Display GUI 的本地化字符串。 + /// Looks up a localized string similar to Display GUI. /// public static string TbDisplayGUI { get { @@ -1034,7 +1034,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Edit 的本地化字符串。 + /// Looks up a localized string similar to Edit. /// public static string TbEdit { get { @@ -1043,7 +1043,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Enable subscription conversion 的本地化字符串。 + /// Looks up a localized string similar to Enable subscription conversion. /// public static string TbEnableConvert { get { @@ -1052,7 +1052,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Tun 的本地化字符串。 + /// Looks up a localized string similar to Tun. /// public static string TbEnableTun { get { @@ -1061,7 +1061,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Enable Tun mode 的本地化字符串。 + /// Looks up a localized string similar to Enable Tun mode. /// public static string TbEnableTunAs { get { @@ -1070,7 +1070,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Update 的本地化字符串。 + /// Looks up a localized string similar to Update. /// public static string TbEnableUpdate { get { @@ -1079,7 +1079,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Enable Update subscription 的本地化字符串。 + /// Looks up a localized string similar to Enable Update subscription. /// public static string TbEnableUpdateAs { get { @@ -1088,7 +1088,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Filter 的本地化字符串。 + /// Looks up a localized string similar to Filter. /// public static string TbFilter { get { @@ -1097,7 +1097,7 @@ namespace clashN.Resx { } /// - /// 查找类似 GlobalHotkey Setting 的本地化字符串。 + /// Looks up a localized string similar to GlobalHotkey Setting. /// public static string TbGlobalHotkeySetting { get { @@ -1106,7 +1106,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Set directly by pressing the keyboard, Take effect after restart 的本地化字符串。 + /// Looks up a localized string similar to Set directly by pressing the keyboard, Take effect after restart. /// public static string TbGlobalHotkeySettingTip { get { @@ -1115,7 +1115,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Help 的本地化字符串。 + /// Looks up a localized string similar to Help. /// public static string TbHelp { get { @@ -1124,7 +1124,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Check 的本地化字符串。 + /// Looks up a localized string similar to Check. /// public static string TbHelpCheck { get { @@ -1133,7 +1133,7 @@ namespace clashN.Resx { } /// - /// 查找类似 clashN Project 的本地化字符串。 + /// Looks up a localized string similar to clashN Project. /// public static string TbHelpProject { get { @@ -1142,7 +1142,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Go to 的本地化字符串。 + /// Looks up a localized string similar to Go to. /// public static string TbHelpProjectGo { get { @@ -1151,7 +1151,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Max Line 的本地化字符串。 + /// Looks up a localized string similar to Max Line. /// public static string TbLineCount { get { @@ -1160,7 +1160,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Logs 的本地化字符串。 + /// Looks up a localized string similar to Logs. /// public static string TbLogs { get { @@ -1169,7 +1169,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Informations 的本地化字符串。 + /// Looks up a localized string similar to Informations. /// public static string TbMsgTitle { get { @@ -1178,7 +1178,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Do not change system proxy 的本地化字符串。 + /// Looks up a localized string similar to Do not change system proxy. /// public static string TbNotChangeSystemProxy { get { @@ -1187,7 +1187,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Profiles 的本地化字符串。 + /// Looks up a localized string similar to Profiles. /// public static string TbProfiles { get { @@ -1196,7 +1196,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Promotion 的本地化字符串。 + /// Looks up a localized string similar to Promotion. /// public static string TbPromotion { get { @@ -1205,7 +1205,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Click the button below to support the developer. 的本地化字符串。 + /// Looks up a localized string similar to Click the button below to support the developer.. /// public static string TbPromotionInformation { get { @@ -1214,7 +1214,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Proxies 的本地化字符串。 + /// Looks up a localized string similar to Proxies. /// public static string TbProxies { get { @@ -1223,7 +1223,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Reload Core 的本地化字符串。 + /// Looks up a localized string similar to Reload Core. /// public static string TbReloadCore { get { @@ -1232,7 +1232,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Reset 的本地化字符串。 + /// Looks up a localized string similar to Reset. /// public static string TbReset { get { @@ -1241,7 +1241,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Save 的本地化字符串。 + /// Looks up a localized string similar to Save. /// public static string TbSave { get { @@ -1250,7 +1250,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Set as active 的本地化字符串。 + /// Looks up a localized string similar to Set as active. /// public static string TbSetDefaultProfile { get { @@ -1259,7 +1259,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Set system proxy 的本地化字符串。 + /// Looks up a localized string similar to Set system proxy. /// public static string TbSetSystemProxy { get { @@ -1268,7 +1268,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Settings 的本地化字符串。 + /// Looks up a localized string similar to Settings. /// public static string TbSettings { get { @@ -1277,7 +1277,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Advanced proxy settings, protocol selection (optional) 的本地化字符串。 + /// Looks up a localized string similar to Advanced proxy settings, protocol selection (optional). /// public static string TbSettingsAdvancedProtocol { get { @@ -1286,7 +1286,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Allow connections from the LAN 的本地化字符串。 + /// Looks up a localized string similar to Allow connections from the LAN. /// public static string TbSettingsAllowLAN { get { @@ -1295,7 +1295,7 @@ namespace clashN.Resx { } /// - /// 查找类似 API Port 的本地化字符串。 + /// Looks up a localized string similar to API Port. /// public static string TbSettingsAPIPort { get { @@ -1304,7 +1304,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Auto hide startup 的本地化字符串。 + /// Looks up a localized string similar to Auto hide startup. /// public static string TbSettingsAutoHideStartup { get { @@ -1313,7 +1313,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Automatic latency test interval (minutes) 的本地化字符串。 + /// Looks up a localized string similar to Automatic latency test interval (minutes). /// public static string TbSettingsAutoTest { get { @@ -1322,7 +1322,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Automatic update interval of subscriptions (hours) 的本地化字符串。 + /// Looks up a localized string similar to Automatic update interval of subscriptions (hours). /// public static string TbSettingsAutoUpdate { get { @@ -1331,7 +1331,7 @@ namespace clashN.Resx { } /// - /// 查找类似 ClashN settings 的本地化字符串。 + /// Looks up a localized string similar to ClashN settings. /// public static string TbSettingsClashN { get { @@ -1340,7 +1340,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Dark Mode 的本地化字符串。 + /// Looks up a localized string similar to Dark Mode. /// public static string TbSettingsColorMode { get { @@ -1349,7 +1349,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Core settings 的本地化字符串。 + /// Looks up a localized string similar to Core settings. /// public static string TbSettingsCore { get { @@ -1358,7 +1358,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Edit Mixin 的本地化字符串。 + /// Looks up a localized string similar to Edit Mixin. /// public static string TbSettingsEditMixin { get { @@ -1367,7 +1367,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Exception 的本地化字符串。 + /// Looks up a localized string similar to Exception. /// public static string TbSettingsException { get { @@ -1376,7 +1376,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Exception. Do not use proxy server for addresses beginning with,Use semicolon (;) 的本地化字符串。 + /// Looks up a localized string similar to Exception. Do not use proxy server for addresses beginning with,Use semicolon (;). /// public static string TbSettingsExceptionTip { get { @@ -1385,7 +1385,7 @@ namespace clashN.Resx { } /// - /// 查找类似 FontFamily(Require restart) 的本地化字符串。 + /// Looks up a localized string similar to FontFamily(Require restart). /// public static string TbSettingsFontFamily { get { @@ -1394,7 +1394,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Copy the font TTF file to the directory guiFonts, restart the settings 的本地化字符串。 + /// Looks up a localized string similar to Copy the font TTF file to the directory guiFonts, restart the settings. /// public static string TbSettingsFontFamilyTip { get { @@ -1403,7 +1403,7 @@ namespace clashN.Resx { } /// - /// 查找类似 FontSize 的本地化字符串。 + /// Looks up a localized string similar to FontSize. /// public static string TbSettingsFontSize { get { @@ -1412,7 +1412,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Http Port 的本地化字符串。 + /// Looks up a localized string similar to Http Port. /// public static string TbSettingsHttpPort { get { @@ -1421,7 +1421,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Enable IPv6 的本地化字符串。 + /// Looks up a localized string similar to Enable IPv6. /// public static string TbSettingsIpv6 { get { @@ -1430,7 +1430,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Language(restart) 的本地化字符串。 + /// Looks up a localized string similar to Language(restart). /// public static string TbSettingsLanguage { get { @@ -1439,7 +1439,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Log Level 的本地化字符串。 + /// Looks up a localized string similar to Log Level. /// public static string TbSettingsLogLevel { get { @@ -1448,7 +1448,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Mixed Port 的本地化字符串。 + /// Looks up a localized string similar to Mixed Port. /// public static string TbSettingsMixedPort { get { @@ -1457,7 +1457,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Enable Mixin configuration content 的本地化字符串。 + /// Looks up a localized string similar to Enable Mixin configuration content. /// public static string TbSettingsMixin { get { @@ -1466,7 +1466,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Pac listen port 的本地化字符串。 + /// Looks up a localized string similar to Pac listen port. /// public static string TbSettingsPacListenPort { get { @@ -1475,7 +1475,7 @@ namespace clashN.Resx { } /// - /// 查找类似 After modifying the following parameters, click Save to take effect 的本地化字符串。 + /// Looks up a localized string similar to After modifying the following parameters, click Save to take effect. /// public static string TbSettingsSaveTip { get { @@ -1484,7 +1484,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Set Win10 UWP Loopback 的本地化字符串。 + /// Looks up a localized string similar to Set Win10 UWP Loopback. /// public static string TbSettingsSetUWP { get { @@ -1493,7 +1493,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Socks Port 的本地化字符串。 + /// Looks up a localized string similar to Socks Port. /// public static string TbSettingsSocksPort { get { @@ -1502,7 +1502,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Start on boot 的本地化字符串。 + /// Looks up a localized string similar to Start on boot. /// public static string TbSettingsStartBoot { get { @@ -1511,7 +1511,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Enable Statistics (Require restart) 的本地化字符串。 + /// Looks up a localized string similar to Enable Statistics (Require restart). /// public static string TbSettingsStatistics { get { @@ -1520,7 +1520,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Subscription conversion Url 的本地化字符串。 + /// Looks up a localized string similar to Subscription conversion Url. /// public static string TbSettingsSubConvert { get { @@ -1529,7 +1529,7 @@ namespace clashN.Resx { } /// - /// 查找类似 System proxy settings 的本地化字符串。 + /// Looks up a localized string similar to System proxy settings. /// public static string TbSettingsSystemproxy { get { @@ -1538,7 +1538,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Enable Security Protocol TLS v1.3 (subscription/update) 的本地化字符串。 + /// Looks up a localized string similar to Enable Security Protocol TLS v1.3 (subscription/update). /// public static string TbSettingsTLS13 { get { @@ -1547,7 +1547,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Sorting 的本地化字符串。 + /// Looks up a localized string similar to Sorting. /// public static string TbSorting { get { @@ -1556,7 +1556,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Chain 的本地化字符串。 + /// Looks up a localized string similar to Chain. /// public static string TbSortingChain { get { @@ -1565,7 +1565,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Default 的本地化字符串。 + /// Looks up a localized string similar to Default. /// public static string TbSortingDefault { get { @@ -1574,7 +1574,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Delay 的本地化字符串。 + /// Looks up a localized string similar to Delay. /// public static string TbSortingDelay { get { @@ -1583,7 +1583,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Download Speed 的本地化字符串。 + /// Looks up a localized string similar to Download Speed. /// public static string TbSortingDownSpeed { get { @@ -1592,7 +1592,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Download Traffic 的本地化字符串。 + /// Looks up a localized string similar to Download Traffic. /// public static string TbSortingDownTraffic { get { @@ -1601,7 +1601,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Host 的本地化字符串。 + /// Looks up a localized string similar to Host. /// public static string TbSortingHost { get { @@ -1610,7 +1610,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Name 的本地化字符串。 + /// Looks up a localized string similar to Name. /// public static string TbSortingName { get { @@ -1619,7 +1619,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Network 的本地化字符串。 + /// Looks up a localized string similar to Network. /// public static string TbSortingNetwork { get { @@ -1628,7 +1628,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Time 的本地化字符串。 + /// Looks up a localized string similar to Time. /// public static string TbSortingTime { get { @@ -1637,7 +1637,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Type 的本地化字符串。 + /// Looks up a localized string similar to Type. /// public static string TbSortingType { get { @@ -1646,7 +1646,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Upload Speed 的本地化字符串。 + /// Looks up a localized string similar to Upload Speed. /// public static string TbSortingUpSpeed { get { @@ -1655,7 +1655,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Upload Traffic 的本地化字符串。 + /// Looks up a localized string similar to Upload Traffic. /// public static string TbSortingUpTraffic { get { @@ -1664,7 +1664,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Update subscription 的本地化字符串。 + /// Looks up a localized string similar to Update subscription. /// public static string TbSubUpdateViaProxy { get { @@ -1673,7 +1673,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Pac Mode 的本地化字符串。 + /// Looks up a localized string similar to Pac Mode. /// public static string TbSystemProxyPac { get { @@ -1682,7 +1682,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Url 的本地化字符串。 + /// Looks up a localized string similar to Url. /// public static string TbUrl { get { @@ -1691,7 +1691,7 @@ namespace clashN.Resx { } /// - /// 查找类似 Subscription url 的本地化字符串。 + /// Looks up a localized string similar to Subscription url. /// public static string TbUrlAs { get { @@ -1700,7 +1700,7 @@ namespace clashN.Resx { } /// - /// 查找类似 User Agent(optional) 的本地化字符串。 + /// Looks up a localized string similar to User Agent(optional). /// public static string TbUserAgent { get { @@ -1709,7 +1709,7 @@ namespace clashN.Resx { } /// - /// 查找类似 The ping of current service: {0} 的本地化字符串。 + /// Looks up a localized string similar to The ping of current service: {0}. /// public static string TestMeOutput { get { @@ -1718,7 +1718,7 @@ namespace clashN.Resx { } /// - /// 查找类似 To enable Tun mode, please use Clash.Meta Core first; or use Clash Premium Core 的本地化字符串。 + /// Looks up a localized string similar to To enable Tun mode, please use Clash.Meta Core first; or use Clash Premium Core. /// public static string TunModeCoreTip { get { diff --git a/clashN/clashN/Tool/FileManager.cs b/clashN/clashN/Tool/FileManager.cs index 871f590..86835fb 100644 --- a/clashN/clashN/Tool/FileManager.cs +++ b/clashN/clashN/Tool/FileManager.cs @@ -2,7 +2,7 @@ using System.IO.Compression; using System.Text; -namespace clashN.Tool +namespace ClashN.Tool { public static class FileManager { diff --git a/clashN/clashN/Tool/Job.cs b/clashN/clashN/Tool/Job.cs index 013b266..b820617 100644 --- a/clashN/clashN/Tool/Job.cs +++ b/clashN/clashN/Tool/Job.cs @@ -2,7 +2,7 @@ using System.Runtime.InteropServices; -namespace clashN +namespace ClashN { /* * See: diff --git a/clashN/clashN/Tool/Logging.cs b/clashN/clashN/Tool/Logging.cs index d300ca9..c72e7f8 100644 --- a/clashN/clashN/Tool/Logging.cs +++ b/clashN/clashN/Tool/Logging.cs @@ -3,7 +3,7 @@ using NLog.Config; using NLog.Targets; using System.IO; -namespace clashN.Tool +namespace ClashN.Tool { public class Logging { diff --git a/clashN/clashN/Tool/QueryableExtension.cs b/clashN/clashN/Tool/QueryableExtension.cs index e466402..5663450 100644 --- a/clashN/clashN/Tool/QueryableExtension.cs +++ b/clashN/clashN/Tool/QueryableExtension.cs @@ -1,7 +1,7 @@ using System.Linq.Expressions; using System.Reflection; -namespace clashN.Tool +namespace ClashN.Tool { public static class QueryableExtension { diff --git a/clashN/clashN/Tool/UI.cs b/clashN/clashN/Tool/UI.cs index a17ae11..458541d 100644 --- a/clashN/clashN/Tool/UI.cs +++ b/clashN/clashN/Tool/UI.cs @@ -1,6 +1,6 @@ using System.Windows.Forms; -namespace clashN +namespace ClashN { class UI { diff --git a/clashN/clashN/Tool/Utils.cs b/clashN/clashN/Tool/Utils.cs index 970ddcc..8b38e38 100644 --- a/clashN/clashN/Tool/Utils.cs +++ b/clashN/clashN/Tool/Utils.cs @@ -1,5 +1,5 @@ -using clashN.Base; -using clashN.Mode; +using ClashN.Base; +using ClashN.Mode; using Microsoft.Win32; using Microsoft.Win32.TaskScheduler; using Newtonsoft.Json; @@ -26,7 +26,7 @@ using ZXing.Common; using ZXing.QrCode; using ZXing.Windows.Compatibility; -namespace clashN +namespace ClashN { class Utils { diff --git a/clashN/clashN/ViewModels/ConnectionsViewModel.cs b/clashN/clashN/ViewModels/ConnectionsViewModel.cs index 843a073..3b68869 100644 --- a/clashN/clashN/ViewModels/ConnectionsViewModel.cs +++ b/clashN/clashN/ViewModels/ConnectionsViewModel.cs @@ -1,6 +1,6 @@ -using clashN.Base; -using clashN.Handler; -using clashN.Mode; +using ClashN.Base; +using ClashN.Handler; +using ClashN.Mode; using DynamicData; using DynamicData.Binding; using ReactiveUI; @@ -10,7 +10,7 @@ using System.Reactive; using System.Reactive.Linq; using System.Windows; -namespace clashN.ViewModels +namespace ClashN.ViewModels { public class ConnectionsViewModel : ReactiveObject { diff --git a/clashN/clashN/ViewModels/DashboardViewModel.cs b/clashN/clashN/ViewModels/DashboardViewModel.cs index 0df6a83..d786451 100644 --- a/clashN/clashN/ViewModels/DashboardViewModel.cs +++ b/clashN/clashN/ViewModels/DashboardViewModel.cs @@ -1,6 +1,6 @@ using ReactiveUI; -namespace clashN.ViewModels +namespace ClashN.ViewModels { public class DashboardViewModel : ReactiveObject { diff --git a/clashN/clashN/ViewModels/HelpViewModel.cs b/clashN/clashN/ViewModels/HelpViewModel.cs index 46982cf..bb209e7 100644 --- a/clashN/clashN/ViewModels/HelpViewModel.cs +++ b/clashN/clashN/ViewModels/HelpViewModel.cs @@ -1,12 +1,12 @@ -using clashN.Handler; -using clashN.Mode; -using clashN.Resx; -using clashN.Tool; +using ClashN.Handler; +using ClashN.Mode; +using ClashN.Resx; +using ClashN.Tool; using ReactiveUI; using Splat; using System.Reactive; -namespace clashN.ViewModels +namespace ClashN.ViewModels { public class HelpViewModel : ReactiveObject { diff --git a/clashN/clashN/ViewModels/LogsViewModel.cs b/clashN/clashN/ViewModels/LogsViewModel.cs index 6e419c5..08ab6f9 100644 --- a/clashN/clashN/ViewModels/LogsViewModel.cs +++ b/clashN/clashN/ViewModels/LogsViewModel.cs @@ -1,7 +1,7 @@ using ReactiveUI; using ReactiveUI.Fody.Helpers; -namespace clashN.ViewModels +namespace ClashN.ViewModels { public class LogsViewModel : ReactiveObject { diff --git a/clashN/clashN/ViewModels/MainWindowViewModel.cs b/clashN/clashN/ViewModels/MainWindowViewModel.cs index 85f5fcf..0cda16c 100644 --- a/clashN/clashN/ViewModels/MainWindowViewModel.cs +++ b/clashN/clashN/ViewModels/MainWindowViewModel.cs @@ -1,7 +1,7 @@ -using clashN.Base; -using clashN.Handler; -using clashN.Mode; -using clashN.Views; +using ClashN.Base; +using ClashN.Handler; +using ClashN.Mode; +using ClashN.Views; using MaterialDesignColors; using MaterialDesignColors.ColorManipulation; using MaterialDesignThemes.Wpf; @@ -17,7 +17,7 @@ using System.Windows.Forms; using System.Windows.Interop; using Application = System.Windows.Application; -namespace clashN.ViewModels +namespace ClashN.ViewModels { public class MainWindowViewModel : ReactiveObject { diff --git a/clashN/clashN/ViewModels/ProfileEditViewModel.cs b/clashN/clashN/ViewModels/ProfileEditViewModel.cs index c337ae1..782d505 100644 --- a/clashN/clashN/ViewModels/ProfileEditViewModel.cs +++ b/clashN/clashN/ViewModels/ProfileEditViewModel.cs @@ -1,8 +1,8 @@ -using clashN.Base; -using clashN.Handler; -using clashN.Mode; -using clashN.Resx; -using clashN.Views; +using ClashN.Base; +using ClashN.Handler; +using ClashN.Mode; +using ClashN.Resx; +using ClashN.Views; using ReactiveUI; using ReactiveUI.Fody.Helpers; using ReactiveUI.Validation.Helpers; @@ -11,7 +11,7 @@ using System.IO; using System.Reactive; using System.Windows.Forms; -namespace clashN.ViewModels +namespace ClashN.ViewModels { public class ProfileEditViewModel : ReactiveValidationObject { diff --git a/clashN/clashN/ViewModels/ProfilesViewModel.cs b/clashN/clashN/ViewModels/ProfilesViewModel.cs index dbb16e2..dbc919a 100644 --- a/clashN/clashN/ViewModels/ProfilesViewModel.cs +++ b/clashN/clashN/ViewModels/ProfilesViewModel.cs @@ -1,8 +1,8 @@ -using clashN.Base; -using clashN.Handler; -using clashN.Mode; -using clashN.Resx; -using clashN.Views; +using ClashN.Base; +using ClashN.Handler; +using ClashN.Mode; +using ClashN.Resx; +using ClashN.Views; using DynamicData; using DynamicData.Binding; using MaterialDesignThemes.Wpf; @@ -14,7 +14,7 @@ using System.Reactive; using System.Windows.Forms; using Application = System.Windows.Application; -namespace clashN.ViewModels +namespace ClashN.ViewModels { public class ProfilesViewModel : ReactiveObject { diff --git a/clashN/clashN/ViewModels/PromotionViewModel.cs b/clashN/clashN/ViewModels/PromotionViewModel.cs index 237a507..cc1dd0f 100644 --- a/clashN/clashN/ViewModels/PromotionViewModel.cs +++ b/clashN/clashN/ViewModels/PromotionViewModel.cs @@ -1,6 +1,6 @@ using ReactiveUI; -namespace clashN.ViewModels +namespace ClashN.ViewModels { public class PromotionViewModel : ReactiveObject { diff --git a/clashN/clashN/ViewModels/ProxiesViewModel.cs b/clashN/clashN/ViewModels/ProxiesViewModel.cs index 254de75..29ad824 100644 --- a/clashN/clashN/ViewModels/ProxiesViewModel.cs +++ b/clashN/clashN/ViewModels/ProxiesViewModel.cs @@ -1,7 +1,7 @@ -using clashN.Base; -using clashN.Handler; -using clashN.Mode; -using clashN.Resx; +using ClashN.Base; +using ClashN.Handler; +using ClashN.Mode; +using ClashN.Resx; using DynamicData; using DynamicData.Binding; using ReactiveUI; @@ -10,10 +10,10 @@ using Splat; using System.Reactive; using System.Reactive.Linq; using System.Windows; -using static clashN.Mode.ClashProviders; -using static clashN.Mode.ClashProxies; +using static ClashN.Mode.ClashProviders; +using static ClashN.Mode.ClashProxies; -namespace clashN.ViewModels +namespace ClashN.ViewModels { public class ProxiesViewModel : ReactiveObject { diff --git a/clashN/clashN/ViewModels/SettingsViewModel.cs b/clashN/clashN/ViewModels/SettingsViewModel.cs index a44515f..80fba65 100644 --- a/clashN/clashN/ViewModels/SettingsViewModel.cs +++ b/clashN/clashN/ViewModels/SettingsViewModel.cs @@ -1,8 +1,8 @@ -using clashN.Base; -using clashN.Handler; -using clashN.Mode; -using clashN.Resx; -using clashN.Views; +using ClashN.Base; +using ClashN.Handler; +using ClashN.Mode; +using ClashN.Resx; +using ClashN.Views; using DynamicData; using DynamicData.Binding; using MaterialDesignColors; @@ -15,7 +15,7 @@ using System.IO; using System.Reactive; using System.Windows; -namespace clashN.ViewModels +namespace ClashN.ViewModels { public class SettingsViewModel : ReactiveValidationObject { diff --git a/clashN/clashN/Views/ConnectionsView.xaml b/clashN/clashN/Views/ConnectionsView.xaml index 7f9bae7..34cfc82 100644 --- a/clashN/clashN/Views/ConnectionsView.xaml +++ b/clashN/clashN/Views/ConnectionsView.xaml @@ -1,14 +1,14 @@ /// Interaction logic for ConnectionsView.xaml diff --git a/clashN/clashN/Views/DashboardView.xaml b/clashN/clashN/Views/DashboardView.xaml index 8e77f47..b35726f 100644 --- a/clashN/clashN/Views/DashboardView.xaml +++ b/clashN/clashN/Views/DashboardView.xaml @@ -1,13 +1,13 @@ /// Interaction logic for DashboardView.xaml diff --git a/clashN/clashN/Views/GlobalHotkeySettingWindow.xaml b/clashN/clashN/Views/GlobalHotkeySettingWindow.xaml index b94d0b3..6625743 100644 --- a/clashN/clashN/Views/GlobalHotkeySettingWindow.xaml +++ b/clashN/clashN/Views/GlobalHotkeySettingWindow.xaml @@ -1,15 +1,15 @@  /// GlobalHotkeySettingWindow.xaml 的交互逻辑 diff --git a/clashN/clashN/Views/HelpView.xaml b/clashN/clashN/Views/HelpView.xaml index c34cb4e..92ef471 100644 --- a/clashN/clashN/Views/HelpView.xaml +++ b/clashN/clashN/Views/HelpView.xaml @@ -1,14 +1,14 @@ /// Interaction logic for HelpView.xaml diff --git a/clashN/clashN/Views/LogsView.xaml b/clashN/clashN/Views/LogsView.xaml index 4a70ed0..1a41aea 100644 --- a/clashN/clashN/Views/LogsView.xaml +++ b/clashN/clashN/Views/LogsView.xaml @@ -1,14 +1,14 @@ /// Interaction logic for LogsView.xaml diff --git a/clashN/clashN/Views/MainWindow.xaml b/clashN/clashN/Views/MainWindow.xaml index 8cce96e..7d8e168 100644 --- a/clashN/clashN/Views/MainWindow.xaml +++ b/clashN/clashN/Views/MainWindow.xaml @@ -1,16 +1,16 @@ /// Interaction logic for MainWindow.xaml diff --git a/clashN/clashN/Views/MessageSampleDialog.xaml b/clashN/clashN/Views/MessageSampleDialog.xaml index f5c584d..426b940 100644 --- a/clashN/clashN/Views/MessageSampleDialog.xaml +++ b/clashN/clashN/Views/MessageSampleDialog.xaml @@ -1,11 +1,11 @@  /// Interaction logic for MessageSampleDialog.xaml diff --git a/clashN/clashN/Views/MsgView.xaml b/clashN/clashN/Views/MsgView.xaml index d006d32..3b04ddb 100644 --- a/clashN/clashN/Views/MsgView.xaml +++ b/clashN/clashN/Views/MsgView.xaml @@ -1,13 +1,13 @@ diff --git a/clashN/clashN/Views/MsgView.xaml.cs b/clashN/clashN/Views/MsgView.xaml.cs index ab18279..eb87997 100644 --- a/clashN/clashN/Views/MsgView.xaml.cs +++ b/clashN/clashN/Views/MsgView.xaml.cs @@ -2,7 +2,7 @@ using ReactiveUI; using System.Reactive.Linq; using System.Windows.Threading; -namespace clashN.Views +namespace ClashN.Views { /// /// Interaction logic for MsgView.xaml diff --git a/clashN/clashN/Views/PorfileEditWindow.xaml b/clashN/clashN/Views/PorfileEditWindow.xaml index 66d222f..69fa348 100644 --- a/clashN/clashN/Views/PorfileEditWindow.xaml +++ b/clashN/clashN/Views/PorfileEditWindow.xaml @@ -1,16 +1,16 @@  /// PorfileEditWindow.xaml 的交互逻辑 diff --git a/clashN/clashN/Views/ProfileQrcodeView.xaml b/clashN/clashN/Views/ProfileQrcodeView.xaml index fc4dc45..364c924 100644 --- a/clashN/clashN/Views/ProfileQrcodeView.xaml +++ b/clashN/clashN/Views/ProfileQrcodeView.xaml @@ -1,11 +1,11 @@  /// Interaction logic for ProfileQrcodeView.xaml diff --git a/clashN/clashN/Views/ProfilesView.xaml b/clashN/clashN/Views/ProfilesView.xaml index e9182f1..716e2f5 100644 --- a/clashN/clashN/Views/ProfilesView.xaml +++ b/clashN/clashN/Views/ProfilesView.xaml @@ -1,14 +1,14 @@ /// Interaction logic for ProfilesView.xaml diff --git a/clashN/clashN/Views/PromotionView.xaml b/clashN/clashN/Views/PromotionView.xaml index 417c751..5fe93c8 100644 --- a/clashN/clashN/Views/PromotionView.xaml +++ b/clashN/clashN/Views/PromotionView.xaml @@ -1,14 +1,14 @@ /// Interaction logic for PromotionView.xaml diff --git a/clashN/clashN/Views/ProxiesView.xaml b/clashN/clashN/Views/ProxiesView.xaml index 9af5733..0c530fc 100644 --- a/clashN/clashN/Views/ProxiesView.xaml +++ b/clashN/clashN/Views/ProxiesView.xaml @@ -1,15 +1,15 @@ /// Interaction logic for ProxiesView.xaml diff --git a/clashN/clashN/Views/SettingsView.xaml b/clashN/clashN/Views/SettingsView.xaml index 9a9668a..bdaf94b 100644 --- a/clashN/clashN/Views/SettingsView.xaml +++ b/clashN/clashN/Views/SettingsView.xaml @@ -1,14 +1,14 @@ /// Interaction logic for SettingsView.xaml