Changeset 12796 for main/waeup.ikoba


Ignore:
Timestamp:
19 Mar 2015, 15:13:27 (10 years ago)
Author:
Henrik Bettermann
Message:

Use MessageFactory?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.ikoba/trunk/src/waeup/ikoba/payments/interfaces.py

    r12795 r12796  
    326326    gateway_service = schema.Choice(
    327327        title=_(u'Payment Gateway'),
    328         description=u'Payment gateway that handles this transaction.',
     328        description=_(u'Payment gateway that handles this transaction.'),
    329329        source=PaymentGatewayServicesSource(),
    330330        default=None,
     
    353353    amount = schema.Decimal(
    354354        title=_(u'Amount'),
    355         description=u'Total amount, includung any taxes, fees, etc.',
     355        description=_(u'Total amount, includung any taxes, fees, etc.'),
    356356        required=True,
    357357        readonly=True,
     
    367367
    368368    payment_items = schema.Tuple(
    369         title=_(u'Tuple of IPaymentItems.'),
     369        title=_(u'Tuple of IPaymentItems'),
    370370        value_type=schema.Object(
    371             title=u'Payment Item',
     371            title=_(u'Payment Item'),
    372372            schema=IPaymentItem,
    373373            ),
Note: See TracChangeset for help on using the changeset viewer.