summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/spellcheck.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spellcheck.tcl b/lib/spellcheck.tcl
index 7f018e4..a67a5f7 100644
--- a/lib/spellcheck.tcl
+++ b/lib/spellcheck.tcl
@@ -333,11 +333,11 @@ method _read {} {
fconfigure $s_fd -block 1
if {[eof $s_fd]} {
if {![catch {close $s_fd} err]} {
- set err [mc "unexpected eof from aspell"]
+ set err [mc "Unexpected EOF from aspell"]
}
catch {after cancel $s_i}
$w_text tag remove misspelled 1.0 end
- error_popup [strcat "Spell Checker Failed" "\n\n" $err]
+ error_popup [strcat [mc "Spell Checker Failed"] "\n\n" $err]
return
}
fconfigure $s_fd -block 0