summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLibravatar Pat Thoyts <patthoyts@users.sourceforge.net>2016-10-03 23:23:27 +0100
committerLibravatar Pat Thoyts <patthoyts@users.sourceforge.net>2016-10-03 23:23:27 +0100
commit64c6b4c507c0295dbd54b0981510a5a8fff71947 (patch)
treece7d77748c64859605008b608a5c90868f63f93a /lib
parentMerge branch 'rs/use-modern-git-merge-syntax' into pu (diff)
parentgit-gui: l10n: add Portuguese translation (diff)
downloadtgif-64c6b4c507c0295dbd54b0981510a5a8fff71947.tar.xz
Merge branch 'va/i18n' into pu
Diffstat (limited to 'lib')
-rw-r--r--lib/index.tcl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/index.tcl b/lib/index.tcl
index 74a81a7b42..3a3e534aef 100644
--- a/lib/index.tcl
+++ b/lib/index.tcl
@@ -291,7 +291,7 @@ proc do_unstage_selection {} {
if {[array size selected_paths] > 0} {
unstage_helper \
- {Unstaging selected files from commit} \
+ [mc "Unstaging selected files from commit"] \
[array names selected_paths]
} elseif {$current_diff_path ne {}} {
unstage_helper \
@@ -343,7 +343,7 @@ proc do_add_selection {} {
if {[array size selected_paths] > 0} {
add_helper \
- {Adding selected files} \
+ [mc "Adding selected files"] \
[array names selected_paths]
} elseif {$current_diff_path ne {}} {
add_helper \
@@ -385,7 +385,7 @@ proc do_add_all {} {
set paths [concat $paths $untracked_paths]
}
}
- add_helper {Adding all changed files} $paths
+ add_helper [mc "Adding all changed files"] $paths
}
proc revert_helper {txt paths} {