diff options
| author | Christian Stimming <stimming@tuhh.de> | 2008-09-04 11:50:53 +0200 | 
|---|---|---|
| committer | Shawn O. Pearce <spearce@spearce.org> | 2008-09-04 21:28:48 -0700 | 
| commit | 700e560341edfe32242b6b5b3b380d6f945ec0e8 (patch) | |
| tree | d4c1b37ff310d1a277f0b401ac1a699548cd891d | |
| parent | 961a628fdd79a30188b0f76be98b3c1db8e13389 (diff) | |
| download | git-700e560341edfe32242b6b5b3b380d6f945ec0e8.tar.gz | |
git-gui: Mark forgotten strings for translation.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
| -rw-r--r-- | lib/index.tcl | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/index.tcl b/lib/index.tcl index 7c27f2af6c..d011406462 100644 --- a/lib/index.tcl +++ b/lib/index.tcl @@ -416,11 +416,11 @@ proc do_revert_selection {} {  	if {[array size selected_paths] > 0} {  		revert_helper \ -			{Reverting selected files} \ +			[mc "Reverting selected files"] \  			[array names selected_paths]  	} elseif {$current_diff_path ne {}} {  		revert_helper \ -			"Reverting [short_path $current_diff_path]" \ +			[mc "Reverting %s" [short_path $current_diff_path]] \  			[list $current_diff_path]  	}  } | 
