]> git.lyx.org Git - lyx.git/blobdiff - src/callback.cpp
EmbeddedObjects.lyx: add hint how to force a rotation direction for rotated floats
[lyx.git] / src / callback.cpp
index 3f6701a017b6fd8a96f03558cce0284767773796..8ef1ee2e29d7f30eab9c96048ba2c3750689a239 100644 (file)
@@ -30,7 +30,6 @@
 #include "Layout.h"
 #include "LyXRC.h"
 #include "Text.h"
-#include "Paragraph.h"
 #include "Undo.h"
 
 #include "frontends/alert.h"
@@ -165,9 +164,9 @@ bool writeAs(Buffer * buffer, string const & newname)
        if (fs::exists(filename.toFilesystemEncoding())) {
                docstring const file = makeDisplayPath(fname, 30);
                docstring text = bformat(_("The document %1$s already exists.\n\n"
-                                                    "Do you want to over-write that document?"), file);
-               int const ret = Alert::prompt(_("Over-write document?"),
-                       text, 0, 1, _("&Over-write"), _("&Cancel"));
+                                          "Do you want to overwrite that document?"), file);
+               int const ret = Alert::prompt(_("Overwrite document?"),
+                       text, 0, 1, _("&Overwrite"), _("&Cancel"));
 
                if (ret == 1)
                        return false;