From: Jean-Marc Lasgouttes Date: Wed, 9 Jul 2003 14:36:40 +0000 (+0000) Subject: typos in ispell messages X-Git-Tag: 1.6.10~16569 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=1279bac2b39a778dc19de5587fcce001667851ee;p=features.git typos in ispell messages git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7251 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index 2100d9615d..050cd75e76 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,4 +1,8 @@ -2003-07-08 Martin Vermeer +2003-07-07 Adrien Rebollo + + * ispell.C: fix two typos in error messages + +2003-07-08 Martin Vermeer * Extend Note inset to other forms of annotation like Comment and Greyedout. Right button click gives dialog. diff --git a/src/ispell.C b/src/ispell.C index b2426296e7..c04e1a38e3 100644 --- a/src/ispell.C +++ b/src/ispell.C @@ -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; }