fix: change word verification to identification

This commit is contained in:
Derek Ross
2025-01-31 19:52:17 -05:00
parent 582a43e9f4
commit baf1dc0d7e

View File

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