]> git.lyx.org Git - lyx.git/blobdiff - src/Exporter.cpp
adjust
[lyx.git] / src / Exporter.cpp
index 3678fa1013dbab1a52881d9be1f735e084f035d0..5826cb52fcd7ae358d199bc0a192f44eceb00180 100644 (file)
 
 #include <boost/filesystem/operations.hpp>
 
+using std::find;
+using std::string;
+using std::vector;
+
 
 namespace lyx {
 
@@ -51,10 +55,6 @@ using support::onlyPath;
 using support::package;
 using support::prefixIs;
 
-using std::find;
-using std::string;
-using std::vector;
-
 namespace Alert = frontend::Alert;
 namespace fs = boost::filesystem;
 
@@ -80,11 +80,11 @@ int checkOverwrite(FileName const & filename)
 {
        if (fs::exists(filename.toFilesystemEncoding())) {
                docstring text = bformat(_("The file %1$s already exists.\n\n"
-                                                    "Do you want to over-write that file?"),
+                                                    "Do you want to overwrite that file?"),
                                      makeDisplayPath(filename.absFilename()));
-               return Alert::prompt(_("Over-write file?"),
+               return Alert::prompt(_("Overwrite file?"),
                                     text, 0, 2,
-                                    _("&Over-write"), _("Over-write &all"),
+                                    _("&Overwrite"), _("Overwrite &all"),
                                     _("&Cancel export"));
        }
        return 0;