mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
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:
parent
720ae04991
commit
1279bac2b3
@ -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
|
* Extend Note inset to other forms of annotation like Comment
|
||||||
and Greyedout. Right button click gives dialog.
|
and Greyedout. Right button click gives dialog.
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user