/debug Multiple languages

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
lvjia
2026-04-28 13:09:34 +08:00
parent 57ce0e183b
commit f6204134a9
4 changed files with 63 additions and 6 deletions

View File

@@ -121,6 +121,7 @@ public class CommandTextCHT
public HelpTextCHT Help { get; } = new();
public GirlTextCHT Girl { get; } = new();
public GiveAllTextCHT GiveAll { get; } = new();
public DebugTextCHT Debug { get; } = new();
}
#endregion
@@ -237,6 +238,21 @@ public class GiveAllTextCHT
public string WeaponAdded => "已添加 {0} 把武器給玩家!";
}
/// <summary>
/// path: Game.Command.Debug
/// </summary>
public class DebugTextCHT
{
public string Desc => "切換調試封包輸出";
public string Usage => "用法: /debug [on|off|simple|detail|file]";
public string Enabled => "已啟用調試封包輸出。";
public string Disabled => "已停用調試封包輸出。";
public string SimpleEnabled => "已啟用簡易調試封包輸出。";
public string DetailEnabled => "已啟用詳細調試封包輸出。";
public string FileEnabled => "個人調試檔案輸出已啟用。";
public string FileDisabled => "個人調試檔案輸出已停用。";
}
#endregion
#endregion