summaryrefslogtreecommitdiff
path: root/lib/checkout_op.tcl
diff options
context:
space:
mode:
authorLibravatar Christian Stimming <stimming@tuhh.de>2008-02-02 10:20:17 +0100
committerLibravatar Shawn O. Pearce <spearce@spearce.org>2008-02-03 21:25:29 -0500
commit5e6d7768e13088cc0082614fd106b327214fdc6d (patch)
tree8bfd6e56d430c0627a5c2292f0334e834b02cf15 /lib/checkout_op.tcl
parentgit-gui: Correctly cleanup msgfmt '1 message untranslated' output (diff)
downloadtgif-5e6d7768e13088cc0082614fd106b327214fdc6d.tar.xz
git-gui: (i18n) Fix a bunch of still untranslated strings.
Signed-off-by: Christian Stimming <stimming@tuhh.de> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'lib/checkout_op.tcl')
-rw-r--r--lib/checkout_op.tcl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/checkout_op.tcl b/lib/checkout_op.tcl
index f243966924..6e1411711b 100644
--- a/lib/checkout_op.tcl
+++ b/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
}