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:
@@ -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",
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user