Skip to content

Commit 6469d1f

Browse files
author
Alexander Smishlajev
committed
translate property names in "item edited ok" message
1 parent 9462214 commit 6469d1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/cgi/actions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#$Id: actions.py,v 1.32 2004-07-03 17:17:47 a1s Exp $
1+
#$Id: actions.py,v 1.33 2004-07-06 11:29:12 a1s Exp $
22

33
import re, cgi, StringIO, urllib, Cookie, time, random
44

@@ -408,7 +408,7 @@ def _editnodes(self, all_props, all_links, newids=None):
408408

409409
# and some nice feedback for the user
410410
if props:
411-
info = ', '.join(props.keys())
411+
info = ', '.join(map(self._, props.keys()))
412412
m.append(
413413
self._('%(class)s %(id)s %(properties)s edited ok')
414414
% {'class':cn, 'id':nodeid, 'properties':info})

0 commit comments

Comments
 (0)