i18n: update

This commit is contained in:
iff 2024-12-07 01:01:04 +01:00
parent c10f08a0c2
commit 8e36542f46
4 changed files with 144 additions and 131 deletions

View file

@ -92,13 +92,14 @@ pub fn select_candidate(data: &mut Data) {
.with_answered_prompt_prefix(style)
.with_highlighted_option_prefix(style);
let msg = format!("{} suggestions found:", candidates.len())
let msg = format!("{}", t!("multi-suggest", num = candidates.len()))
.bold()
.blue();
let confirm = format!("[{}]", t!("confirm-yes")).green();
let hint = format!(
"{} {} {}",
"[↑/↓]".blue(),
t!("confirm-yes").green(),
confirm,
"[Ctrl+C]".red()
);
eprintln!("{}", msg);