git-gui i18n: mark strings for translation
Mark strings for translation in lib/index.tcl that were seemingly left behind by 700e560 ("git-gui: Mark forgotten strings for translation.", 2008-09-04) which marks string in do_revert_selection procedure. These strings are passed to unstage_help and add_helper procedures. Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Vasco Almeida committed
May 8, 2016 at 10:52 UTC
124356b6352ef297bc6575ba6f96e413ee775280
1 file changed
+3
-3
lib/index.tcl
+3
-3
@@ -291,7 +291,7 @@ proc do_unstage_selection {} {
291
292
if {[array size selected_paths] > 0} {
293
unstage_helper \
294
- {Unstaging selected files from commit} \
294
+ [mc "Unstaging selected files from commit"] \
295
[array names selected_paths]
296
} elseif {$current_diff_path ne {}} {
297
unstage_helper \
@@ -343,7 +343,7 @@ proc do_add_selection {} {
343
344
if {[array size selected_paths] > 0} {
345
add_helper \
346
- {Adding selected files} \
346
+ [mc "Adding selected files"] \
347
[array names selected_paths]
348
} elseif {$current_diff_path ne {}} {
349
add_helper \
@@ -385,7 +385,7 @@ proc do_add_all {} {
385
set paths [concat $paths $untracked_paths]
386
}
387
}
388
- add_helper {Adding all changed files} $paths
388
+ add_helper [mc "Adding all changed files"] $paths
389
}
390
391
proc revert_helper {txt paths} {