From ddb915c602df3d8b3b38d36ad8ffefa6550fdf09 Mon Sep 17 00:00:00 2001 From: yggverse Date: Thu, 5 Dec 2024 20:26:04 +0200 Subject: [PATCH] update message text --- .../window/tab/item/identity/gemini/widget/form/drop.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/browser/window/tab/item/identity/gemini/widget/form/drop.rs b/src/app/browser/window/tab/item/identity/gemini/widget/form/drop.rs index e2d5d7da..cc082aba 100644 --- a/src/app/browser/window/tab/item/identity/gemini/widget/form/drop.rs +++ b/src/app/browser/window/tab/item/identity/gemini/widget/form/drop.rs @@ -14,11 +14,11 @@ use std::{cell::RefCell, rc::Rc}; // Defaults const LABEL: &str = "Delete"; -const TOOLTIP_TEXT: &str = "Drop selected identity from database"; +const TOOLTIP_TEXT: &str = "Drop selected identity from profile"; const MARGIN: i32 = 8; const HEADING: &str = "Delete"; -const BODY: &str = "Permanently delete selected identity from database?"; +const BODY: &str = "Delete selected identity from profile?"; const RESPONSE_CANCEL: (&str, &str) = ("cancel", "Cancel"); const RESPONSE_CONFIRM: (&str, &str) = ("confirm", "Confirm");