diff --git a/Common/Internationalization/Message/LanguageCHT.cs b/Common/Internationalization/Message/LanguageCHT.cs index b728fd0c..9eda272a 100644 --- a/Common/Internationalization/Message/LanguageCHT.cs +++ b/Common/Internationalization/Message/LanguageCHT.cs @@ -8,11 +8,11 @@ namespace EggLink.DanhengServer.Internationalization.Message { #region Root - public class LanguageCHS + public class LanguageCHT { - public GameTextCHS Game { get; } = new(); - public ServerTextCHS Server { get; } = new(); - public WordTextCHS Word { get; } = new(); // a placeholder for the actual word text + public GameTextCHT Game { get; } = new(); + public ServerTextCHT Server { get; } = new(); + public WordTextCHT Word { get; } = new(); // a placeholder for the actual word text } #endregion @@ -22,24 +22,24 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game /// - public class GameTextCHS + public class GameTextCHT { - public CommandTextCHS Command { get; } = new(); + public CommandTextCHT Command { get; } = new(); } /// /// path: Server /// - public class ServerTextCHS + public class ServerTextCHT { - public WebTextCHS Web { get; } = new(); - public ServerInfoTextCHS ServerInfo { get; } = new(); + public WebTextCHT Web { get; } = new(); + public ServerInfoTextCHT ServerInfo { get; } = new(); } /// /// path: Word /// - public class WordTextCHS + public class WordTextCHT { public string Rank { get; } = "星魂"; public string Avatar { get; } = "角色"; @@ -95,25 +95,25 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command /// - public class CommandTextCHS + public class CommandTextCHT { - public NoticeTextCHS Notice { get; } = new(); + public NoticeTextCHT Notice { get; } = new(); - public HeroTextCHS Hero { get; } = new(); - public AvatarTextCHS Avatar { get; } = new(); - public GiveTextCHS Give { get; } = new(); - public GiveAllTextCHS GiveAll { get; } = new(); - public LineupTextCHS Lineup { get; } = new(); - public HelpTextCHS Help { get; } = new(); - public KickTextCHS Kick { get; } = new(); - public MissionTextCHS Mission { get; } = new(); - public RelicTextCHS Relic { get; } = new(); - public ReloadTextCHS Reload { get; } = new(); - public RogueTextCHS Rogue { get; } = new(); - public SceneTextCHS Scene { get; } = new(); - public UnlockAllTextCHS UnlockAll { get; } = new(); - public MailTextCHS Mail { get; } = new(); - public RaidTextCHS Raid { get; } = new(); + public HeroTextCHT Hero { get; } = new(); + public AvatarTextCHT Avatar { get; } = new(); + public GiveTextCHT Give { get; } = new(); + public GiveAllTextCHT GiveAll { get; } = new(); + public LineupTextCHT Lineup { get; } = new(); + public HelpTextCHT Help { get; } = new(); + public KickTextCHT Kick { get; } = new(); + public MissionTextCHT Mission { get; } = new(); + public RelicTextCHT Relic { get; } = new(); + public ReloadTextCHT Reload { get; } = new(); + public RogueTextCHT Rogue { get; } = new(); + public SceneTextCHT Scene { get; } = new(); + public UnlockAllTextCHT UnlockAll { get; } = new(); + public MailTextCHT Mail { get; } = new(); + public RaidTextCHT Raid { get; } = new(); } #endregion @@ -123,14 +123,14 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Server.Web /// - public class WebTextCHS + public class WebTextCHT { } /// /// path: Server.ServerInfo /// - public class ServerInfoTextCHS + public class ServerInfoTextCHT { public string Shutdown { get; } = "關閉中…"; public string CancelKeyPressed { get; } = "已按下取消鍵 (Ctrl + C),服務器即將關閉…"; @@ -163,7 +163,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Notice /// - public class NoticeTextCHS + public class NoticeTextCHT { public string PlayerNotFound { get; } = "未找到玩家!"; public string InvalidArguments { get; } = "無效的參數!"; @@ -178,7 +178,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Hero /// - public class HeroTextCHS + public class HeroTextCHT { public string Desc { get; } = "切換主角的性別/形態"; public string Usage { get; } = "/hero /"; @@ -191,7 +191,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.UnlockAll /// - public class UnlockAllTextCHS + public class UnlockAllTextCHT { public string Desc { get; } = "解鎖所有在類別內的對象"; public string Usage { get; } = "/unlockall "; @@ -201,7 +201,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Avatar /// - public class AvatarTextCHS + public class AvatarTextCHT { public string Desc { get; } = "設定玩家已有角色的屬性"; public string Usage { get; } = "/avatar ///"; @@ -216,7 +216,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Give /// - public class GiveTextCHS + public class GiveTextCHT { public string Desc { get; } = "給予玩家物品"; public string Usage { get; } = "/give <物品ID> l<等級> x<數量> r<疊影>"; @@ -227,7 +227,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.GiveAll /// - public class GiveAllTextCHS + public class GiveAllTextCHT { public string Desc { get; } = "給予玩家全部指定類型的物品"; public string Usage { get; } = "/giveall r<疊影> l<等級> x<數量>"; @@ -237,7 +237,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Lineup /// - public class LineupTextCHS + public class LineupTextCHT { public string Desc { get; } = "管理玩家的隊伍"; public string Usage { get; } = "/lineup /"; @@ -248,7 +248,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Help /// - public class HelpTextCHS + public class HelpTextCHT { public string Desc { get; } = "顯示幫助信息"; public string Usage { get; } = "/help"; @@ -259,7 +259,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Kick /// - public class KickTextCHS + public class KickTextCHT { public string Desc { get; } = "踢出玩家"; public string Usage { get; } = "/kick"; @@ -269,7 +269,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Mission /// - public class MissionTextCHS + public class MissionTextCHT { public string Desc { get; } = "管理玩家的任務"; public string Usage { get; } = "/mission ////"; @@ -289,7 +289,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Relic /// - public class RelicTextCHS + public class RelicTextCHT { public string Desc { get; } = "管理玩家的遺器"; public string Usage { get; } = "/relic <遺器ID> <主詞條ID> <小詞條ID1:小詞條等級> <小詞條ID2:小詞條等級> <小詞條ID3:小詞條等級> <小詞條ID4:小詞條等級> l<等級> x<數量>"; @@ -302,7 +302,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Reload /// - public class ReloadTextCHS + public class ReloadTextCHT { public string Desc { get; } = "重新加載指定的配置"; public string Usage { get; } = "/reload <配置名>(banner - 卡池, activity - 活動)"; @@ -312,7 +312,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Rogue /// - public class RogueTextCHS + public class RogueTextCHT { public string Desc { get; } = "管理玩家模擬宇宙中的數據"; public string Usage { get; } = "/rogue ////"; @@ -328,7 +328,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Scene /// - public class SceneTextCHS + public class SceneTextCHT { public string Desc { get; } = "管理玩家場景"; public string Usage { get; } = "/scene ////"; @@ -346,7 +346,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Mail /// - public class MailTextCHS + public class MailTextCHT { public string Desc { get; } = "管理玩家的郵件"; public string Usage { get; } = "/mail /"; @@ -357,7 +357,7 @@ namespace EggLink.DanhengServer.Internationalization.Message /// /// path: Game.Command.Raid /// - public class RaidTextCHS + public class RaidTextCHT { public string Desc { get; } = "管理玩家的任務臨時場景"; public string Usage { get; } = "/raid ";