From: John Levon Date: Mon, 28 Apr 2003 22:52:05 +0000 (+0000) Subject: discard changes X-Git-Tag: 1.6.10~16905 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=76cf52971187d4c60c3904ce4c11f813f3f46441;p=features.git discard changes git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6875 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index dec95766f9..47e2488cbd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2003-04-28 John Levon + + * bufferlist.C: changes for unsaved changes dialog + 2003-04-28 Lars Gullik Bjønnes * bufferlist.C (newFile): set language (messages_) for new diff --git a/src/bufferlist.C b/src/bufferlist.C index 89a4b8d993..31f59ba572 100644 --- a/src/bufferlist.C +++ b/src/bufferlist.C @@ -78,7 +78,7 @@ bool BufferList::quitWriteBuffer(Buffer * buf) text += file + _(" has unsaved changes.\n\nWhat do you want to do with it?"); #endif int const ret = Alert::prompt(_("Save changed document?"), - text, 0, 2, _("&Save"), _("&Discard"), _("&Cancel")); + text, 0, 2, _("&Save Changes"), _("&Discard Changes"), _("&Cancel")); if (ret == 0) { // FIXME: WriteAs can be asynch ! @@ -187,7 +187,7 @@ bool BufferList::close(Buffer * buf, bool ask) text += fname + _(" has unsaved changes.\n\nWhat do you want to do with it?"); #endif int const ret = Alert::prompt(_("Save changed document?"), - text, 0, 2, _("&Save"), _("&Discard"), _("&Cancel")); + text, 0, 2, _("&Save Changes"), _("&Discard Changes"), _("&Cancel")); if (ret == 0) { if (buf->isUnnamed()) {