mirror of
https://github.com/2dust/v2rayN.git
synced 2025-08-30 06:46:19 +00:00
移除自述
This commit is contained in:
parent
ffb79bdcb8
commit
c95b87624e
2 changed files with 2 additions and 62 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue