]> git.lyx.org Git - lyx.git/blobdiff - src/ispell.C
More 'standard conformant blurb' nonsense.
[lyx.git] / src / ispell.C
index b2426296e7e78d0d6db9dabaf7fec0b10e5765d5..419623033be8fc3549d6092dbe05fb0a5eec2b70 100644 (file)
@@ -17,6 +17,7 @@
 #include "ispell.h"
 #include "WordLangTuple.h"
 #include "gettext.h"
+#include "bufferparams.h"
 
 #include "support/forkedcall.h"
 #include "support/lstrings.h"
@@ -237,7 +238,7 @@ ISpell::ISpell(BufferParams const & params, string const & lang)
        child_.reset(li);
        if (li->start() == -1) {
                error_ = _("Could not create an ispell process.\nYou may not have "
-                       " the right languages installed.");
+                       "the right languages installed.");
                child_.reset(0);
                return;
        }
@@ -367,7 +368,7 @@ enum ISpell::Result ISpell::check(WordLangTuple const & word)
        bool error = select(err_read);
 
        if (error) {
-               error_ = _("Could not communicate with the spell-checker program");
+               error_ = _("Could not communicate with the spell-checker program.");
                return UNKNOWN;
        }