git-gui: include the number of untracked files to stage when asking the user

Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
maint
Pat Thoyts 2011-10-18 09:32:22 +01:00
parent bb196e2619
commit 99665fc582
1 changed files with 2 additions and 1 deletions

View File

@ -377,7 +377,8 @@ proc do_add_all {} {
} }
ask - ask -
default { default {
set reply [ask_popup [mc "Stage also untracked files?"]] set reply [ask_popup [mc "Stage %d untracked files?" \
[llength $untracked_paths]]]
} }
} }
if {$reply} { if {$reply} {