From: Scott Kostyshak Date: Thu, 6 Apr 2017 02:08:10 +0000 (-0400) Subject: Remove "Bummer" from the "Save failed!" message X-Git-Tag: 2.3.0alpha1~117 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=57e93c47d525fbf0931c0a3265f6d5dbd8958935;p=features.git 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 --- diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 17516fe13c..58de3b5a92 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -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;