]> git.lyx.org Git - features.git/commitdiff
Michael's "can not -> cannot" patch.
authorAngus Leeming <leeming@lyx.org>
Mon, 3 Sep 2001 10:04:47 +0000 (10:04 +0000)
committerAngus Leeming <leeming@lyx.org>
Mon, 3 Sep 2001 10:04:47 +0000 (10:04 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2662 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/FontInfo.C
src/converter.C
src/exporter.C
src/importer.C

index b7f543d172646d722930d9536ea5b32839a0bc18..6be667bf47ace8f826070a21e63d75ba0e7f80bf 100644 (file)
@@ -1,3 +1,10 @@
+2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
+
+       * FontInfo.C (query):
+       * converter.C (view):
+       * importer.C (Import):
+       * exporter.C (Export): Can not -> cannot.
+
 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
 
        * BufferView_pimpl.C: allow to create index inset even if
index 486f4ca03aaec13e80a961b09799a81664453b84..e7eb8117c0b70570e380daa8d303e9912a7b7e53 100644 (file)
@@ -111,7 +111,7 @@ void FontInfo::query()
                return;
 
        if (pattern.empty()) {
-               lyxerr << "Can not use empty font name for font query."
+               lyxerr << "Cannot use empty font name for font query."
                       << endl;
                queried = true;
                return;
index 004e5edf3f2f888509e4078a8a1e3cdffdccb4df..93e7957730b8b9343248acf3031b447f645bfc94 100644 (file)
@@ -168,7 +168,7 @@ bool Formats::view(Buffer const * buffer, string const & filename,
            format->isChildFormat())
                format = getFormat(format->parentFormat());
        if (!format || format->viewer().empty()) {
-               WriteAlert(_("Can not view file"),
+               WriteAlert(_("Cannot view file"),
                           _("No information for viewing ")
                           + prettyName(format_name));
                           return false;
@@ -198,7 +198,7 @@ bool Formats::view(Buffer const * buffer, string const & filename,
        int const res = one.startscript(Systemcalls::SystemDontWait, command);
 
        if (res) {
-               WriteAlert(_("Can not view file"),
+               WriteAlert(_("Cannot view file"),
                           _("Error while executing"),
                           command.substr(0, 50));
                return false;
@@ -574,7 +574,7 @@ bool Converters::convert(Buffer const * buffer,
 
        EdgePath edgepath = getPath(from_format, to_format);
        if (edgepath.empty()) {
-               WriteAlert(_("Can not convert file"),
+               WriteAlert(_("Cannot convert file"),
                           _("No information for converting from ")
                           + formats.prettyName(from_format) + _(" to ")
                           + formats.prettyName(to_format));
@@ -668,7 +668,7 @@ bool Converters::convert(Buffer const * buffer,
                                        WriteAlert(_("There were errors during the Build process."),
                                                   _("You should try to fix them."));
                                else
-                                       WriteAlert(_("Can not convert file"),
+                                       WriteAlert(_("Cannot convert file"),
                                                   "Error while executing",
                                                   command.substr(0, 50));
                                return false;
index d98fb37dbee4d9c855457a1711863c42d1694b9d..8cea7fd389807e3a73295cea54124bc7047d16a3 100644 (file)
@@ -45,7 +45,7 @@ bool Exporter::Export(Buffer * buffer, string const & format,
                        }
                }
                if (backend_format.empty()) {
-                       WriteAlert(_("Can not export file"),
+                       WriteAlert(_("Cannot export file"),
                                   _("No information for exporting to ")
                                   + formats.prettyName(format));
                        return false;
index 144b76200b3973887f12afd4bfbb5fa527e6e533..961cb23b8b5ff55f40a3e74d95463b352a9a98d6 100644 (file)
@@ -58,7 +58,7 @@ bool Importer::Import(LyXView * lv, string const & filename,
                        }
                }
                if (loader_format.empty()) {
-                       WriteAlert(_("Can not import file"),
+                       WriteAlert(_("Cannot import file"),
                                   _("No information for importing from ")
                                   + formats.prettyName(format));
                        return false;