Remove "Bummer" from the "Save failed!" message

There is a small chance that the user could get offended by this
nonchalant word in a data loss situation.

For discussion, see

  https://www.mail-archive.com/search?l=mid&q=20170401043945.7bpmrdugtqo6dw3j%40steph
This commit is contained in:
Scott Kostyshak 2017-04-05 22:08:10 -04:00
parent 2b0969c31c
commit 57e93c47d5

View File

@ -556,7 +556,7 @@ Buffer::~Buffer()
try {
msg += emergencyWrite();
} catch (...) {
msg += " " + _("Save failed! Bummer. Document is lost.");
msg += " " + _("Save failed! Document is lost.");
}
Alert::warning(_("Attempting to close changed document!"), msg);
}
@ -1610,7 +1610,7 @@ docstring Buffer::emergencyWrite()
return user_message;
}
user_message += " " + _("Save failed! Bummer. Document is lost.");
user_message += " " + _("Save failed! Document is lost.");
// Don't try again.
markClean();
return user_message;