将Feature/XP.Common和Feature/XP.Hardware分支合并至Develop/XP.forHardwareAndCommon,完善XPapp注册和相关硬件类库通用类库功能。
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace XP.Common.Localization.Enums
|
||||
{
|
||||
/// <summary>
|
||||
/// 支持的语言枚举 | Supported language enumeration
|
||||
/// </summary>
|
||||
public enum SupportedLanguage
|
||||
{
|
||||
/// <summary>
|
||||
/// 简体中文 | Simplified Chinese
|
||||
/// </summary>
|
||||
[Description("zh-CN")]
|
||||
ZhCN,
|
||||
|
||||
/// <summary>
|
||||
/// 繁体中文 | Traditional Chinese
|
||||
/// </summary>
|
||||
[Description("zh-TW")]
|
||||
ZhTW,
|
||||
|
||||
/// <summary>
|
||||
/// 美式英语 | American English
|
||||
/// </summary>
|
||||
[Description("en-US")]
|
||||
EnUS
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user