Ignore:
Timestamp:
2 Mar 2012, 06:53:59 (13 years ago)
Author:
Henrik Bettermann
Message:

Some minor changes on. The po files are now released for editing.

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  
    165165            if 'disable' in form:
    166166                try:
    167                     comment = _(u"AC disabled")
     167                    comment = _(u"disabled")
    168168                    self.context.disable(entry, comment)
    169169                    self.flash(_('${a} disabled.', mapping = {'a':entry}))
     
    173173            elif 'enable' in form:
    174174                try:
    175                     comment = _(u"AC re-enabled")
     175                    comment = _(u"re-enabled")
    176176                    self.context.enable(entry, comment)
    177177                    self.flash(_('${a} (re-)enabled.', mapping = {'a':entry}))
  • main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/interfaces.py

    r7719 r7745  
    3636        )
    3737    random_num = schema.TextLine(
    38         title = _(u'Random part of access code.'),
     38        title = _(u'Random part of access code'),
    3939        )
    4040    cost = schema.Float(
Note: See TracChangeset for help on using the changeset viewer.