Disambiguate dialog buttons

Fixes: #11242
(cherry picked from commit 74657a14a7)
This commit is contained in:
Juergen Spitzmueller 2018-08-14 17:03:46 +02:00
parent a0fb2f05c9
commit 08aef452e7
2 changed files with 3 additions and 1 deletions

View File

@ -126,7 +126,7 @@ Buffer * checkAndLoadLyXFile(FileName const & filename, bool const acceptDirty)
"exist.\n\nDo you want to create a new document?"),
from_utf8(filename.absFileName()));
if (!Alert::prompt(_("Create new document?"),
text, 0, 1, _("&Create"), _("Cancel")))
text, 0, 1, _("&Yes, Create New Document"), _("&No, Do Not Create")))
return newFile(filename.absFileName(), string(), true);
return 0;

View File

@ -31,6 +31,8 @@ What's new
- Improve layout of the character dialog (bugs 2752, 3804, 3884, and 4836).
- Disambiguate dialog message (bug 11242).
* DOCUMENTATION AND LOCALIZATION