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

Closes #1273. 中止 implies a temporarily-stoppable action; 终止 is the definitive 'end the turn' semantics that matches the English 'Abort the turn'. Updates two strings in the approval dialog (`option_abort` and the footer controls hint).

Thanks @Liu-Vince.
This commit is contained in:
Hunter Bown
2026-05-09 08:53:22 -05:00
committed by GitHub
+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",
}
}