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)