Fix fault with uninitialised string
authorPete Fotheringham <pete.fotheringham@codethink.co.uk>
Tue, 17 Jan 2012 14:54:35 +0000 (14:54 +0000)
committerPete Fotheringham <pete.fotheringham@codethink.co.uk>
Tue, 17 Jan 2012 14:54:35 +0000 (14:54 +0000)
src/moonshot-identity-management-view.vala

index 3372a2d..631e6ff 100644 (file)
@@ -676,8 +676,9 @@ class IdentityManagerView : Window {
                                       Gtk.DialogFlags.DESTROY_WITH_PARENT,
                                       Gtk.MessageType.QUESTION,
                                       Gtk.ButtonsType.YES_NO,
-                                      _("Are you sure you want to stop '%s' ID Card to use %s?"),
-                                      custom_vbox.current_idcard.id_card.display_name);
+                                      _("Are you sure you want to stop '%s' ID Card from using %s?"),
+                                      custom_vbox.current_idcard.id_card.display_name,
+                                      _("this service"));
               var ret = dialog.run();
               dialog.hide();