From 6619409f8baebb327f570ed46a2fa0668d6763df Mon Sep 17 00:00:00 2001 From: tragivictoria Date: Wed, 15 Jul 2026 10:10:46 +0200 Subject: [PATCH] Server: Properly deduplicate string In #521 I accidentally introduced new string. This commit fixes this. --- server/src/gnome/prompter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/gnome/prompter.rs b/server/src/gnome/prompter.rs index 179e57b6..1d1e7200 100644 --- a/server/src/gnome/prompter.rs +++ b/server/src/gnome/prompter.rs @@ -178,7 +178,7 @@ impl Properties { message: Some(gettext("Authentication required")), description: Some( formatx!( - gettext("An application wants access to the keyring '{}', but it is locked",), + gettext("An application wants access to the keyring “{}”, but it is locked",), keyring, ) .expect("Wrong format in translatable string"),