typos in ispell messages

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7251 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2003-07-09 14:36:40 +00:00
parent 720ae04991
commit 1279bac2b3
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
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> 2003-07-08 Martin Vermeer <martin.vermeer@hut.fi>
* Extend Note inset to other forms of annotation like Comment * Extend Note inset to other forms of annotation like Comment

View File

@ -237,7 +237,7 @@ ISpell::ISpell(BufferParams const & params, string const & lang)
child_.reset(li); child_.reset(li);
if (li->start() == -1) { if (li->start() == -1) {
error_ = _("Could not create an ispell process.\nYou may not have " error_ = _("Could not create an ispell process.\nYou may not have "
" the right languages installed."); "the right languages installed.");
child_.reset(0); child_.reset(0);
return; return;
} }
@ -367,7 +367,7 @@ enum ISpell::Result ISpell::check(WordLangTuple const & word)
bool error = select(err_read); bool error = select(err_read);
if (error) { if (error) {
error_ = _("Could not communicate with the spell-checker program"); error_ = _("Could not communicate with the spell-checker program.");
return UNKNOWN; return UNKNOWN;
} }