diff options
author | Christian Stimming <stimming@tuhh.de> | 2008-02-02 10:20:17 +0100 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-02-03 21:25:29 -0500 |
commit | 5e6d7768e13088cc0082614fd106b327214fdc6d (patch) | |
tree | 8bfd6e56d430c0627a5c2292f0334e834b02cf15 /lib/checkout_op.tcl | |
parent | 3b8f19a02c3dd6043a7a6bdd65de2d4610c26b81 (diff) | |
download | git-5e6d7768e13088cc0082614fd106b327214fdc6d.tar.gz |
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.tcl | 6 |
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 } |