]> git.lyx.org Git - features.git/commitdiff
typos in ispell messages
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 9 Jul 2003 14:36:40 +0000 (14:36 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 9 Jul 2003 14:36:40 +0000 (14:36 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7251 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/ispell.C

index 2100d9615dbac9e5a0712199e366925a73c14b4d..050cd75e76acc2e241bacfd918032d89990e773d 100644 (file)
@@ -1,4 +1,8 @@
-2003-07-08     Martin Vermeer  <martin.vermeer@hut.fi>
+2003-07-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
+
+       * ispell.C: fix two typos in error messages
+
+2003-07-08  Martin Vermeer  <martin.vermeer@hut.fi>
 
        * Extend Note inset to other forms of annotation like Comment
        and Greyedout. Right button click gives dialog.
index b2426296e7e78d0d6db9dabaf7fec0b10e5765d5..c04e1a38e3314fdc7089322a423a587d74dd1572 100644 (file)
@@ -237,7 +237,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 +367,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;
        }