notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit baf1dc0d7e7615ff7775332155669b9dc03de1ce
parent 582a43e9f4ea69a3f75e9d8bdc6480a0c963f787
Author: Derek Ross <derekross@gmail.com>
Date:   Fri, 31 Jan 2025 19:52:17 -0500

fix: change word verification to identification

Diffstat:
Mcrates/notedeck_columns/src/ui/profile/edit.rs | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/crates/notedeck_columns/src/ui/profile/edit.rs b/crates/notedeck_columns/src/ui/profile/edit.rs @@ -116,10 +116,10 @@ impl<'a> EditProfileView<'a> { ui.colored_label( ui.visuals().noninteractive().fg_stroke.color, RichText::new(if use_domain { - format!("\"{}\" will be used for verification", suffix) + format!("\"{}\" will be used for identification", suffix) } else { format!( - "\"{}\" at \"{}\" will be used for verification", + "\"{}\" at \"{}\" will be used for identification", prefix, suffix ) }),