# HG changeset patch
# User Yuki KODAMA <[email protected]>
# Date 1244648101 -32400
# Node ID 275cb5b00fe4d303992cab62983537a9bf26020b
# Parent  0691f9c5c8d2507523c4a42a8c8933348cab2e3a
status: add 'status mark' to file filter labels

diff --git a/hggtk/status.py b/hggtk/status.py
--- a/hggtk/status.py
+++ b/hggtk/status.py
@@ -431,14 +431,14 @@
         self._show_checks = {}
         row, col = 0, 0
         # Tuple: (ctype, translated label)
-        checks = (('modified', _('modified')),
-                  ('added', _('added')),
-                  ('removed', _('removed')))
+        checks = (('modified', _('M: modified')),
+                  ('added',    _('A: added')),
+                  ('removed',  _('R: removed')))
         if self.count_revs() <= 1:
-            checks += (('deleted', _('deleted')),
-                       ('unknown', _('unknown')),
-                       ('clean', _('clean')),
-                       ('ignored', _('ignored')))
+            checks += (('deleted', _('!: deleted')),
+                       ('unknown', _('?: unknown')),
+                       ('clean',   _('C: clean')),
+                       ('ignored', _('I: ignored')))

         for ctuple in checks:
             check = gtk.CheckButton(ctuple[1])

------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
Tortoisehg-develop mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop

Reply via email to