diff --git a/gui/src/app/state/recovery.rs b/gui/src/app/state/recovery.rs index 09298aaff..0a45543f7 100644 --- a/gui/src/app/state/recovery.rs +++ b/gui/src/app/state/recovery.rs @@ -247,7 +247,7 @@ fn recovery_paths(wallet: &Wallet, coins: &[Coin], blockheight: i32) -> Vec( Container::new( Column::new() .spacing(20) - .push(text(format!( - "{} recovery paths will be available at the next block, select one:", - recovery_paths.len() - ))) + .push(text(if recovery_paths.len() == 1 { + "1 recovery path is available, please select:".to_string() + } else { + format!( + "{} recovery paths are available, select one:", + recovery_paths.len() + ) + })) .push(Column::with_children(recovery_paths).spacing(20)), ) .style(theme::Container::Card(theme::Card::Simple))