]> git.lyx.org Git - lyx.git/blobdiff - src/importer.C
Alfredo's second patch
[lyx.git] / src / importer.C
index 808ec9c39573f7ec7dec4fdd7ca34ddb18a0f84b..50601b456c929c2ef92e9ac58631208cff9ef544 100644 (file)
@@ -1,17 +1,19 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file exporter.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author unknown
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
+
 
 #include <config.h>
 
 #include "importer.h"
 #include "converter.h"
+#include "format.h"
 #include "frontends/LyXView.h"
 #include "funcrequest.h"
 
@@ -21,7 +23,7 @@
 #include "gettext.h"
 #include "BufferView.h"
 
-#include "BoostFormat.h"
+#include "support/BoostFormat.h"
 
 #include <algorithm>
 
@@ -61,13 +63,14 @@ bool Importer::Import(LyXView * lv, string const & filename,
                }
                if (loader_format.empty()) {
 #if USE_BOOST_FORMAT
-                       Alert::alert(_("Cannot import file"),
-                                    boost::io::str(boost::format(_("No information for importing from %1$s"))
+// FIXME: better english ...
+                       Alert::error(_("Couldn't import file"),
+                                    boost::io::str(boost::format(_("No information for importing the format %1$s."))
                                   % formats.prettyName(format)));
 #else
-                       Alert::alert(_("Cannot import file"),
-                                    _("No information for importing from ")
-                                    + formats.prettyName(format));
+                       Alert::error(_("Couldn't import file"),
+                                    _("No information for importing the format ")
+                                    + formats.prettyName(format) + ".");
 #endif
                        return false;
                }