From 2931ed57f6a2287e8440ad2eb41e18db6de3e4ff Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Sun, 7 May 2023 12:48:58 +0200 Subject: [PATCH] ui: some wording tweaks in badges --- gui/ui/src/component/badge.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/ui/src/component/badge.rs b/gui/ui/src/component/badge.rs index b0b271e2..c8c44382 100644 --- a/gui/ui/src/component/badge.rs +++ b/gui/ui/src/component/badge.rs @@ -97,7 +97,7 @@ pub fn deprecated<'a, T: 'a>() -> Container<'a, T> { Container::new(text::p2_regular(" Deprecated ")) .padding(10) .style(theme::Container::Pill(theme::Pill::Simple)), - "This spend cannot be included anymore in the blockchain", + "This transaction cannot be included in the blockchain anymore.", tooltip::Position::Top, ) .style(theme::Container::Card(theme::Card::Simple)), @@ -110,7 +110,7 @@ pub fn spent<'a, T: 'a>() -> Container<'a, T> { Container::new(text::p2_regular(" Spent ")) .padding(10) .style(theme::Container::Pill(theme::Pill::Simple)), - "The spend transaction was included in the blockchain", + "The transaction was included in the blockchain.", tooltip::Position::Top, ) .style(theme::Container::Card(theme::Card::Simple)),