/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 CommandTextCHS
public HelpTextCHS Help { get; } = new();
public GirlTextCHS Girl { get; } = new();
public GiveAllTextCHS GiveAll { get; } = new();
public DebugTextCHS Debug { get; } = new();
}
#endregion
@@ -237,6 +238,21 @@ public class GiveAllTextCHS
public string WeaponAdded => "已添加 {0} 把武器给玩家!";
}
/// <summary>
/// path: Game.Command.Debug
/// </summary>
public class DebugTextCHS
{
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