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:
@@ -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