From 2c606d991fb775c0385e32ae09c0a4f790e02651 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Tue, 28 Jan 2025 19:20:48 +0000 Subject: [PATCH] The example filename in the welcome gramplet should not be translated --- gramps/plugins/gramplet/welcomegramplet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/gramplet/welcomegramplet.py b/gramps/plugins/gramplet/welcomegramplet.py index 0bf20f397de..81bfdf85e03 100644 --- a/gramps/plugins/gramplet/welcomegramplet.py +++ b/gramps/plugins/gramplet/welcomegramplet.py @@ -265,7 +265,7 @@ def display_text(self): " the Gramps program.\n\n" ) ) - welcome += linkst(_("Example.gramps"), wiki("Example.gramps")) + "\n\n" + welcome += linkst("Example.gramps", wiki("Example.gramps")) + "\n\n" self.texteditor.set_text(welcome)