Changeset 15254 for main/waeup.kofa/trunk/src/waeup
- Timestamp:
- 23 Nov 2018, 13:35:46 (6 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/hostels/browser.py
r15250 r15254 141 141 @property 142 142 def onclick(self): 143 msg = "'All expired bed space allocations will be annulled. " + \143 msg = _("'All expired bed space allocations will be annulled. " + \ 144 144 "Are you sure? \\n\\n" + \ 145 145 "Bed space allocation expires ${a} days after accommodation " + \ 146 146 "booking if maintenance fee is not " + \ 147 "paid.'" 147 "paid.'") 148 148 msg = _(msg, mapping={'a': self.context.allocation_expiration,}) 149 149 portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE -
main/waeup.kofa/trunk/src/waeup/kofa/locales/waeup.kofa.pot
r15253 r15254 15 15 msgstr "" 16 16 "Project-Id-Version: Meaningless\n" 17 "POT-Creation-Date: Fri Nov 23 14: 26:332018\n"17 "POT-Creation-Date: Fri Nov 23 14:34:18 2018\n" 18 18 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 19 19 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 3262 3262 msgstr "" 3263 3263 3264 #: waeup/kofa/hostels/browser.py:143 3265 msgid "'All expired bed space allocations will be annulled. Are you sure? \\n\\nBed space allocation expires ${a} days after accommodation booking if maintenance fee is not paid.'" 3266 msgstr "" 3267 3264 3268 #: waeup/kofa/hostels/browser.py:164 3265 3269 #: waeup/kofa/hostels/browser.py:186 … … 4648 4652 #: waeup/kofa/students/browser.py:2400 4649 4653 msgid "Bed Allocation Slip" 4654 msgstr "" 4655 4656 #: waeup/kofa/students/browser.py:2411 4657 msgid "" 4658 "\n" 4659 "<br /><br /><br /><br /><br /><font size=\"12\">\n" 4660 "Please endeavour to pay your hostel maintenance charge within ${a} days\n" 4661 " of being allocated a space or else you are deemed to have\n" 4662 " voluntarily forfeited it and it goes back into circulation to be\n" 4663 " available for booking afresh!</font>)\n" 4650 4664 msgstr "" 4651 4665 -
main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py
r15250 r15254 2409 2409 n = grok.getSite()['hostels'].allocation_expiration 2410 2410 if n: 2411 note = """2411 note = _(""" 2412 2412 <br /><br /><br /><br /><br /><font size="12"> 2413 2413 Please endeavour to pay your hostel maintenance charge within ${a} days 2414 2414 of being allocated a space or else you are deemed to have 2415 2415 voluntarily forfeited it and it goes back into circulation to be 2416 available for booking afresh!</font> 2417 """ 2416 available for booking afresh!</font>) 2417 """) 2418 2418 note = _(note, mapping={'a': n}) 2419 2419 portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE
Note: See TracChangeset for help on using the changeset viewer.