summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2012-07-09 19:54:34 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2012-07-09 20:01:52 +0200
commit67487d837242b1c9dac0d6317e9858c290776c3b (patch)
treee87f35105df3c77522520e9f02e965fce2fbd94f
parent9af4c265d29853069a1d991bf471541402ad110e (diff)
Remove exclamation mark from error messages
They are not needed, and such marks in messages are generally not recommended. https://bugzilla.gnome.org/show_bug.cgi?id=679645
-rw-r--r--src/wizard.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wizard.vala b/src/wizard.vala
index 785ca0d..03822de 100644
--- a/src/wizard.vala
+++ b/src/wizard.vala
@@ -89,7 +89,7 @@ private class Boxes.Wizard: Boxes.UI {
if (create ())
App.app.ui_state = UIState.COLLECTION;
else
- App.app.notificationbar.display_error (_("Box creation failed!"));
+ App.app.notificationbar.display_error (_("Box creation failed"));
return;
}
} else {
@@ -317,7 +317,7 @@ private class Boxes.Wizard: Boxes.UI {
} catch (IOError.CANCELLED cancel_error) { // We did this, so ignore!
return false;
} catch (GLib.Error error) {
- App.app.notificationbar.display_error (_("Box setup failed!"));
+ App.app.notificationbar.display_error (_("Box setup failed"));
warning (error.message);
return false;