refactor(本地化): 将程序标题从中文改为英文

统一程序界面标题为英文,提高代码一致性并方便国际化维护
This commit is contained in:
2025-08-31 20:35:21 +08:00
parent a655c05d42
commit e52dc98010
10 changed files with 10 additions and 10 deletions

View File

@@ -10,7 +10,7 @@ local old_bg = term.getBackgroundColor()
term.setTextColor(colors.white)
term.setBackgroundColor(colors.cyan)
term.at(1, 1).clearLine()
term.at(1, 1).write("=== 红石控制 ===")
term.at(1, 1).write("=== Redstone Control ===")
-- 恢复颜色设置
term.setTextColor(old_fg)