Ignore:
Timestamp:
8 Mar 2012, 22:28:46 (13 years ago)
Author:
Henrik Bettermann
Message:

KOFA -> Kofa

File:
1 edited

Legend:

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

    r7811 r7819  
    1818from zope.interface import Attribute
    1919from zope import schema
    20 from waeup.kofa.interfaces import IKOFAObject, SimpleKOFAVocabulary
     20from waeup.kofa.interfaces import IKofaObject, SimpleKofaVocabulary
    2121from waeup.kofa.interfaces import MessageFactory as _
    2222
    23 payment_states = SimpleKOFAVocabulary(
     23payment_states = SimpleKofaVocabulary(
    2424    (_('Not yet paid'),'unpaid'),
    2525    (_('Paid'),'paid'),
     
    2727    )
    2828
    29 payment_categories = SimpleKOFAVocabulary(
     29payment_categories = SimpleKofaVocabulary(
    3030    (_('School Fee'),'schoolfee'),
    3131    (_('Clearance'),'clearance'),
     
    3737    )
    3838
    39 class IPaymentsContainer(IKOFAObject):
     39class IPaymentsContainer(IKofaObject):
    4040    """A container for all kind of payment objects.
    4141
    4242    """
    4343
    44 class IPayment(IKOFAObject):
     44class IPayment(IKofaObject):
    4545    """A base representation of payments.
    4646
Note: See TracChangeset for help on using the changeset viewer.