Skip to content
Snippets Groups Projects
Commit 24506f9a authored by Hugo Posnic's avatar Hugo Posnic
Browse files

Make two strings translatables

parent 4b4e794e
No related branches found
No related tags found
No related merge requests found
......@@ -99,14 +99,14 @@ class PacmanMirrors(Gtk.Window):
def done(self, button):
# Confirm choice
dialog = Gtk.Dialog("Are you sure?", None, 0,
dialog = Gtk.Dialog(_("Are you sure?"), None, 0,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_OK, Gtk.ResponseType.OK))
dialog.set_transient_for(self)
dialog.set_border_width(10)
box = dialog.get_content_area()
box.set_spacing(10)
box.add(Gtk.Label("Are you sure to replace your list of mirrors?"))
box.add(Gtk.Label(_("Are you sure to replace your list of mirrors?")))
dialog.show_all()
response = dialog.run()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment