diff options
author | Christian Stimming <stimming@tuhh.de> | 2008-02-16 21:56:22 +0100 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-02-17 02:22:07 -0500 |
commit | b8331e15677b09638545cb398a4ef5b5d38aadf0 (patch) | |
tree | ca6fbab71e46a1c995afcce34c2b7d711a4a49c7 /lib | |
parent | git-gui: Correct size of dictionary name widget in options dialog (diff) | |
download | tgif-b8331e15677b09638545cb398a4ef5b5d38aadf0.tar.xz |
git-gui: (i18n) Add newly added translation strings to template.
And markup one missing string for translation.
Signed-off-by: Christian Stimming <stimming@tuhh.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spellcheck.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spellcheck.tcl b/lib/spellcheck.tcl index 7f018e4009..a67a5f748c 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 |