diff options
author | Sam Hocevar <sam@zoy.org> | 2009-03-24 00:42:24 +0100 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2009-03-24 16:17:30 -0700 |
commit | 966d0778db2e3b11f5fffa2312770ef534263058 (patch) | |
tree | 82dba86153b1148c8cc13d308e7c7fc8157a1b97 /lib/tools.tcl | |
parent | b59f091d803c2842bc7e51595551c04adde8ce82 (diff) | |
download | git-966d0778db2e3b11f5fffa2312770ef534263058.tar.gz git-966d0778db2e3b11f5fffa2312770ef534263058.tar.xz |
git-gui: minor spelling fix and string factorisation.
Properly spell "successful" and slightly rewrite a couple of strings
that actually say the same thing in order to reduce translation work.
Update .pot and .po files accordingly since no new translation is
required.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'lib/tools.tcl')
-rw-r--r-- | lib/tools.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tools.tcl b/lib/tools.tcl index 6ae63b6c7..95e6e5553 100644 --- a/lib/tools.tcl +++ b/lib/tools.tcl @@ -146,7 +146,7 @@ proc tools_complete {fullname w {ok 1}} { } if {$ok} { - set msg [mc "Tool completed succesfully: %s" $fullname] + set msg [mc "Tool completed successfully: %s" $fullname] } else { set msg [mc "Tool failed: %s" $fullname] } |