Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-10-03 23:30:37 +0300
committerJunio C Hamano <gitster@pobox.com>2016-10-03 23:30:37 +0300
commitcb3debdc122314401a7107fa6e2d18fea2b7f268 (patch)
tree42f232f691071236fcdfcd1ff2a27bc3fe82b7a2 /git-gui/lib
parent5a2c86fb08cc195ca39d82e2c2d84158f05b96fc (diff)
parent0219a0572187f04cf6ff04323b81b0669776d21a (diff)
Merge branch 'va/git-gui-i18n'
"git gui" l10n to Portuguese. * va/git-gui-i18n: git-gui: l10n: add Portuguese translation git-gui i18n: mark strings for translation
Diffstat (limited to 'git-gui/lib')
-rw-r--r--git-gui/lib/index.tcl6
1 files changed, 3 insertions, 3 deletions
diff --git a/git-gui/lib/index.tcl b/git-gui/lib/index.tcl
index 74a81a7b42..3a3e534aef 100644
--- a/git-gui/lib/index.tcl
+++ b/git-gui/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} {