Changeset 15325 for main/waeup.kofa/trunk/src/waeup
- Timestamp:
- 8 Feb 2019, 08:27:51 (6 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/payment.py
r12893 r15325 68 68 return 'danger', msg, log 69 69 log = 'successful payment: %s' % self.p_id 70 msg = _(' Successful payment')70 msg = _('Payment successfully completed') 71 71 flashtype = 'success' 72 72 return flashtype, msg, log -
main/waeup.kofa/trunk/src/waeup/kofa/students/payments.py
r13736 r15325 147 147 return 'danger', error, error 148 148 log = 'successful %s payment: %s' % (self.p_category, self.p_id) 149 msg = _(' Successful payment')149 msg = _('Payment successfully completed') 150 150 flashtype = 'success' 151 151 return flashtype, msg, log … … 159 159 return 'danger', error, error 160 160 log = '%s payment approved: %s' % (self.p_category, self.p_id) 161 msg = _('Payment approved .')161 msg = _('Payment approved') 162 162 flashtype = 'success' 163 163 return flashtype, msg, log
Note: See TracChangeset for help on using the changeset viewer.