mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
18 lines
385 B
C#
18 lines
385 B
C#
using System.Globalization;
|
|
|
|
namespace EggLink.DanhengServer.Util;
|
|
|
|
public static class UtilTools
|
|
{
|
|
public static string GetCurrentLanguage()
|
|
{
|
|
var uiCulture = CultureInfo.CurrentUICulture;
|
|
return uiCulture.Name switch
|
|
{
|
|
"zh-CN" => "CHS",
|
|
"zh-TW" => "CHT",
|
|
"ja-JP" => "JP",
|
|
_ => "EN"
|
|
};
|
|
}
|
|
} |