Skip to content

Commit

Permalink
git-gui: (i18n) Add newly added translation strings to template.
Browse files Browse the repository at this point in the history
And markup one missing string for translation.

Signed-off-by: Christian Stimming <stimming@tuhh.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
  • Loading branch information
Christian Stimming authored and Shawn O. Pearce committed Feb 17, 2008
1 parent 740b9b9 commit b8331e1
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/spellcheck.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
32 changes: 28 additions & 4 deletions po/git-gui.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-02-02 10:14+0100\n"
"POT-Creation-Date: 2008-02-16 21:24+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down Expand Up @@ -1474,10 +1474,10 @@ msgstr ""

#: lib/merge.tcl:119
#, tcl-format
msgid "Merging %s and %s"
msgid "Merging %s and %s..."
msgstr ""

#: lib/merge.tcl:131
#: lib/merge.tcl:130
msgid "Merge completed successfully."
msgstr ""

Expand Down Expand Up @@ -1592,7 +1592,11 @@ msgstr ""
msgid "New Branch Name Template"
msgstr ""

#: lib/option.tcl:176
#: lib/option.tcl:191
msgid "Spelling Dictionary:"
msgstr ""

#: lib/option.tcl:215
msgid "Change Font"
msgstr ""

Expand Down Expand Up @@ -1709,6 +1713,26 @@ msgstr ""
msgid "Cannot write icon:"
msgstr ""

#: lib/spellcheck.tcl:37
msgid "Not connected to aspell"
msgstr ""

#: lib/spellcheck.tcl:41
msgid "Unrecognized aspell version"
msgstr ""

#: lib/spellcheck.tcl:135
msgid "No Suggestions"
msgstr ""

#: lib/spellcheck.tcl:336
msgid "Unexpected EOF from aspell"
msgstr ""

#: lib/spellcheck.tcl:340
msgid "Spell Checker Failed"
msgstr ""

#: lib/status_bar.tcl:83
#, tcl-format
msgid "%s ... %*i of %*i %s (%3i%%)"
Expand Down

0 comments on commit b8331e1

Please sign in to comment.