Skip to content

Commit

Permalink
cinnamon-close-dialog: Fix dialog text (#11739)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcalixte committed Jul 4, 2023
1 parent 004de65 commit a3640a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/usr/bin/cinnamon-close-dialog
Original file line number Diff line number Diff line change
Expand Up @@ -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="<b>%s</b>" % text, use_markup=True, wrap=True)
content_box.pack_start(prompt, True, True, 5)

Expand Down

0 comments on commit a3640a3

Please sign in to comment.