]> git.lyx.org Git - lyx.git/blobdiff - src/ispell.C
minimal effort implementation of:
[lyx.git] / src / ispell.C
index ffe619e6b4a6b67c208f5e94420e1327d33f7c7b..cdef2fb907acef9cf7565b763bb704ec4a0a663d 100644 (file)
@@ -158,7 +158,7 @@ int LaunchIspell::generateChild()
        if (lyxrc.isp_use_input_encoding &&
            params.inputenc != "default") {
                string enc = (params.inputenc == "auto")
-                       ? params.language->encoding()->LatexName()
+                       ? params.language->encoding()->latexName()
                        : params.inputenc;
                string::size_type n = enc.length();
                tmp = new char[3];
@@ -265,7 +265,7 @@ ISpell::ISpell(BufferParams const & params, string const & lang)
                error_ = buf;
        } else {
                // select returned error
-               error_ = _("The spell process returned an error.\nPerhaps "
+               error_ = _("The ispell process returned an error.\nPerhaps "
                                "it has been configured wrongly ?");
        }
 
@@ -374,7 +374,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 ispell spellchecker process.");
                return UNKNOWN_WORD;
        }