diff --git a/v2rayN/AmazTool/LocalizationHelper.cs b/v2rayN/AmazTool/LocalizationHelper.cs index 0936ef89..4f6d75da 100644 --- a/v2rayN/AmazTool/LocalizationHelper.cs +++ b/v2rayN/AmazTool/LocalizationHelper.cs @@ -1,35 +1,4 @@ -/** - * 该程序使用JSON文件对C#应用程序进行本地化。 - * 程序根据系统当前的语言加载相应的语言文件。 - * 如果当前语言不被支持,则默认使用英语。 - * - * 库: - * - System - * - System.Collections.Generic - * - System.Globalization - * - System.IO - * - System.Text.Json - * - System.Threading - * - * 用法: - * - 为每种支持的语言创建JSON文件(例如,en.json,zh.json)。 - * - 将JSON文件放置程序同目录中。 - * - 运行程序,它将根据系统当前的语言加载翻译。 - * - 调用方式: localization.Translate("Try_Terminate_Process") //返回一个 string 字符串 - * 示例JSON文件(en.json): - * { - * "Restart_v2rayN": "Start v2rayN, please wait...", - * "Guidelines": "Please run it from the main application." - * } - * - * 示例JSON文件(zh.json): - * { - * "Restart_v2rayN": "正在重启,请等待...", - * "Guidelines": "请从主应用运行!" - * } - */ - -using System; +using System; using System.Collections.Generic; using System.Globalization; using System.IO; diff --git a/v2rayN/AmazTool/UpgradeApp.cs b/v2rayN/AmazTool/UpgradeApp.cs index a2566921..a8db3516 100644 --- a/v2rayN/AmazTool/UpgradeApp.cs +++ b/v2rayN/AmazTool/UpgradeApp.cs @@ -1,33 +1,4 @@ -/** - * 该程序使用JSON文件对C#应用程序进行本地化。 - * 程序根据系统当前的语言加载相应的语言文件。 - * 如果当前语言不被支持,则默认使用英语。 - * - * 库: - * - System.Collections.Generic - * - System.Globalization - * - System.IO - * - System.Text.Json - * - * 用法: - * - 为每种支持的语言创建JSON文件(例如,en-US.json,zh-CN.json)。 - * - 将JSON文件放置程序同目录中。 - * - 运行程序,它将根据系统当前的语言加载翻译。 - * - 调用方式: localization.Translate("Try_Terminate_Process") //返回一个 string 字符串 - * 示例JSON文件(en.json): - * { - * "Restart_v2rayN": "Start v2rayN, please wait...", - * "Guidelines": "Please run it from the main application." - * } - * - * 示例JSON文件(zh.json): - * { - * "Restart_v2rayN": "正在重启,请等待...", - * "Guidelines": "请从主应用运行!" - * } - */ - -using System; +using System; using System.Diagnostics; using System.IO; using System.IO.Compression;