diff options
author | Markus Heidelberg <markus.heidelberg@web.de> | 2010-01-09 23:11:12 +0100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2010-01-12 22:20:18 +1100 |
commit | 0359ba72bb3e8d717ee90849e941bbe87b7fbaff (patch) | |
tree | a37251b8dc555c15602a37e6f0a7dcb39adf2cd3 /gitk | |
parent | gitk: Display submodule diffs with appropriate encoding (diff) | |
download | tgif-0359ba72bb3e8d717ee90849e941bbe87b7fbaff.tar.xz |
gitk: Adjust two equal strings which differed in whitespace
There were the two strings "SHA1 ID: " and "SHA1 ID:" as description
for the SHA1 search textbox. Change it to two equal strings, the
space is now outside of the translated string.
Furthermore the German translation wasn't unique, but "SHA1:" resp.
"SHA1-Hashwert:". The former was displayed after initialisation, the
latter after changes to the textbox, for example when clearing the text.
But it was too long to be displayed fully, so use a shorter translation.
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'gitk')
-rwxr-xr-x | gitk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2088,7 +2088,7 @@ proc makewindow {} { set sha1entry .tf.bar.sha1 set entries $sha1entry set sha1but .tf.bar.sha1label - button $sha1but -text [mc "SHA1 ID: "] -state disabled -relief flat \ + button $sha1but -text "[mc "SHA1 ID:"] " -state disabled -relief flat \ -command gotocommit -width 8 $sha1but conf -disabledforeground [$sha1but cget -foreground] pack .tf.bar.sha1label -side left |