From a3640a323f92574caca61f0b5f201dc4861947a9 Mon Sep 17 00:00:00 2001 From: Rick Calixte <10281587+rcalixte@users.noreply.github.com> Date: Tue, 4 Jul 2023 11:06:53 -0400 Subject: [PATCH] cinnamon-close-dialog: Fix dialog text (#11739) --- files/usr/bin/cinnamon-close-dialog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/usr/bin/cinnamon-close-dialog b/files/usr/bin/cinnamon-close-dialog index 326c1179c1..bbb8daed24 100755 --- a/files/usr/bin/cinnamon-close-dialog +++ b/files/usr/bin/cinnamon-close-dialog @@ -46,7 +46,7 @@ class CloseDialog(XApp.GtkWindow): image = Gtk.Image(icon_name="window-close-symbolic", pixel_size=48) content_box.pack_start(image, False, True, 0) - text = _("%s is not responding." % title) + text = _("%s is not responding.") % title prompt = Gtk.Label(label="%s" % text, use_markup=True, wrap=True) content_box.pack_start(prompt, True, True, 5)