fix(i18n): use 终止 instead of 中止 in zh-Hans approval dialog

中止 implies a temporary pause that can be resumed; 终止 means a
definitive end, which matches the English "Abort the turn" / "abort"
semantics of this action.

Update both the option label ("终止本轮") and the Esc key footer hint
("Esc:终止") in the approval/elevation widget.

Fixes #1273
This commit is contained in:
Vince
2026-05-09 14:20:04 +08:00
parent 15f62e3e93
commit cf51d8596d
+2 -2
View File
@@ -1387,7 +1387,7 @@ fn single_key_value(_locale: Locale) -> &'static str {
fn footer_controls(locale: Locale) -> &'static str {
match locale {
Locale::ZhHans => " · v:完整参数 · Esc:",
Locale::ZhHans => " · v:完整参数 · Esc:",
_ => " · v: full params · Esc: abort",
}
}
@@ -1495,7 +1495,7 @@ fn option_deny(locale: Locale) -> &'static str {
fn option_abort(locale: Locale) -> &'static str {
match locale {
Locale::ZhHans => "止本轮",
Locale::ZhHans => "止本轮",
_ => "Abort the turn",
}
}