summaryrefslogtreecommitdiff
path: root/git-gui/lib/checkout_op.tcl
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-02-13 19:04:58 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-02-13 19:04:58 (GMT)
commit41e2edf41a6d501f1b8beca7f1f0bcbe9296dcc2 (patch)
tree5a3e97b7c147242f3550a7318ec45480ecaa7480 /git-gui/lib/checkout_op.tcl
parent6bc4c72132adbdc06c428f86a96f27e4f8173b99 (diff)
parent95b002eeb38de89feb7f0cc1a55721b45fd3cf11 (diff)
downloadgit-41e2edf41a6d501f1b8beca7f1f0bcbe9296dcc2.zip
git-41e2edf41a6d501f1b8beca7f1f0bcbe9296dcc2.tar.gz
git-41e2edf41a6d501f1b8beca7f1f0bcbe9296dcc2.tar.bz2
Merge git://repo.or.cz/git-gui
* git://repo.or.cz/git-gui: git-gui: Automatically spell check commit messages as the user types git-gui: support Git Gui.app under OS X 10.5 git-gui: Update German translation. git-gui: (i18n) Fix a bunch of still untranslated strings.
Diffstat (limited to 'git-gui/lib/checkout_op.tcl')
-rw-r--r--git-gui/lib/checkout_op.tcl6
1 files changed, 3 insertions, 3 deletions
diff --git a/git-gui/lib/checkout_op.tcl b/git-gui/lib/checkout_op.tcl
index f243966..6e14117 100644
--- a/git-gui/lib/checkout_op.tcl
+++ b/git-gui/lib/checkout_op.tcl
@@ -280,7 +280,7 @@ The rescan will be automatically started now.
} elseif {[is_config_true gui.trustmtime]} {
_readtree $this
} else {
- ui_status {Refreshing file status...}
+ ui_status [mc "Refreshing file status..."]
set fd [git_read update-index \
-q \
--unmerged \
@@ -320,7 +320,7 @@ method _readtree {} {
set readtree_d {}
$::main_status start \
[mc "Updating working directory to '%s'..." [_name $this]] \
- {files checked out}
+ [mc "files checked out"]
set fd [git_read --stderr read-tree \
-m \
@@ -447,7 +447,7 @@ If you wanted to be on a branch, create one now starting from 'This Detached Che
} else {
repository_state commit_type HEAD MERGE_HEAD
set PARENT $HEAD
- ui_status "Checked out '$name'."
+ ui_status [mc "Checked out '%s'." $name]
}
delete_this
}