From a42eb6d36a3501766dfdc981ea2346aa0c8394e8 Mon Sep 17 00:00:00 2001 From: edouard Date: Fri, 31 Mar 2023 11:52:24 +0200 Subject: [PATCH] gui: change wording coins view --- gui/src/app/view/coins.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/src/app/view/coins.rs b/gui/src/app/view/coins.rs index 5a62548b..2eee7199 100644 --- a/gui/src/app/view/coins.rs +++ b/gui/src/app/view/coins.rs @@ -140,14 +140,14 @@ fn coin_list_view( if let Some(b) = coin.block_height { if blockheight > b as u32 + timelock as u32 { Some(Container::new( - text("The recovery path is available") + text("One of the recovery path is available") .bold() .small() .style(color::legacy::ALERT), )) } else { Some(Container::new( - text(format!("The recovery path will be available in {} blocks", b as u32 + timelock as u32 - blockheight)) + text(format!("One of the recovery path will be available in {} blocks", b as u32 + timelock as u32 - blockheight)) .bold() .small(), ))