Skip to content

Commit 437492f

Browse files
author
Alexander Smishlajev
committed
translate new display message
1 parent 712d5ec commit 437492f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/roundupdb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: roundupdb.py,v 1.126 2006-11-09 01:13:56 richard Exp $
19+
# $Id: roundupdb.py,v 1.127 2006-11-10 11:03:42 a1s Exp $
2020

2121
"""Extending hyperdb with types specific to issue-tracking.
2222
"""
@@ -594,7 +594,7 @@ def generateChangeNote(self, nodeid, oldvalues):
594594
if '\n' in change:
595595
value = self.indentChangeNoteValue(str(value))
596596
oldvalue = self.indentChangeNoteValue(str(oldvalue))
597-
change = '\nNow:\n%s\nWas:\n%s'%(value, oldvalue)
597+
change = _('\nNow:\n%s\nWas:\n%s') % (value, oldvalue)
598598
m.append('%s: %s'%(propname, change))
599599
if m:
600600
m.insert(0, '----------')

0 commit comments

Comments
 (0)