Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

repomodel: rename "WORKING DIRECTORY" to "Working copy changes"

and docorate it with ** .. ** to mark it as special

Changeset e33a61eec8e7

Parent 37f88249a0f2

by Adrian Buehlmann

Changes to one file · Browse files at e33a61eec8e7 Showing diff from parent 37f88249a0f2 Diff from another changeset...

 
23
24
25
 
 
26
27
28
 
69
70
71
72
 
73
74
75
 
23
24
25
26
27
28
29
30
 
71
72
73
 
74
75
76
77
@@ -23,6 +23,8 @@
 from tortoisehg.hgqt.config import HgConfig  from tortoisehg.hgqt.qtlib import geticon   +from tortoisehg.hgqt.i18n import _ +  from PyQt4 import QtCore, QtGui  connect = QtCore.QObject.connect  SIGNAL = QtCore.SIGNAL @@ -69,7 +71,7 @@
  if msg:   msg = msg.splitlines()[0]   else: - msg = "WORKING DIRECTORY" + msg = '** ' + _('Working copy changes') + ' **'   return msg    # XXX maybe it's time to make these methods of the model...