Files

37 lines
675 B
C#
Raw Permalink Normal View History

namespace PCL.Core.App.Localization;
/// <summary>
/// UI 字体策略。
/// </summary>
public enum LocalizationFontProfile
{
/// <summary>
/// 英文与拉丁文字优先。
/// </summary>
English,
/// <summary>
/// 简体中文标准字形。
/// </summary>
SimplifiedChinese,
/// <summary>
/// 繁体中文标准字形。
/// </summary>
TraditionalChinese,
/// <summary>
/// 日文标准字形。
/// </summary>
Japanese,
/// <summary>
/// 韩文标准字形。
/// </summary>
Korean,
/// <summary>
/// 其他语言。
/// </summary>
Other
}