- Timestamp:
- 19 Mar 2015, 15:13:27 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/payments/interfaces.py
r12795 r12796 326 326 gateway_service = schema.Choice( 327 327 title=_(u'Payment Gateway'), 328 description= u'Payment gateway that handles this transaction.',328 description=_(u'Payment gateway that handles this transaction.'), 329 329 source=PaymentGatewayServicesSource(), 330 330 default=None, … … 353 353 amount = schema.Decimal( 354 354 title=_(u'Amount'), 355 description= u'Total amount, includung any taxes, fees, etc.',355 description=_(u'Total amount, includung any taxes, fees, etc.'), 356 356 required=True, 357 357 readonly=True, … … 367 367 368 368 payment_items = schema.Tuple( 369 title=_(u'Tuple of IPaymentItems .'),369 title=_(u'Tuple of IPaymentItems'), 370 370 value_type=schema.Object( 371 title= u'Payment Item',371 title=_(u'Payment Item'), 372 372 schema=IPaymentItem, 373 373 ),
Note: See TracChangeset for help on using the changeset viewer.