Allows to manually add data changes into an object's history.

This commit is contained in:
Gaetan Delannay 2010-01-14 08:56:04 +01:00
parent db8ad18c5f
commit d192496c88
4 changed files with 44 additions and 15 deletions

View file

@ -703,6 +703,6 @@ class ToolMixin(AbstractMixin):
res = []
for v in validator:
text = self.translate('%s_list_%s' % (appyType['label'], v))
res.append((v, self.truncate(text, 70)))
res.append((v, self.truncate(text, 50)))
return res
# ------------------------------------------------------------------------------