From: Christian Stimming Date: Thu, 4 Sep 2008 09:50:53 +0000 (+0200) Subject: git-gui: Mark forgotten strings for translation. X-Git-Tag: v1.6.1-rc1~3^2~67 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=700e560341edfe32242b6b5b3b380d6f945ec0e8;p=git.git git-gui: Mark forgotten strings for translation. Signed-off-by: Shawn O. Pearce --- diff --git a/lib/index.tcl b/lib/index.tcl index 7c27f2af6..d01140646 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] } }