Changeset 7745 for main/waeup.sirp/trunk/src/waeup/sirp/accesscodes
- Timestamp:
- 2 Mar 2012, 06:53:59 (13 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/accesscodes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/browser.py
r7720 r7745 165 165 if 'disable' in form: 166 166 try: 167 comment = _(u" ACdisabled")167 comment = _(u"disabled") 168 168 self.context.disable(entry, comment) 169 169 self.flash(_('${a} disabled.', mapping = {'a':entry})) … … 173 173 elif 'enable' in form: 174 174 try: 175 comment = _(u" ACre-enabled")175 comment = _(u"re-enabled") 176 176 self.context.enable(entry, comment) 177 177 self.flash(_('${a} (re-)enabled.', mapping = {'a':entry})) -
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/interfaces.py
r7719 r7745 36 36 ) 37 37 random_num = schema.TextLine( 38 title = _(u'Random part of access code .'),38 title = _(u'Random part of access code'), 39 39 ) 40 40 cost = schema.Float(
Note: See TracChangeset for help on using the changeset viewer.