Changeset 16116 for main/waeup.kofa


Ignore:
Timestamp:
11 Jun 2020, 15:22:24 (4 years ago)
Author:
Henrik Bettermann
Message:

Add CheckTranscriptStatus? page.

Location:
main/waeup.kofa/trunk/src/waeup/kofa
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py

    r16097 r16116  
    2626from datetime import datetime, date
    2727from time import time, sleep
     28import xmlrpclib
    2829from zope.event import notify
    2930from zope.component import getUtility, queryUtility, createObject, getAdapter
     
    16531654        return
    16541655
     1656class CheckTranscriptStatus(KofaPage):
     1657    """A display page for checking transcript processing status.
     1658    """
     1659    grok.context(IApplicantsRoot)
     1660    grok.name('checktranscript')
     1661    grok.require('waeup.Public')
     1662    label = _('Check transcript status')
     1663    buttonname = _('Check status now')
     1664    pnav = 8
     1665    websites = (('DemoPortal', 'http://localhost:8080/app'),)
     1666    appl_url1 = 'http://localhost:8080/app/applicants'
     1667    appl_url2 = 'http://localhost:8080/app/applicants'
     1668
     1669    def update(self, SUBMIT=None):
     1670        form = self.request.form
     1671        self.button = False
     1672        # Handle captcha
     1673        self.captcha = getUtility(ICaptchaManager).getCaptcha()
     1674        self.captcha_result = self.captcha.verify(self.request)
     1675        self.captcha_code = self.captcha.display(self.captcha_result.error_code)
     1676        if SUBMIT:
     1677            self.results = []
     1678            if not self.captcha_result.is_valid:
     1679                # Captcha will display error messages automatically.
     1680                # No need to flash something.
     1681                return
     1682            unique_id = form.get('unique_id', None)
     1683            email = form.get('email', None)
     1684            if not unique_id or not email:
     1685                self.flash(
     1686                    _('Required input missing.'), type='warning')
     1687                return
     1688            self.button = True
     1689            # Call webservice of all websites
     1690            for website in self.websites:
     1691                server = xmlrpclib.ServerProxy(website[1])
     1692                result = server.get_grad_student(unique_id, email)
     1693                if not result:
     1694                    continue
     1695                self.results.append((result, website))
     1696        return
     1697
    16551698class ExportJobContainerOverview(KofaPage):
    16561699    """Page that lists active applicant data export jobs and provides links
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_browser.py

    r16064 r16116  
    15391539          'password is: <strong>%s</strong>' % self.applicant.application_number
    15401540          in self.browser.contents)
    1541        
     1541
     1542    def test_check_transcript_status(self):
     1543        self.applicant.email = 'aa@aa.aa'
     1544        self.browser.open('http://localhost/app/applicants/checktranscript')
     1545        self.browser.getControl(name="unique_id").value = 'nonsense'
     1546        self.browser.getControl(name="email").value = 'aa@aa.aa'
     1547        self.browser.getControl("Check status now").click()
     1548        # Here the test fails because it seems that
     1549        # xmlrpclib.ServerProxy can't be
     1550        # used in tests even if we use
     1551        # zope.app.testing.xmlrpc import ServerProxy with correct
     1552        # URL. Any idea Uli?
     1553        self.assertTrue('No student record was found in Kofa'
     1554            in self.browser.contents)
     1555        self.browser.getControl(
     1556          name="unique_id").value = self.applicant.applicant_id
     1557        self.browser.getControl(name="email").value = 'aa@aa.aa'
     1558        self.browser.getControl("Check status now").click()
    15421559
    15431560class ApplicantsExportTests(ApplicantsFullSetup, FunctionalAsyncTestCase):
  • main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/loginpage.pt

    r15609 r16116  
    2626    <strong><a href ="setpassword"> here</a></strong>.
    2727  </p>
    28   <p i18n:translate="login_trouble4">
     28  <p i18n:translate="login_trouble3">
    2929    You don't have an account because you are a fresh student, or your student record has just been created?
    3030    Inititialize your student account <strong><a href="requestpw"> here</a></strong>.
    3131  </p>
    32   <p i18n:translate="login_trouble3"> Or simply forgot your student id, applicant id or password? Then request a new password
     32  <p i18n:translate="login_trouble4"> Or simply forgot your student id, applicant id or password? Then request a new password
    3333    <strong><a href="changepw"> here</a></strong>.
    3434  </p>
    35   <p i18n:translate="login_trouble4"> You are student parents and want to monitor study progress
     35  <p i18n:translate="login_trouble5"> You are student parents and want to monitor study progress
    3636    of your child? Then request a temporary parents password <strong><a href="requestppw"> here</a></strong>.
    3737    Prerequisite for getting access is that you have a valid email address and that this address
  • main/waeup.kofa/trunk/src/waeup/kofa/locales/waeup.kofa.pot

    r15831 r16116  
    1515msgstr ""
    1616"Project-Id-Version: Meaningless\n"
    17 "POT-Creation-Date: Wed Nov 20 14:20:03 2019\n"
     17"POT-Creation-Date: Thu Jun 11 09:30:40 2020\n"
    1818"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1919"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    2626#: waeup/kofa/accesscodes/browser.py:101
    2727#: waeup/kofa/accesscodes/browser.py:114
    28 #: waeup/kofa/applicants/browser.py:253
    29 #: waeup/kofa/applicants/browser.py:360
    30 #: waeup/kofa/applicants/browser.py:361
    31 #: waeup/kofa/applicants/browser.py:470
    32 #: waeup/kofa/applicants/browser.py:540
    33 #: waeup/kofa/applicants/browser.py:573
     28#: waeup/kofa/applicants/browser.py:257
     29#: waeup/kofa/applicants/browser.py:364
     30#: waeup/kofa/applicants/browser.py:365
     31#: waeup/kofa/applicants/browser.py:477
     32#: waeup/kofa/applicants/browser.py:547
     33#: waeup/kofa/applicants/browser.py:580
    3434#: waeup/kofa/browser/pages.py:969
    3535#: waeup/kofa/browser/pages.py:1256
     
    5252#: waeup/kofa/browser/pages.py:2527
    5353#: waeup/kofa/browser/pages.py:2543
    54 #: waeup/kofa/browser/pages.py:2591
    55 #: waeup/kofa/browser/pages.py:2593
    56 #: waeup/kofa/browser/pages.py:2615
    57 #: waeup/kofa/browser/pages.py:2657
    58 #: waeup/kofa/browser/pages.py:2728
    59 #: waeup/kofa/documents/browser.py:107
    60 #: waeup/kofa/documents/browser.py:153
    61 #: waeup/kofa/documents/browser.py:257
    62 #: waeup/kofa/documents/browser.py:275
    63 #: waeup/kofa/documents/browser.py:305
    64 #: waeup/kofa/documents/browser.py:334
    65 #: waeup/kofa/students/browser.py:994
    66 #: waeup/kofa/students/browser.py:995
    67 #: waeup/kofa/students/browser.py:1642
    68 #: waeup/kofa/students/browser.py:1644
    69 #: waeup/kofa/students/browser.py:1871
    70 #: waeup/kofa/students/browser.py:2043
    71 #: waeup/kofa/students/browser.py:2082
    72 #: waeup/kofa/students/browser.py:2117
     54#: waeup/kofa/browser/pages.py:2617
     55#: waeup/kofa/browser/pages.py:2619
     56#: waeup/kofa/browser/pages.py:2641
     57#: waeup/kofa/browser/pages.py:2683
     58#: waeup/kofa/browser/pages.py:2754
     59#: waeup/kofa/documents/browser.py:106
     60#: waeup/kofa/documents/browser.py:152
     61#: waeup/kofa/documents/browser.py:256
     62#: waeup/kofa/documents/browser.py:274
     63#: waeup/kofa/documents/browser.py:304
     64#: waeup/kofa/documents/browser.py:333
     65#: waeup/kofa/students/browser.py:1043
     66#: waeup/kofa/students/browser.py:1044
     67#: waeup/kofa/students/browser.py:1695
     68#: waeup/kofa/students/browser.py:1697
     69#: waeup/kofa/students/browser.py:1923
     70#: waeup/kofa/students/browser.py:2095
     71#: waeup/kofa/students/browser.py:2134
     72#: waeup/kofa/students/browser.py:2169
    7373msgid "Cancel"
    7474msgstr ""
     
    374374msgstr ""
    375375
    376 #: waeup/kofa/applicants/applicant.py:160
     376#: waeup/kofa/applicants/applicant.py:161
    377377msgid "Applicant has not yet been admitted."
    378378msgstr ""
    379379
    380 #: waeup/kofa/applicants/applicant.py:166
     380#: waeup/kofa/applicants/applicant.py:169
    381381msgid "Registration Number exists."
    382382msgstr ""
    383383
    384 #: waeup/kofa/applicants/applicant.py:169
     384#: waeup/kofa/applicants/applicant.py:174
    385385msgid "No course admitted provided."
    386386msgstr ""
    387387
    388 #: waeup/kofa/applicants/applicant.py:188
     388#: waeup/kofa/applicants/applicant.py:198
    389389msgid "IOError: Application Slip could not be created."
    390390msgstr ""
    391391
    392 #: waeup/kofa/applicants/applicant.py:190
     392#: waeup/kofa/applicants/applicant.py:201
    393393msgid "Reportlab LayoutError: %s"
    394394msgstr ""
    395395
    396 #: waeup/kofa/applicants/applicant.py:192
    397 msgid "Unknown error."
    398 msgstr ""
    399 
    400 #: waeup/kofa/applicants/applicant.py:212
     396#: waeup/kofa/applicants/applicant.py:204
     397#. Default: ""
     398msgid "Reportlab AttributeError: ${a}"
     399msgstr ""
     400
     401#: waeup/kofa/applicants/applicant.py:207
     402msgid "Unknown Reportlab error"
     403msgstr ""
     404
     405#: waeup/kofa/applicants/applicant.py:227
    401406#. Default: ""
    402407msgid "Student ${a} created"
     
    425430msgstr ""
    426431
    427 #: waeup/kofa/applicants/browser.py:1013
     432#: waeup/kofa/applicants/browser.py:1001
     433#: waeup/kofa/applicants/browser.py:1240
     434#: waeup/kofa/applicants/browser.py:1243
     435#: waeup/kofa/applicants/browser.py:1338
     436msgid "Finally Submit"
     437msgstr ""
     438
     439#: waeup/kofa/applicants/browser.py:1002
     440#: waeup/kofa/applicants/browser.py:1177
     441#: waeup/kofa/applicants/browser.py:1236
     442#: waeup/kofa/applicants/browser.py:1241
     443#: waeup/kofa/applicants/browser.py:1277
     444msgid "Add online payment ticket"
     445msgstr ""
     446
     447#: waeup/kofa/applicants/browser.py:1002
     448#: waeup/kofa/applicants/browser.py:1182
     449#: waeup/kofa/applicants/browser.py:1232
     450#: waeup/kofa/applicants/browser.py:1236
     451#: waeup/kofa/applicants/browser.py:1241
     452#: waeup/kofa/applicants/browser.py:1244
     453#: waeup/kofa/applicants/browser.py:1282
     454#: waeup/kofa/students/browser.py:1697
     455#: waeup/kofa/students/browser.py:1739
     456#: waeup/kofa/students/browser.py:2010
     457#: waeup/kofa/students/browser.py:3083
     458msgid "Remove selected tickets"
     459msgstr ""
     460
     461#: waeup/kofa/applicants/browser.py:1087
    428462#. Default: ""
    429463msgid "${a} <br /> Application Form ${b}"
    430464msgstr ""
    431465
    432 #: waeup/kofa/applicants/browser.py:1025
    433 #: waeup/kofa/documents/browser.py:369
    434 #: waeup/kofa/students/browser.py:615
     466#: waeup/kofa/applicants/browser.py:1099
     467#: waeup/kofa/documents/browser.py:368
     468#: waeup/kofa/students/browser.py:625
    435469msgid "No transition"
    436470msgstr ""
    437471
    438 #: waeup/kofa/applicants/browser.py:1070
    439 #: waeup/kofa/students/browser.py:1964
     472#: waeup/kofa/applicants/browser.py:113
     473#: waeup/kofa/applicants/viewlets.py:91
     474msgid "Find applicants"
     475msgstr ""
     476
     477#: waeup/kofa/applicants/browser.py:114
     478msgid "Find applicant"
     479msgstr ""
     480
     481#: waeup/kofa/applicants/browser.py:1152
     482#: waeup/kofa/students/browser.py:2016
    440483msgid "No payment selected."
    441484msgstr ""
    442485
    443 #: waeup/kofa/applicants/browser.py:112
    444 #: waeup/kofa/applicants/viewlets.py:90
    445 msgid "Find applicants"
    446 msgstr ""
    447 
    448 #: waeup/kofa/applicants/browser.py:113
    449 msgid "Find applicant"
    450 msgstr ""
    451 
    452 #: waeup/kofa/applicants/browser.py:1168
    453 #: waeup/kofa/students/browser.py:113
     486#: waeup/kofa/applicants/browser.py:1251
     487#: waeup/kofa/students/browser.py:114
    454488msgid "The requested form is locked (read-only)."
    455489msgstr ""
    456490
    457 #: waeup/kofa/applicants/browser.py:1186
     491#: waeup/kofa/applicants/browser.py:1269
    458492msgid "No passport picture uploaded."
    459493msgstr ""
    460494
    461 #: waeup/kofa/applicants/browser.py:1188
     495#: waeup/kofa/applicants/browser.py:1271
    462496msgid "Passport picture confirmation box not ticked."
    463497msgstr ""
    464498
    465 #: waeup/kofa/applicants/browser.py:1258
     499#: waeup/kofa/applicants/browser.py:128
     500#: waeup/kofa/browser/pages.py:2263
     501#: waeup/kofa/students/browser.py:285
     502#: waeup/kofa/students/browser.py:328
     503msgid "Empty search string"
     504msgstr ""
     505
     506#: waeup/kofa/applicants/browser.py:133
     507msgid "No applicant found."
     508msgstr ""
     509
     510#: waeup/kofa/applicants/browser.py:1351
    466511msgid "The form cannot be submitted. Wrong state!"
    467512msgstr ""
    468513
    469 #: waeup/kofa/applicants/browser.py:1261
     514#: waeup/kofa/applicants/browser.py:1354
    470515msgid "Form has been submitted."
    471516msgstr ""
    472517
    473 #: waeup/kofa/applicants/browser.py:1267
     518#: waeup/kofa/applicants/browser.py:1360
    474519msgid "Some invitation emails could not be sent:"
    475520msgstr ""
    476521
    477 #: waeup/kofa/applicants/browser.py:127
    478 #: waeup/kofa/browser/pages.py:2263
    479 #: waeup/kofa/students/browser.py:280
    480 #: waeup/kofa/students/browser.py:323
    481 msgid "Empty search string"
    482 msgstr ""
    483 
    484 #: waeup/kofa/applicants/browser.py:1270
     522#: waeup/kofa/applicants/browser.py:1363
    485523#. Default: ""
    486524msgid "Form has been successfully submitted and ${a} invitation emails were sent."
    487525msgstr ""
    488526
    489 #: waeup/kofa/applicants/browser.py:132
    490 msgid "No applicant found."
    491 msgstr ""
    492 
    493 #: waeup/kofa/applicants/browser.py:1320
    494 #. Default: ""
    495 msgid "Apply for ${a}"
    496 msgstr ""
    497 
    498 #: waeup/kofa/applicants/browser.py:1325
    499 msgid "Outside application period."
    500 msgstr ""
    501 
    502 #: waeup/kofa/applicants/browser.py:1330
    503 msgid "The portal is in maintenance mode and registration temporarily disabled."
    504 msgstr ""
    505 
    506 #: waeup/kofa/applicants/browser.py:1354
    507 #: waeup/kofa/browser/pages.py:2802
    508 #: waeup/kofa/students/browser.py:3185
    509 msgid "Send login credentials to email address"
    510 msgstr ""
    511 
    512 #: waeup/kofa/applicants/browser.py:1388
    513 #: waeup/kofa/students/browser.py:3202
    514 #: waeup/kofa/students/browser.py:3280
    515 msgid "An error occurred."
    516 msgstr ""
    517 
    518 #: waeup/kofa/applicants/browser.py:1395
    519 #: waeup/kofa/applicants/browser.py:1408
    520 #: waeup/kofa/applicants/browser.py:1490
    521 #: waeup/kofa/applicants/browser.py:1493
    522 msgid "No application record found."
    523 msgstr ""
    524 
    525 #: waeup/kofa/applicants/browser.py:1399
    526 #: waeup/kofa/students/browser.py:3211
    527 msgid "Your password has already been set and used. Please proceed to the login page."
    528 msgstr ""
    529 
    530 #: waeup/kofa/applicants/browser.py:140
    531 #: waeup/kofa/applicants/viewlets.py:99
     527#: waeup/kofa/applicants/browser.py:1405
     528#: waeup/kofa/applicants/browser.py:1828
     529#: waeup/kofa/applicants/browser.py:1928
     530#: waeup/kofa/mandates/browser.py:42
     531msgid "No mandate."
     532msgstr ""
     533
     534#: waeup/kofa/applicants/browser.py:141
     535#: waeup/kofa/applicants/viewlets.py:100
    532536msgid "Manage applicants section"
    533537msgstr ""
    534538
    535 #: waeup/kofa/applicants/browser.py:1419
    536 msgid "You have successfully been registered for the"
    537 msgstr ""
    538 
    539 #: waeup/kofa/applicants/browser.py:143
    540 #: waeup/kofa/applicants/browser.py:205
    541 #: waeup/kofa/applicants/browser.py:360
    542 #: waeup/kofa/applicants/browser.py:395
    543 #: waeup/kofa/applicants/browser.py:949
    544 #: waeup/kofa/applicants/browser.py:1028
    545 #: waeup/kofa/applicants/browser.py:1149
    546 #: waeup/kofa/applicants/browser.py:1152
    547 #: waeup/kofa/applicants/browser.py:1157
    548 #: waeup/kofa/applicants/browser.py:1160
    549 #: waeup/kofa/applicants/browser.py:1205
     539#: waeup/kofa/applicants/browser.py:1411
     540#: waeup/kofa/applicants/browser.py:1834
     541#: waeup/kofa/applicants/browser.py:1934
     542#: waeup/kofa/mandates/mandate.py:73
     543#: waeup/kofa/mandates/mandate.py:101
     544#: waeup/kofa/mandates/mandate.py:121
     545msgid "Mandate expired."
     546msgstr ""
     547
     548#: waeup/kofa/applicants/browser.py:1417
     549#: waeup/kofa/applicants/browser.py:1942
     550msgid "Wrong mandate."
     551msgstr ""
     552
     553#: waeup/kofa/applicants/browser.py:144
     554#: waeup/kofa/applicants/browser.py:209
     555#: waeup/kofa/applicants/browser.py:364
     556#: waeup/kofa/applicants/browser.py:402
     557#: waeup/kofa/applicants/browser.py:1001
     558#: waeup/kofa/applicants/browser.py:1109
     559#: waeup/kofa/applicants/browser.py:1232
     560#: waeup/kofa/applicants/browser.py:1235
     561#: waeup/kofa/applicants/browser.py:1240
     562#: waeup/kofa/applicants/browser.py:1243
     563#: waeup/kofa/applicants/browser.py:1295
    550564#: waeup/kofa/browser/pages.py:940
    551565#: waeup/kofa/browser/pages.py:1169
     
    559573#: waeup/kofa/browser/pages.py:2527
    560574#: waeup/kofa/browser/pages.py:2539
    561 #: waeup/kofa/browser/pages.py:2591
    562 #: waeup/kofa/browser/pages.py:2601
    563 #: waeup/kofa/browser/pages.py:2701
    564 #: waeup/kofa/documents/browser.py:257
    565 #: waeup/kofa/documents/browser.py:271
    566 #: waeup/kofa/documents/browser.py:295
    567 #: waeup/kofa/documents/browser.py:324
     575#: waeup/kofa/browser/pages.py:2617
     576#: waeup/kofa/browser/pages.py:2627
     577#: waeup/kofa/browser/pages.py:2727
     578#: waeup/kofa/documents/browser.py:256
     579#: waeup/kofa/documents/browser.py:270
     580#: waeup/kofa/documents/browser.py:294
     581#: waeup/kofa/documents/browser.py:323
    568582#: waeup/kofa/hostels/browser.py:163
    569583#: waeup/kofa/hostels/browser.py:199
     
    571585#: waeup/kofa/hostels/browser.py:333
    572586#: waeup/kofa/hostels/browser.py:447
    573 #: waeup/kofa/students/browser.py:565
    574 #: waeup/kofa/students/browser.py:618
    575 #: waeup/kofa/students/browser.py:781
    576 #: waeup/kofa/students/browser.py:887
    577 #: waeup/kofa/students/browser.py:994
    578 #: waeup/kofa/students/browser.py:1015
    579 #: waeup/kofa/students/browser.py:1642
    580 #: waeup/kofa/students/browser.py:1681
    581 #: waeup/kofa/students/browser.py:2247
    582 #: waeup/kofa/students/browser.py:2289
    583 #: waeup/kofa/students/browser.py:2589
    584 #: waeup/kofa/students/browser.py:2604
    585 #: waeup/kofa/students/browser.py:2736
     587#: waeup/kofa/students/browser.py:575
     588#: waeup/kofa/students/browser.py:628
     589#: waeup/kofa/students/browser.py:830
     590#: waeup/kofa/students/browser.py:936
     591#: waeup/kofa/students/browser.py:1043
     592#: waeup/kofa/students/browser.py:1064
     593#: waeup/kofa/students/browser.py:1695
     594#: waeup/kofa/students/browser.py:1734
     595#: waeup/kofa/students/browser.py:2329
     596#: waeup/kofa/students/browser.py:2371
     597#: waeup/kofa/students/browser.py:2671
     598#: waeup/kofa/students/browser.py:2686
     599#: waeup/kofa/students/browser.py:2818
    586600msgid "Save"
    587601msgstr ""
    588602
    589 #: waeup/kofa/applicants/browser.py:1436
    590 msgid "Your registration was successful."
    591 msgstr ""
    592 
    593 #: waeup/kofa/applicants/browser.py:144
    594 #: waeup/kofa/applicants/browser.py:164
    595 #: waeup/kofa/applicants/browser.py:361
    596 #: waeup/kofa/applicants/browser.py:410
     603#: waeup/kofa/applicants/browser.py:1445
     604#. Default: ""
     605msgid "Apply for ${a}"
     606msgstr ""
     607
     608#: waeup/kofa/applicants/browser.py:145
     609#: waeup/kofa/applicants/browser.py:168
     610#: waeup/kofa/applicants/browser.py:365
     611#: waeup/kofa/applicants/browser.py:417
    597612#: waeup/kofa/browser/pages.py:1172
    598613#: waeup/kofa/browser/pages.py:1207
     
    604619#: waeup/kofa/hostels/browser.py:166
    605620#: waeup/kofa/hostels/browser.py:171
    606 #: waeup/kofa/students/browser.py:305
    607 #: waeup/kofa/students/browser.py:2257
    608 #: waeup/kofa/students/browser.py:2301
     621#: waeup/kofa/students/browser.py:310
     622#: waeup/kofa/students/browser.py:2339
     623#: waeup/kofa/students/browser.py:2383
    609624msgid "Remove selected"
    610625msgstr ""
    611626
    612 #: waeup/kofa/applicants/browser.py:144
    613 #: waeup/kofa/applicants/browser.py:192
    614 #: waeup/kofa/applicants/browser.py:219
    615 #: waeup/kofa/applicants/browser.py:225
     627#: waeup/kofa/applicants/browser.py:145
     628#: waeup/kofa/applicants/browser.py:196
     629#: waeup/kofa/applicants/browser.py:223
     630#: waeup/kofa/applicants/browser.py:229
    616631msgid "Add applicants container"
    617632msgstr ""
    618633
    619 #: waeup/kofa/applicants/browser.py:145
    620 #: waeup/kofa/applicants/browser.py:201
    621 #: waeup/kofa/applicants/browser.py:363
    622 #: waeup/kofa/applicants/browser.py:479
     634#: waeup/kofa/applicants/browser.py:1450
     635msgid "Outside application period."
     636msgstr ""
     637
     638#: waeup/kofa/applicants/browser.py:1455
     639msgid "The portal is in maintenance mode and registration temporarily disabled."
     640msgstr ""
     641
     642#: waeup/kofa/applicants/browser.py:146
     643#: waeup/kofa/applicants/browser.py:205
     644#: waeup/kofa/applicants/browser.py:367
     645#: waeup/kofa/applicants/browser.py:486
    623646#: waeup/kofa/browser/pages.py:2181
    624647#: waeup/kofa/browser/pages.py:2218
     
    627650#: waeup/kofa/browser/pages.py:2528
    628651#: waeup/kofa/browser/pages.py:2552
    629 #: waeup/kofa/browser/pages.py:2594
    630 #: waeup/kofa/browser/pages.py:2624
    631 #: waeup/kofa/documents/browser.py:258
    632 #: waeup/kofa/documents/browser.py:284
    633 #: waeup/kofa/documents/browser.py:314
    634 #: waeup/kofa/documents/browser.py:343
     652#: waeup/kofa/browser/pages.py:2620
     653#: waeup/kofa/browser/pages.py:2650
     654#: waeup/kofa/documents/browser.py:257
     655#: waeup/kofa/documents/browser.py:283
     656#: waeup/kofa/documents/browser.py:313
     657#: waeup/kofa/documents/browser.py:342
    635658msgid "Remove selected local roles"
    636659msgstr ""
    637660
    638 #: waeup/kofa/applicants/browser.py:1451
    639 #: waeup/kofa/applicants/browser.py:1657
    640 #: waeup/kofa/students/browser.py:1103
    641 msgid "Submit"
    642 msgstr ""
    643 
    644 #: waeup/kofa/applicants/browser.py:1455
    645 #. Default: ""
    646 msgid "Admission status of ${a}"
    647 msgstr ""
    648 
    649 #: waeup/kofa/applicants/browser.py:1457
    650 msgid "Check your admission status"
    651 msgstr ""
    652 
    653 #: waeup/kofa/applicants/browser.py:146
    654 #: waeup/kofa/applicants/browser.py:197
    655 #: waeup/kofa/applicants/browser.py:364
    656 #: waeup/kofa/applicants/browser.py:475
     661#: waeup/kofa/applicants/browser.py:147
     662#: waeup/kofa/applicants/browser.py:201
     663#: waeup/kofa/applicants/browser.py:368
     664#: waeup/kofa/applicants/browser.py:482
    657665#: waeup/kofa/browser/pages.py:2182
    658666#: waeup/kofa/browser/pages.py:2214
     
    661669#: waeup/kofa/browser/pages.py:2529
    662670#: waeup/kofa/browser/pages.py:2548
    663 #: waeup/kofa/browser/pages.py:2595
    664 #: waeup/kofa/browser/pages.py:2620
    665 #: waeup/kofa/documents/browser.py:259
    666 #: waeup/kofa/documents/browser.py:280
    667 #: waeup/kofa/documents/browser.py:310
    668 #: waeup/kofa/documents/browser.py:339
     671#: waeup/kofa/browser/pages.py:2621
     672#: waeup/kofa/browser/pages.py:2646
     673#: waeup/kofa/documents/browser.py:258
     674#: waeup/kofa/documents/browser.py:279
     675#: waeup/kofa/documents/browser.py:309
     676#: waeup/kofa/documents/browser.py:338
    669677msgid "Add local role"
    670678msgstr ""
    671679
    672 #: waeup/kofa/applicants/browser.py:147
    673 #: waeup/kofa/applicants/export.py:38
     680#: waeup/kofa/applicants/browser.py:1479
     681#: waeup/kofa/browser/pages.py:2828
     682#: waeup/kofa/students/browser.py:3273
     683msgid "Send login credentials to email address"
     684msgstr ""
     685
     686#: waeup/kofa/applicants/browser.py:148
     687#: waeup/kofa/applicants/export.py:39
    674688msgid "Applicants Containers"
    675689msgstr ""
    676690
    677 #: waeup/kofa/applicants/browser.py:1475
     691#: waeup/kofa/applicants/browser.py:1513
     692#: waeup/kofa/students/browser.py:3290
     693#: waeup/kofa/students/browser.py:3368
     694msgid "An error occurred."
     695msgstr ""
     696
     697#: waeup/kofa/applicants/browser.py:1520
     698#: waeup/kofa/applicants/browser.py:1533
     699#: waeup/kofa/applicants/browser.py:1616
     700#: waeup/kofa/applicants/browser.py:1619
     701msgid "No application record found."
     702msgstr ""
     703
     704#: waeup/kofa/applicants/browser.py:1524
     705#: waeup/kofa/students/browser.py:3299
     706msgid "Your password has already been set and used. Please proceed to the login page."
     707msgstr ""
     708
     709#: waeup/kofa/applicants/browser.py:1544
     710msgid "You have successfully been registered for the"
     711msgstr ""
     712
     713#: waeup/kofa/applicants/browser.py:1561
     714msgid "Your registration was successful."
     715msgstr ""
     716
     717#: waeup/kofa/applicants/browser.py:1576
     718#: waeup/kofa/applicants/browser.py:1857
     719#: waeup/kofa/students/browser.py:1152
     720msgid "Submit"
     721msgstr ""
     722
     723#: waeup/kofa/applicants/browser.py:1581
     724#. Default: ""
     725msgid "Admission status of ${a}"
     726msgstr ""
     727
     728#: waeup/kofa/applicants/browser.py:1583
     729msgid "Check your admission status"
     730msgstr ""
     731
     732#: waeup/kofa/applicants/browser.py:1601
     733#: waeup/kofa/applicants/browser.py:1686
    678734msgid "Required input missing."
    679735msgstr ""
    680736
    681 #: waeup/kofa/applicants/browser.py:1508
     737#: waeup/kofa/applicants/browser.py:1634
    682738msgid "Application record invalid."
    683739msgstr ""
    684740
    685 #: waeup/kofa/applicants/browser.py:1539
     741#: waeup/kofa/applicants/browser.py:1662
     742msgid "Check transcript status"
     743msgstr ""
     744
     745#: waeup/kofa/applicants/browser.py:1663
     746msgid "Check status now"
     747msgstr ""
     748
     749#: waeup/kofa/applicants/browser.py:1707
    686750msgid "Data Exports"
    687751msgstr ""
    688752
    689 #: waeup/kofa/applicants/browser.py:1552
     753#: waeup/kofa/applicants/browser.py:1720
    690754#: waeup/kofa/browser/pages.py:2005
    691 #: waeup/kofa/students/browser.py:3855
     755#: waeup/kofa/students/browser.py:3950
    692756msgid "Discarded export"
    693757msgstr ""
    694758
    695 #: waeup/kofa/applicants/browser.py:1567
     759#: waeup/kofa/applicants/browser.py:1735
    696760#: waeup/kofa/browser/pages.py:286
    697761msgid "Currently, exporters cannot be started due to high system load. Please try again later."
    698762msgstr ""
    699763
    700 #: waeup/kofa/applicants/browser.py:1594
     764#: waeup/kofa/applicants/browser.py:174
     765msgid "No container selected!"
     766msgstr ""
     767
     768#: waeup/kofa/applicants/browser.py:1755
    701769msgid "Exports started."
    702770msgstr ""
    703771
    704 #: waeup/kofa/applicants/browser.py:1614
     772#: waeup/kofa/applicants/browser.py:1775
     773#: waeup/kofa/applicants/browser.py:1898
    705774msgid "Referee Report"
    706775msgstr ""
    707776
    708 #: waeup/kofa/applicants/browser.py:1627
    709 msgid "Add referee report"
    710 msgstr ""
    711 
    712 #: waeup/kofa/applicants/browser.py:1634
     777#: waeup/kofa/applicants/browser.py:1793
     778msgid "Referee report removed."
     779msgstr ""
     780
     781#: waeup/kofa/applicants/browser.py:1810
     782msgid "Referee Report Form"
     783msgstr ""
     784
     785#: waeup/kofa/applicants/browser.py:1817
    713786msgid "The portal is in maintenance mode. Referee report forms are temporarily disabled."
    714787msgstr ""
    715788
    716 #: waeup/kofa/applicants/browser.py:1645
    717 #: waeup/kofa/mandates/browser.py:42
    718 msgid "No mandate."
    719 msgstr ""
    720 
    721 #: waeup/kofa/applicants/browser.py:1658
     789#: waeup/kofa/applicants/browser.py:185
     790#: waeup/kofa/applicants/browser.py:434
     791#: waeup/kofa/applicants/browser.py:1165
     792msgid "Could not delete:"
     793msgstr ""
     794
     795#: waeup/kofa/applicants/browser.py:1858
    722796msgid "Are you really sure? Reports can neither be modified or added after submission."
    723797msgstr ""
    724798
    725 #: waeup/kofa/applicants/browser.py:1668
    726 msgid "Referee report has been saved. Thank you!"
    727 msgstr ""
    728 
    729 #: waeup/kofa/applicants/browser.py:170
    730 msgid "No container selected!"
    731 msgstr ""
    732 
    733 #: waeup/kofa/applicants/browser.py:181
    734 #: waeup/kofa/applicants/browser.py:427
    735 #: waeup/kofa/applicants/browser.py:1083
    736 msgid "Could not delete:"
    737 msgstr ""
    738 
    739 #: waeup/kofa/applicants/browser.py:184
    740 #: waeup/kofa/applicants/browser.py:430
    741 #: waeup/kofa/applicants/browser.py:1086
     799#: waeup/kofa/applicants/browser.py:188
     800#: waeup/kofa/applicants/browser.py:437
     801#: waeup/kofa/applicants/browser.py:1168
    742802#: waeup/kofa/browser/pages.py:164
    743 #: waeup/kofa/students/browser.py:351
    744 #: waeup/kofa/students/browser.py:1085
    745 #: waeup/kofa/students/browser.py:1702
    746 #: waeup/kofa/students/browser.py:1977
    747 #: waeup/kofa/students/browser.py:2322
    748 #: waeup/kofa/students/browser.py:2990
     803#: waeup/kofa/students/browser.py:356
     804#: waeup/kofa/students/browser.py:1134
     805#: waeup/kofa/students/browser.py:1755
     806#: waeup/kofa/students/browser.py:2029
     807#: waeup/kofa/students/browser.py:2404
     808#: waeup/kofa/students/browser.py:3075
    749809#. Default: ""
    750810msgid "Successfully removed: ${a}"
    751811msgstr ""
    752812
    753 #: waeup/kofa/applicants/browser.py:211
    754 #: waeup/kofa/applicants/browser.py:405
    755 #: waeup/kofa/applicants/browser.py:1056
    756 #: waeup/kofa/applicants/browser.py:1211
     813#: waeup/kofa/applicants/browser.py:1904
     814msgid "Referee Report Slip"
     815msgstr ""
     816
     817#: waeup/kofa/applicants/browser.py:215
     818#: waeup/kofa/applicants/browser.py:412
     819#: waeup/kofa/applicants/browser.py:1138
     820#: waeup/kofa/applicants/browser.py:1302
    757821#: waeup/kofa/browser/pages.py:206
    758 #: waeup/kofa/browser/pages.py:2718
     822#: waeup/kofa/browser/pages.py:2744
    759823#: waeup/kofa/hostels/browser.py:50
    760 #: waeup/kofa/students/browser.py:105
    761 #: waeup/kofa/students/browser.py:587
     824#: waeup/kofa/students/browser.py:106
     825#: waeup/kofa/students/browser.py:597
    762826msgid "Form has been saved."
    763827msgstr ""
    764828
    765 #: waeup/kofa/applicants/browser.py:237
     829#: waeup/kofa/applicants/browser.py:241
    766830msgid "An applicants container for the same application type and entrance year exists already in the database."
    767831msgstr ""
    768832
    769 #: waeup/kofa/applicants/browser.py:247
     833#: waeup/kofa/applicants/browser.py:251
    770834msgid "Added:"
    771835msgstr ""
    772836
    773 #: waeup/kofa/applicants/browser.py:261
    774 #: waeup/kofa/applicants/export.py:84
    775 #: waeup/kofa/applicants/viewlets.py:45
     837#: waeup/kofa/applicants/browser.py:265
     838#: waeup/kofa/applicants/export.py:85
     839#: waeup/kofa/applicants/viewlets.py:46
    776840#: waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt:12
    777841msgid "Applicants"
    778842msgstr ""
    779843
    780 #: waeup/kofa/applicants/browser.py:273
     844#: waeup/kofa/applicants/browser.py:277
    781845msgid "Applicant Data Exports"
    782846msgstr ""
    783847
    784 #: waeup/kofa/applicants/browser.py:362
    785 #: waeup/kofa/applicants/browser.py:435
     848#: waeup/kofa/applicants/browser.py:366
     849#: waeup/kofa/applicants/browser.py:442
    786850msgid "Create students from selected"
    787851msgstr ""
    788852
    789 #: waeup/kofa/applicants/browser.py:371
     853#: waeup/kofa/applicants/browser.py:375
    790854msgid "Manage applicants container"
    791855msgstr ""
    792856
    793 #: waeup/kofa/applicants/browser.py:416
    794 #: waeup/kofa/applicants/browser.py:447
     857#: waeup/kofa/applicants/browser.py:423
     858#: waeup/kofa/applicants/browser.py:454
    795859msgid "No applicant selected!"
    796860msgstr ""
    797861
    798 #: waeup/kofa/applicants/browser.py:439
     862#: waeup/kofa/applicants/browser.py:446
    799863msgid "You don't have permission to create student records."
    800864msgstr ""
    801865
    802 #: waeup/kofa/applicants/browser.py:454
     866#: waeup/kofa/applicants/browser.py:461
    803867msgid "A maximum of 10 applicants can be selected!"
    804868msgstr ""
    805869
    806 #: waeup/kofa/applicants/browser.py:463
     870#: waeup/kofa/applicants/browser.py:470
    807871#. Default: ""
    808872msgid "${a} students successfully created."
    809873msgstr ""
    810874
    811 #: waeup/kofa/applicants/browser.py:466
     875#: waeup/kofa/applicants/browser.py:473
    812876msgid "No student could be created."
    813877msgstr ""
    814878
    815 #: waeup/kofa/applicants/browser.py:493
    816 #: waeup/kofa/applicants/viewlets.py:115
     879#: waeup/kofa/applicants/browser.py:500
     880#: waeup/kofa/applicants/viewlets.py:116
    817881msgid "Add applicant"
    818882msgstr ""
    819883
    820 #: waeup/kofa/applicants/browser.py:497
     884#: waeup/kofa/applicants/browser.py:504
    821885msgid "Create application record"
    822886msgstr ""
    823887
    824 #: waeup/kofa/applicants/browser.py:502
     888#: waeup/kofa/applicants/browser.py:509
    825889msgid "Application record created."
    826890msgstr ""
    827891
    828 #: waeup/kofa/applicants/browser.py:514
    829 #: waeup/kofa/applicants/viewlets.py:124
     892#: waeup/kofa/applicants/browser.py:521
     893#: waeup/kofa/applicants/viewlets.py:125
    830894msgid "Pre-fill container"
    831895msgstr ""
    832896
    833 #: waeup/kofa/applicants/browser.py:520
     897#: waeup/kofa/applicants/browser.py:527
    834898msgid "Container must be in create mode to be pre-filled."
    835899msgstr ""
    836900
    837 #: waeup/kofa/applicants/browser.py:527
     901#: waeup/kofa/applicants/browser.py:534
    838902msgid "Pre-fill now"
    839903msgstr ""
    840904
    841 #: waeup/kofa/applicants/browser.py:535
     905#: waeup/kofa/applicants/browser.py:542
    842906msgid "%s application records created."
    843907msgstr ""
    844908
    845 #: waeup/kofa/applicants/browser.py:552
    846 #: waeup/kofa/applicants/viewlets.py:133
     909#: waeup/kofa/applicants/browser.py:559
     910#: waeup/kofa/applicants/viewlets.py:134
    847911msgid "Purge container"
    848912msgstr ""
    849913
    850 #: waeup/kofa/applicants/browser.py:556
     914#: waeup/kofa/applicants/browser.py:563
    851915msgid "Remove initialized records"
    852916msgstr ""
    853917
    854 #: waeup/kofa/applicants/browser.py:557
     918#: waeup/kofa/applicants/browser.py:564
    855919msgid "Don't use if application is in progress!"
    856920msgstr ""
    857921
    858 #: waeup/kofa/applicants/browser.py:558
     922#: waeup/kofa/applicants/browser.py:565
    859923msgid "Are you really sure?"
    860924msgstr ""
    861925
    862 #: waeup/kofa/applicants/browser.py:568
     926#: waeup/kofa/applicants/browser.py:575
    863927msgid "%s application records purged."
    864928msgstr ""
    865929
    866 #: waeup/kofa/applicants/browser.py:585
     930#: waeup/kofa/applicants/browser.py:592
    867931msgid "Applicant"
    868932msgstr ""
    869933
    870 #: waeup/kofa/applicants/browser.py:625
     934#: waeup/kofa/applicants/browser.py:652
    871935#. Default: ""
    872936msgid ""
     
    875939msgstr ""
    876940
    877 #: waeup/kofa/applicants/browser.py:647
    878 #: waeup/kofa/students/browser.py:462
     941#: waeup/kofa/applicants/browser.py:674
     942#: waeup/kofa/students/browser.py:467
    879943msgid "set"
    880944msgstr ""
    881945
    882 #: waeup/kofa/applicants/browser.py:648
    883 #: waeup/kofa/students/browser.py:463
     946#: waeup/kofa/applicants/browser.py:675
     947#: waeup/kofa/students/browser.py:468
    884948msgid "unset"
    885949msgstr ""
    886950
    887 #: waeup/kofa/applicants/browser.py:653
     951#: waeup/kofa/applicants/browser.py:680
    888952#. Default: ""
    889953msgid "${a} <br /> Application Record ${b}"
    890954msgstr ""
    891955
    892 #: waeup/kofa/applicants/browser.py:707
     956#: waeup/kofa/applicants/browser.py:735
    893957msgid "Student Record Creation Report"
    894958msgstr ""
    895959
    896 #: waeup/kofa/applicants/browser.py:74
     960#: waeup/kofa/applicants/browser.py:75
    897961msgid "You can not edit your application records after final submission. You really want to submit?"
    898962msgstr ""
    899963
    900 #: waeup/kofa/applicants/browser.py:766
    901 #: waeup/kofa/students/utils.py:511
     964#: waeup/kofa/applicants/browser.py:793
     965#: waeup/kofa/students/utils.py:513
    902966msgid "This type of payment has already been made."
    903967msgstr ""
    904968
    905 #: waeup/kofa/applicants/browser.py:781
    906 #: waeup/kofa/students/browser.py:2038
    907 #: waeup/kofa/students/browser.py:2077
    908 #: waeup/kofa/students/browser.py:2112
     969#: waeup/kofa/applicants/browser.py:808
     970#: waeup/kofa/students/browser.py:2090
     971#: waeup/kofa/students/browser.py:2129
     972#: waeup/kofa/students/browser.py:2164
    909973msgid "Payment ticket created."
    910974msgstr ""
    911975
    912 #: waeup/kofa/applicants/browser.py:804
    913 #: waeup/kofa/students/browser.py:2137
     976#: waeup/kofa/applicants/browser.py:83
     977msgid "Applicants Section"
     978msgstr ""
     979
     980#: waeup/kofa/applicants/browser.py:831
     981#: waeup/kofa/students/browser.py:2189
    914982#. Default: ""
    915983msgid "${a}: Online Payment Ticket ${b}"
    916984msgstr ""
    917985
    918 #: waeup/kofa/applicants/browser.py:82
    919 msgid "Applicants Section"
    920 msgstr ""
    921 
    922 #: waeup/kofa/applicants/browser.py:849
    923 #: waeup/kofa/students/browser.py:2195
     986#: waeup/kofa/applicants/browser.py:876
     987#: waeup/kofa/students/browser.py:2247
    924988msgid "Payment Data"
    925989msgstr ""
    926990
    927 #: waeup/kofa/applicants/browser.py:855
    928 #: waeup/kofa/students/browser.py:2201
     991#: waeup/kofa/applicants/browser.py:882
     992#: waeup/kofa/students/browser.py:2253
    929993msgid "Online Payment Slip"
    930994msgstr ""
    931995
    932 #: waeup/kofa/applicants/browser.py:863
     996#: waeup/kofa/applicants/browser.py:890
    933997msgid "Please submit the application form before trying to download payment slips."
    934998msgstr ""
    935999
    936 #: waeup/kofa/applicants/browser.py:889
     1000#: waeup/kofa/applicants/browser.py:916
    9371001msgid "Please pay and submit before trying to download the application slip."
    9381002msgstr ""
    9391003
    940 #: waeup/kofa/applicants/browser.py:900
     1004#: waeup/kofa/applicants/browser.py:927
    9411005msgid "Your image file is corrupted. Please replace."
    9421006msgstr ""
    9431007
    944 #: waeup/kofa/applicants/browser.py:923
     1008#: waeup/kofa/applicants/browser.py:951
    9451009msgid "Uploaded image is too big!"
    9461010msgstr ""
    9471011
    948 #: waeup/kofa/applicants/browser.py:928
     1012#: waeup/kofa/applicants/browser.py:956
    9491013msgid "jpg file extension expected."
    9501014msgstr ""
    9511015
    952 #: waeup/kofa/applicants/browser.py:936
     1016#: waeup/kofa/applicants/browser.py:964
    9531017msgid "Image file cannot be changed."
    9541018msgstr ""
    9551019
    956 #: waeup/kofa/applicants/browser.py:949
    957 #: waeup/kofa/applicants/browser.py:1157
    958 #: waeup/kofa/applicants/browser.py:1160
    959 #: waeup/kofa/applicants/browser.py:1245
    960 msgid "Finally Submit"
    961 msgstr ""
    962 
    963 #: waeup/kofa/applicants/browser.py:950
    964 #: waeup/kofa/applicants/browser.py:1095
    965 #: waeup/kofa/applicants/browser.py:1153
    966 #: waeup/kofa/applicants/browser.py:1158
    967 #: waeup/kofa/applicants/browser.py:1194
    968 msgid "Add online payment ticket"
    969 msgstr ""
    970 
    971 #: waeup/kofa/applicants/browser.py:950
    972 #: waeup/kofa/applicants/browser.py:1100
    973 #: waeup/kofa/applicants/browser.py:1149
    974 #: waeup/kofa/applicants/browser.py:1153
    975 #: waeup/kofa/applicants/browser.py:1158
    976 #: waeup/kofa/applicants/browser.py:1161
    977 #: waeup/kofa/applicants/browser.py:1199
    978 #: waeup/kofa/students/browser.py:1644
    979 #: waeup/kofa/students/browser.py:1686
    980 #: waeup/kofa/students/browser.py:1958
    981 #: waeup/kofa/students/browser.py:2998
    982 msgid "Remove selected tickets"
     1020#: waeup/kofa/applicants/browser.py:979
     1021msgid "Uploaded file is too big!"
     1022msgstr ""
     1023
     1024#: waeup/kofa/applicants/browser.py:984
     1025msgid "pdf file extension expected."
    9831026msgstr ""
    9841027
     
    10311074msgstr ""
    10321075
    1033 #: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:24
     1076#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:36
    10341077msgid "Admitted Course of Study:"
    10351078msgstr ""
    10361079
    1037 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:100
     1080#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:56
     1081msgid "Referee Reports"
     1082msgstr ""
     1083
     1084#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:106
     1085msgid "I confirm that the Passport Photograph uploaded on this form is a true picture of me."
     1086msgstr ""
     1087
     1088#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:129
     1089#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:62
     1090msgid "Report Id"
     1091msgstr ""
     1092
     1093#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:131
     1094#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:64
    10381095msgid "Referee"
    10391096msgstr ""
    10401097
    1041 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:118
    1042 #: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:42
     1098#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:149
     1099#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:82
    10431100msgid "Payment Tickets"
    10441101msgstr ""
    10451102
    1046 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:160
     1103#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:191
    10471104msgid "<strong>Notice:</strong> If you need to pay for another service, select the corresponding special application category above, click 'Save' and then 'Add online payment ticket' again."
    10481105msgstr ""
     
    10561113msgstr ""
    10571114
    1058 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:58
     1115#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:54
     1116msgid "Download pdf file"
     1117msgstr ""
     1118
     1119#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:67
     1120msgid "PDF files only. Max. file size:"
     1121msgstr ""
     1122
     1123#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:89
    10591124msgid "Application Transition:"
    1060 msgstr ""
    1061 
    1062 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:75
    1063 msgid "I confirm that the Passport Photograph uploaded on this form is a true picture of me."
    10641125msgstr ""
    10651126
     
    10691130msgstr ""
    10701131
    1071 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:92
    1072 msgid "Referee Reports"
    1073 msgstr ""
    1074 
    1075 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:98
    1076 msgid "Report Id"
    1077 msgstr ""
    1078 
    10791132#: waeup/kofa/applicants/browser_templates/applicantregister.pt:13
    10801133msgid "Your application record will be looked up and an email with your login credentials will be sent to the address provided."
     
    11321185msgstr ""
    11331186
     1187#: waeup/kofa/applicants/browser_templates/checktranscriptstatus.pt:1
     1188#. Default: "Check your transcript status in Kofa first. Depending on the existence and status of your student record in Kofa you will be redirected to the appropriate application form."
     1189msgid "checktranscript"
     1190msgstr ""
     1191
     1192#: waeup/kofa/applicants/browser_templates/checktranscriptstatus.pt:12
     1193msgid "Student Id, Registration Number or <br />Matric Number:"
     1194msgstr ""
     1195
     1196#: waeup/kofa/applicants/browser_templates/checktranscriptstatus.pt:42
     1197#. Default: "No student record was found in Kofa. However, if you are sure that you are entitled to receive a transcript, you can apply for your transcript ${no_result_appl_url}."
     1198msgid "check_transcript_1"
     1199msgstr ""
     1200
     1201#: waeup/kofa/applicants/browser_templates/checktranscriptstatus.pt:60
     1202#. Default: "Your student record was found. If you remember your student id and password, you can just login ${login_url} to check your student record status. You have forgotten your password? Since your email address matches the email address stored in Kofa, you can just request a new password ${changepw_url}."
     1203msgid "check_transcript_2"
     1204msgstr ""
     1205
     1206#: waeup/kofa/applicants/browser_templates/checktranscriptstatus.pt:71
     1207#. Default: "But it is not necessary to login with your former student credential. If you are sure that you are entitled to receive a transcript, you can proceed and directly apply for your transcript ${result_appl_url}."
     1208msgid "check_transcript_3"
     1209msgstr ""
     1210
     1211#: waeup/kofa/applicants/browser_templates/checktranscriptstatus.pt:80
     1212#. Default: "Your student record exists and your transcript has already been released and sent to the address provided. If you want your transcript to be resent, maybe to another destination, you can proceed and directly apply for transcript delivery ${result_appl_url} again."
     1213msgid "check_transcript_4"
     1214msgstr ""
     1215
    11341216#: waeup/kofa/applicants/browser_templates/createallstudentspage.pt:10
    11351217msgid "Failed records:"
     
    11701252msgstr ""
    11711253
    1172 #: waeup/kofa/applicants/browser_templates/refereereportpage.pt:3
    1173 #. Default: "You have been invited to report about ${applicant_name}. After submission the form, will be blocked. You can neither view nor edit your report after submission."
     1254#: waeup/kofa/applicants/browser_templates/refereereportpage.pt:17
     1255#. Default: "You have been invited to report about ${app_name} who intends to take the degree ${cert_title} in <strong> ${fac_title_title} / ${dep_title} </strong> of the ${app_title}."
    11741256msgid "referee_welcome"
    11751257msgstr ""
    11761258
    1177 #: waeup/kofa/applicants/export.py:167
     1259#: waeup/kofa/applicants/browser_templates/refereereportpage.pt:25
     1260msgid "Please fill and submit the following referee report form. After submission the form will be locked and a report pdf file will be available for download."
     1261msgstr ""
     1262
     1263#: waeup/kofa/applicants/export.py:168
    11781264msgid "Applicant Payments"
    11791265msgstr ""
    11801266
    1181 #: waeup/kofa/applicants/interfaces.py:146
     1267#: waeup/kofa/applicants/export.py:242
     1268msgid "Applicant Referee Reports"
     1269msgstr ""
     1270
     1271#: waeup/kofa/applicants/interfaces.py:143
    11821272msgid "Create Application Records"
    11831273msgstr ""
    11841274
    1185 #: waeup/kofa/applicants/interfaces.py:147
     1275#: waeup/kofa/applicants/interfaces.py:144
    11861276msgid "Update Application Records"
    11871277msgstr ""
    11881278
    1189 #: waeup/kofa/applicants/interfaces.py:180
    1190 #: waeup/kofa/applicants/interfaces.py:247
     1279#: waeup/kofa/applicants/interfaces.py:177
     1280#: waeup/kofa/applicants/interfaces.py:244
    11911281msgid "Human readable description in HTML format"
    11921282msgstr ""
    11931283
    1194 #: waeup/kofa/applicants/interfaces.py:201
    1195 #: waeup/kofa/students/browser.py:1429
    1196 #: waeup/kofa/students/browser.py:1595
     1284#: waeup/kofa/applicants/interfaces.py:198
     1285#: waeup/kofa/students/browser.py:1482
     1286#: waeup/kofa/students/browser.py:1648
    11971287#: waeup/kofa/university/interfaces.py:41
    11981288#: waeup/kofa/university/interfaces.py:84
     
    12151305msgstr ""
    12161306
    1217 #: waeup/kofa/applicants/interfaces.py:207
    1218 #: waeup/kofa/students/browser.py:1430
    1219 #: waeup/kofa/students/browser.py:1596
    1220 #: waeup/kofa/students/interfaces.py:667
     1307#: waeup/kofa/applicants/interfaces.py:204
     1308#: waeup/kofa/students/browser.py:1483
     1309#: waeup/kofa/students/browser.py:1649
     1310#: waeup/kofa/students/interfaces.py:674
    12211311#: waeup/kofa/university/interfaces.py:230
    12221312#: waeup/kofa/browser/templates/source.pt:23
     
    12241314msgstr ""
    12251315
    1226 #: waeup/kofa/applicants/interfaces.py:213
    1227 #: waeup/kofa/applicants/interfaces.py:315
     1316#: waeup/kofa/applicants/interfaces.py:210
     1317#: waeup/kofa/applicants/interfaces.py:312
    12281318msgid "Application Target"
    12291319msgstr ""
    12301320
    1231 #: waeup/kofa/applicants/interfaces.py:220
    1232 #: waeup/kofa/applicants/interfaces.py:322
     1321#: waeup/kofa/applicants/interfaces.py:217
     1322#: waeup/kofa/applicants/interfaces.py:319
    12331323msgid "Year of Entrance"
    12341324msgstr ""
    12351325
    1236 #: waeup/kofa/applicants/interfaces.py:227
     1326#: waeup/kofa/applicants/interfaces.py:224
    12371327msgid "Application Mode"
    12381328msgstr ""
    12391329
    1240 #: waeup/kofa/applicants/interfaces.py:241
     1330#: waeup/kofa/applicants/interfaces.py:238
    12411331msgid "Category for the grouping of certificates"
    12421332msgstr ""
    12431333
    1244 #: waeup/kofa/applicants/interfaces.py:258
     1334#: waeup/kofa/applicants/interfaces.py:255
    12451335msgid "Application Start Date"
    12461336msgstr ""
    12471337
    1248 #: waeup/kofa/applicants/interfaces.py:260
    1249 #: waeup/kofa/applicants/interfaces.py:266
     1338#: waeup/kofa/applicants/interfaces.py:257
     1339#: waeup/kofa/applicants/interfaces.py:263
    12501340#: waeup/kofa/hostels/interfaces.py:50
    12511341#: waeup/kofa/hostels/interfaces.py:56
    1252 #: waeup/kofa/interfaces.py:851
     1342#: waeup/kofa/interfaces.py:850
    12531343msgid "Example: "
    12541344msgstr ""
    12551345
    1256 #: waeup/kofa/applicants/interfaces.py:264
     1346#: waeup/kofa/applicants/interfaces.py:261
    12571347msgid "Application Closing Date"
    12581348msgstr ""
    12591349
    1260 #: waeup/kofa/applicants/interfaces.py:270
     1350#: waeup/kofa/applicants/interfaces.py:267
    12611351msgid "Forbid additions after deadline (enddate)"
    12621352msgstr ""
    12631353
    1264 #: waeup/kofa/applicants/interfaces.py:276
     1354#: waeup/kofa/applicants/interfaces.py:273
    12651355msgid "Application Fee"
    12661356msgstr ""
    12671357
    1268 #: waeup/kofa/applicants/interfaces.py:282
     1358#: waeup/kofa/applicants/interfaces.py:279
    12691359msgid "Human readable notice on application slip in HTML format"
    12701360msgstr ""
    12711361
    1272 #: waeup/kofa/applicants/interfaces.py:288
     1362#: waeup/kofa/applicants/interfaces.py:285
    12731363msgid "Hide container"
    12741364msgstr ""
    12751365
    1276 #: waeup/kofa/applicants/interfaces.py:294
     1366#: waeup/kofa/applicants/interfaces.py:291
    12771367msgid "With passport picture"
    12781368msgstr ""
    12791369
    1280 #: waeup/kofa/applicants/interfaces.py:329
     1370#: waeup/kofa/applicants/interfaces.py:326
    12811371msgid "Container Number"
    12821372msgstr ""
    12831373
    1284 #: waeup/kofa/applicants/interfaces.py:331
     1374#: waeup/kofa/applicants/interfaces.py:328
    12851375msgid "If set, this number will be added to the container prefix (e.g. app3). If not set, the year of entrance will be used (e.g. app2019)."
    12861376msgstr ""
    12871377
    1288 #: waeup/kofa/applicants/interfaces.py:365
    1289 #: waeup/kofa/applicants/interfaces.py:505
    1290 #: waeup/kofa/interfaces.py:637
    1291 #: waeup/kofa/students/interfaces.py:231
     1378#: waeup/kofa/applicants/interfaces.py:362
     1379#: waeup/kofa/applicants/interfaces.py:502
     1380#: waeup/kofa/interfaces.py:636
     1381#: waeup/kofa/students/interfaces.py:238
    12921382msgid "Account suspended"
    12931383msgstr ""
    12941384
    1295 #: waeup/kofa/applicants/interfaces.py:371
    1296 #: waeup/kofa/applicants/interfaces.py:517
     1385#: waeup/kofa/applicants/interfaces.py:368
     1386#: waeup/kofa/applicants/interfaces.py:514
    12971387#: waeup/kofa/applicants/browser_templates/applicantssearchpage.pt:29
    12981388msgid "Applicant Id"
    12991389msgstr ""
    13001390
    1301 #: waeup/kofa/applicants/interfaces.py:377
    1302 #: waeup/kofa/students/interfaces.py:279
    1303 #: waeup/kofa/students/interfaces.py:417
     1391#: waeup/kofa/applicants/interfaces.py:374
     1392#: waeup/kofa/students/interfaces.py:286
     1393#: waeup/kofa/students/interfaces.py:424
    13041394msgid "Registration Number"
    13051395msgstr ""
    13061396
    1307 #: waeup/kofa/applicants/interfaces.py:384
    1308 #: waeup/kofa/applicants/interfaces.py:523
    1309 #: waeup/kofa/students/interfaces.py:258
     1397#: waeup/kofa/applicants/interfaces.py:381
     1398#: waeup/kofa/applicants/interfaces.py:520
     1399#: waeup/kofa/students/interfaces.py:265
    13101400msgid "First Name"
    13111401msgstr ""
    13121402
    1313 #: waeup/kofa/applicants/interfaces.py:389
    1314 #: waeup/kofa/applicants/interfaces.py:528
    1315 #: waeup/kofa/students/interfaces.py:263
     1403#: waeup/kofa/applicants/interfaces.py:386
     1404#: waeup/kofa/applicants/interfaces.py:525
     1405#: waeup/kofa/students/interfaces.py:270
    13161406msgid "Middle Name"
    13171407msgstr ""
    13181408
    1319 #: waeup/kofa/applicants/interfaces.py:394
    1320 #: waeup/kofa/applicants/interfaces.py:533
    1321 #: waeup/kofa/applicants/interfaces.py:640
    1322 #: waeup/kofa/students/interfaces.py:268
     1409#: waeup/kofa/applicants/interfaces.py:391
     1410#: waeup/kofa/applicants/interfaces.py:530
     1411#: waeup/kofa/applicants/interfaces.py:637
     1412#: waeup/kofa/students/interfaces.py:275
    13231413msgid "Last Name (Surname)"
    13241414msgstr ""
    13251415
    1326 #: waeup/kofa/applicants/interfaces.py:399
    1327 #: waeup/kofa/applicants/interfaces.py:546
    1328 #: waeup/kofa/students/interfaces.py:363
     1416#: waeup/kofa/applicants/interfaces.py:396
     1417#: waeup/kofa/applicants/interfaces.py:543
     1418#: waeup/kofa/students/interfaces.py:370
    13291419msgid "Date of Birth"
    13301420msgstr ""
    13311421
    1332 #: waeup/kofa/applicants/interfaces.py:405
    1333 #: waeup/kofa/students/interfaces.py:273
     1422#: waeup/kofa/applicants/interfaces.py:402
     1423#: waeup/kofa/students/interfaces.py:280
    13341424msgid "Gender"
    13351425msgstr ""
    13361426
    1337 #: waeup/kofa/applicants/interfaces.py:411
    1338 #: waeup/kofa/applicants/interfaces.py:553
    1339 #: waeup/kofa/applicants/interfaces.py:583
    1340 #: waeup/kofa/applicants/interfaces.py:645
    1341 #: waeup/kofa/applicants/interfaces.py:684
     1427#: waeup/kofa/applicants/interfaces.py:408
     1428#: waeup/kofa/applicants/interfaces.py:550
     1429#: waeup/kofa/applicants/interfaces.py:580
     1430#: waeup/kofa/applicants/interfaces.py:642
    13421431#: waeup/kofa/browser/interfaces.py:186
    13431432#: waeup/kofa/interfaces.py:293
    1344 #: waeup/kofa/interfaces.py:540
    1345 #: waeup/kofa/interfaces.py:618
    1346 #: waeup/kofa/students/interfaces.py:440
    1347 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:101
     1433#: waeup/kofa/interfaces.py:297
     1434#: waeup/kofa/interfaces.py:539
     1435#: waeup/kofa/interfaces.py:617
     1436#: waeup/kofa/students/interfaces.py:447
     1437#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:132
     1438#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:65
    13481439msgid "Email Address"
    13491440msgstr ""
    13501441
    1351 #: waeup/kofa/applicants/interfaces.py:417
    1352 #: waeup/kofa/applicants/interfaces.py:559
    1353 #: waeup/kofa/applicants/interfaces.py:690
    1354 #: waeup/kofa/interfaces.py:545
    1355 #: waeup/kofa/interfaces.py:625
    1356 #: waeup/kofa/students/interfaces.py:305
     1442#: waeup/kofa/applicants/interfaces.py:414
     1443#: waeup/kofa/applicants/interfaces.py:556
     1444#: waeup/kofa/interfaces.py:544
     1445#: waeup/kofa/interfaces.py:624
     1446#: waeup/kofa/students/interfaces.py:312
    13571447msgid "Phone"
    13581448msgstr ""
    13591449
    1360 #: waeup/kofa/applicants/interfaces.py:423
    1361 #: waeup/kofa/applicants/interfaces.py:589
     1450#: waeup/kofa/applicants/interfaces.py:420
     1451#: waeup/kofa/applicants/interfaces.py:586
    13621452msgid "1st Choice Course of Study"
    13631453msgstr ""
    13641454
    1365 #: waeup/kofa/applicants/interfaces.py:429
    1366 #: waeup/kofa/applicants/interfaces.py:595
     1455#: waeup/kofa/applicants/interfaces.py:426
     1456#: waeup/kofa/applicants/interfaces.py:592
    13671457msgid "2nd Choice Course of Study"
    13681458msgstr ""
    13691459
    1370 #: waeup/kofa/applicants/interfaces.py:435
    1371 #: waeup/kofa/applicants/interfaces.py:608
     1460#: waeup/kofa/applicants/interfaces.py:432
     1461#: waeup/kofa/applicants/interfaces.py:605
    13721462msgid "Notice"
    13731463msgstr ""
    13741464
    1375 #: waeup/kofa/applicants/interfaces.py:439
    1376 #: waeup/kofa/students/interfaces.py:253
     1465#: waeup/kofa/applicants/interfaces.py:436
     1466#: waeup/kofa/students/interfaces.py:260
    13771467#: waeup/kofa/students/browser_templates/containerpage.pt:44
    13781468#: waeup/kofa/browser/templates/findstudentspage.pt:30
     
    13821472msgstr ""
    13831473
    1384 #: waeup/kofa/applicants/interfaces.py:444
    1385 #: waeup/kofa/applicants/interfaces.py:601
     1474#: waeup/kofa/applicants/interfaces.py:441
     1475#: waeup/kofa/applicants/interfaces.py:598
    13861476msgid "Admitted Course of Study"
    13871477msgstr ""
    13881478
    1389 #: waeup/kofa/applicants/interfaces.py:449
    1390 #: waeup/kofa/applicants/interfaces.py:511
     1479#: waeup/kofa/applicants/interfaces.py:446
     1480#: waeup/kofa/applicants/interfaces.py:508
    13911481msgid "Form locked"
    13921482msgstr ""
    13931483
    1394 #: waeup/kofa/applicants/interfaces.py:455
    1395 #: waeup/kofa/applicants/interfaces.py:565
     1484#: waeup/kofa/applicants/interfaces.py:452
     1485#: waeup/kofa/applicants/interfaces.py:562
    13961486msgid "Special Application"
    13971487msgstr ""
    13981488
    1399 #: waeup/kofa/applicants/interfaces.py:466
     1489#: waeup/kofa/applicants/interfaces.py:463
    14001490msgid "School Grades"
    14011491msgstr ""
    14021492
    1403 #: waeup/kofa/applicants/interfaces.py:473
     1493#: waeup/kofa/applicants/interfaces.py:470
    14041494msgid "Referees"
    14051495msgstr ""
    14061496
    1407 #: waeup/kofa/applicants/interfaces.py:538
     1497#: waeup/kofa/applicants/interfaces.py:535
    14081498msgid "Identification Number"
    14091499msgstr ""
    14101500
    1411 #: waeup/kofa/applicants/interfaces.py:673
    1412 #: waeup/kofa/payments/interfaces.py:100
    1413 msgid "Ticket Creation Date"
    1414 msgstr ""
    1415 
    1416 #: waeup/kofa/applicants/interfaces.py:679
     1501#: waeup/kofa/applicants/interfaces.py:670
     1502msgid "Report Creation Date"
     1503msgstr ""
     1504
     1505#: waeup/kofa/applicants/interfaces.py:676
     1506msgid "Referee Name"
     1507msgstr ""
     1508
     1509#: waeup/kofa/applicants/interfaces.py:681
     1510msgid "Referee Email Address"
     1511msgstr ""
     1512
     1513#: waeup/kofa/applicants/interfaces.py:687
     1514msgid "Referee Phone"
     1515msgstr ""
     1516
     1517#: waeup/kofa/applicants/interfaces.py:693
     1518msgid "Report"
     1519msgstr ""
     1520
     1521#: waeup/kofa/applicants/payment.py:56
     1522#: waeup/kofa/applicants/workflow.py:78
     1523#: waeup/kofa/students/payments.py:161
     1524msgid "Payment approved"
     1525msgstr ""
     1526
     1527#: waeup/kofa/applicants/payment.py:72
     1528msgid "Payment successfully completed. Kindly submit application for processing."
     1529msgstr ""
     1530
     1531#: waeup/kofa/applicants/payment.py:80
     1532#: waeup/kofa/students/payments.py:169
     1533msgid "This ticket has already been paid."
     1534msgstr ""
     1535
     1536#: waeup/kofa/applicants/pdf.py:110
     1537#. Default: ""
     1538msgid ""
     1539"\n"
     1540" Proceed to the login page of the portal and enter your new credentials: user name= ${a}, password = ${b}. Change your password when you have logged in."
     1541msgstr ""
     1542
     1543#: waeup/kofa/applicants/pdf.py:71
     1544msgid "Application Record"
     1545msgstr ""
     1546
     1547#: waeup/kofa/applicants/utils.py:46
     1548#: waeup/kofa/students/utils.py:802
     1549#: waeup/kofa/students/viewlets.py:66
     1550#: waeup/kofa/students/viewlets.py:100
     1551#: waeup/kofa/students/browser_templates/basemanagepage.pt:8
     1552msgid "Base Data"
     1553msgstr ""
     1554
     1555#: waeup/kofa/applicants/utils.py:47
     1556msgid "Desired Study Courses"
     1557msgstr ""
     1558
     1559#: waeup/kofa/applicants/utils.py:48
     1560msgid "Application Process Data"
     1561msgstr ""
     1562
     1563#: waeup/kofa/applicants/utils.py:49
     1564msgid "Referees (automatically invited by email after final submission of this form)"
     1565msgstr ""
     1566
     1567#: waeup/kofa/applicants/utils.py:67
     1568#: waeup/kofa/students/utils.py:433
     1569#: waeup/kofa/students/utils.py:460
     1570#: waeup/kofa/students/utils.py:471
     1571#: waeup/kofa/students/utils.py:540
     1572#: waeup/kofa/students/utils.py:761
     1573msgid "Session configuration object is not available."
     1574msgstr ""
     1575
     1576#: waeup/kofa/applicants/utils.py:77
     1577#: waeup/kofa/applicants/utils.py:83
     1578#: waeup/kofa/students/utils.py:511
     1579msgid "Amount could not be determined."
     1580msgstr ""
     1581
     1582#: waeup/kofa/applicants/viewlets.py:108
     1583msgid "Register for application"
     1584msgstr ""
     1585
     1586#: waeup/kofa/applicants/viewlets.py:143
     1587msgid "Container statistics"
     1588msgstr ""
     1589
     1590#: waeup/kofa/applicants/viewlets.py:156
     1591msgid "Manage container"
     1592msgstr ""
     1593
     1594#: waeup/kofa/applicants/viewlets.py:166
     1595msgid "Export application data"
     1596msgstr ""
     1597
     1598#: waeup/kofa/applicants/viewlets.py:170
     1599msgid "'The creation process may take a considerably long time depending on the number of student records to be created (appr. 0.5s per student). All users will be logged out and the portal will be in maintenance mode during record creation. You will be automatically logged in when the creation process is finished. Do you really want to start now?'"
     1600msgstr ""
     1601
     1602#: waeup/kofa/applicants/viewlets.py:185
     1603#: waeup/kofa/applicants/viewlets.py:198
     1604msgid "Create students"
     1605msgstr ""
     1606
     1607#: waeup/kofa/applicants/viewlets.py:210
     1608msgid "View application record"
     1609msgstr ""
     1610
     1611#: waeup/kofa/applicants/viewlets.py:218
     1612msgid "Manage application record"
     1613msgstr ""
     1614
     1615#: waeup/kofa/applicants/viewlets.py:226
     1616msgid "Edit application record"
     1617msgstr ""
     1618
     1619#: waeup/kofa/applicants/viewlets.py:245
     1620msgid "Download application slip"
     1621msgstr ""
     1622
     1623#: waeup/kofa/applicants/viewlets.py:262
     1624#: waeup/kofa/applicants/workflow.py:119
     1625#: waeup/kofa/students/browser.py:371
     1626#: waeup/kofa/students/workflow.py:46
     1627msgid "Create student"
     1628msgstr ""
     1629
     1630#: waeup/kofa/applicants/viewlets.py:279
     1631#: waeup/kofa/students/viewlets.py:521
     1632msgid "Download payment slip"
     1633msgstr ""
     1634
     1635#: waeup/kofa/applicants/viewlets.py:294
     1636#: waeup/kofa/applicants/workflow.py:77
     1637#: waeup/kofa/students/viewlets.py:537
     1638#: waeup/kofa/students/workflow.py:117
     1639msgid "Approve payment"
     1640msgstr ""
     1641
     1642#: waeup/kofa/applicants/viewlets.py:309
     1643msgid "Download referee report slip"
     1644msgstr ""
     1645
     1646#: waeup/kofa/applicants/viewlets.py:316
     1647msgid "'The report will be irrevocably deleted. Are you sure?'"
     1648msgstr ""
     1649
     1650#: waeup/kofa/applicants/viewlets.py:325
     1651msgid "Delete referee report"
     1652msgstr ""
     1653
     1654#: waeup/kofa/applicants/viewlets.py:59
     1655msgid "Application"
     1656msgstr ""
     1657
     1658#: waeup/kofa/applicants/viewlets.py:75
     1659#: waeup/kofa/students/viewlets.py:896
     1660msgid "My Data"
     1661msgstr ""
     1662
     1663#: waeup/kofa/applicants/workflow.py:105
     1664msgid "Process application"
     1665msgstr ""
     1666
     1667#: waeup/kofa/applicants/workflow.py:106
     1668msgid "Application processed"
     1669msgstr ""
     1670
     1671#: waeup/kofa/applicants/workflow.py:120
     1672msgid "Student record created"
     1673msgstr ""
     1674
     1675#: waeup/kofa/applicants/workflow.py:126
     1676#: waeup/kofa/applicants/workflow.py:140
     1677#: waeup/kofa/applicants/workflow.py:147
     1678#: waeup/kofa/applicants/workflow.py:154
     1679msgid "Reset application to started"
     1680msgstr ""
     1681
     1682#: waeup/kofa/applicants/workflow.py:127
     1683#: waeup/kofa/applicants/workflow.py:141
     1684#: waeup/kofa/applicants/workflow.py:148
     1685#: waeup/kofa/applicants/workflow.py:155
     1686#: waeup/kofa/applicants/workflow.py:162
     1687msgid "Application reset"
     1688msgstr ""
     1689
     1690#: waeup/kofa/applicants/workflow.py:133
     1691msgid "Reset application to paid"
     1692msgstr ""
     1693
     1694#: waeup/kofa/applicants/workflow.py:134
     1695msgid "Application reset to paid"
     1696msgstr ""
     1697
     1698#: waeup/kofa/applicants/workflow.py:161
     1699msgid "Reset application to submitted"
     1700msgstr ""
     1701
     1702#: waeup/kofa/applicants/workflow.py:43
     1703msgid "started"
     1704msgstr ""
     1705
     1706#: waeup/kofa/applicants/workflow.py:44
     1707msgid "paid"
     1708msgstr ""
     1709
     1710#: waeup/kofa/applicants/workflow.py:45
     1711msgid "submitted"
     1712msgstr ""
     1713
     1714#: waeup/kofa/applicants/workflow.py:46
     1715#: waeup/kofa/interfaces.py:98
     1716msgid "admitted"
     1717msgstr ""
     1718
     1719#: waeup/kofa/applicants/workflow.py:47
     1720msgid "not admitted"
     1721msgstr ""
     1722
     1723#: waeup/kofa/applicants/workflow.py:48
     1724#: waeup/kofa/documents/utils.py:33
     1725#: waeup/kofa/interfaces.py:97
     1726msgid "created"
     1727msgstr ""
     1728
     1729#: waeup/kofa/applicants/workflow.py:49
     1730msgid "processed"
     1731msgstr ""
     1732
     1733#: waeup/kofa/applicants/workflow.py:55
     1734msgid "Initialize application"
     1735msgstr ""
     1736
     1737#: waeup/kofa/applicants/workflow.py:58
     1738msgid "Application initialized"
     1739msgstr ""
     1740
     1741#: waeup/kofa/applicants/workflow.py:63
     1742msgid "Start application"
     1743msgstr ""
     1744
     1745#: waeup/kofa/applicants/workflow.py:64
     1746msgid "Application started"
     1747msgstr ""
     1748
     1749#: waeup/kofa/applicants/workflow.py:70
     1750msgid "Pay application fee"
     1751msgstr ""
     1752
     1753#: waeup/kofa/applicants/workflow.py:71
     1754msgid "Payment made"
     1755msgstr ""
     1756
     1757#: waeup/kofa/applicants/workflow.py:84
     1758msgid "Submit application"
     1759msgstr ""
     1760
     1761#: waeup/kofa/applicants/workflow.py:85
     1762msgid "Application submitted"
     1763msgstr ""
     1764
     1765#: waeup/kofa/applicants/workflow.py:91
     1766msgid "Admit applicant"
     1767msgstr ""
     1768
     1769#: waeup/kofa/applicants/workflow.py:92
     1770msgid "Applicant admitted"
     1771msgstr ""
     1772
     1773#: waeup/kofa/applicants/workflow.py:98
     1774#: waeup/kofa/applicants/workflow.py:112
     1775msgid "Refuse application"
     1776msgstr ""
     1777
     1778#: waeup/kofa/applicants/workflow.py:99
     1779#: waeup/kofa/applicants/workflow.py:113
     1780msgid "Application refused"
     1781msgstr ""
     1782
     1783#: waeup/kofa/authentication.py:412
     1784msgid "Password must have at least 6 characters."
     1785msgstr ""
     1786
     1787#: waeup/kofa/authentication.py:415
     1788#: waeup/kofa/authentication.py:437
     1789msgid "Passwords do not match."
     1790msgstr ""
     1791
     1792#: waeup/kofa/authentication.py:432
     1793msgid "Passwords must be at least 8 characters long, must contain at least one uppercase letter, one lowercase letter and one digit."
     1794msgstr ""
     1795
     1796#: waeup/kofa/browser/async.py:91
     1797msgid "Please wait..."
     1798msgstr ""
     1799
     1800#: waeup/kofa/browser/breadcrumbs.py:108
     1801msgid "Portal Settings"
     1802msgstr ""
     1803
     1804#: waeup/kofa/browser/breadcrumbs.py:120
     1805#: waeup/kofa/browser/viewlets.py:862
     1806msgid "Academics"
     1807msgstr ""
     1808
     1809#: waeup/kofa/browser/breadcrumbs.py:127
     1810#: waeup/kofa/browser/pages.py:790
     1811msgid "Administration"
     1812msgstr ""
     1813
     1814#: waeup/kofa/browser/breadcrumbs.py:134
     1815#: waeup/kofa/browser/viewlets.py:320
     1816#: waeup/kofa/browser/viewlets.py:913
     1817msgid "Portal Configuration"
     1818msgstr ""
     1819
     1820#: waeup/kofa/browser/breadcrumbs.py:152
     1821#: waeup/kofa/browser/pages.py:837
     1822#: waeup/kofa/browser/viewlets.py:329
     1823#: waeup/kofa/browser/viewlets.py:923
     1824msgid "Officers"
     1825msgstr ""
     1826
     1827#: waeup/kofa/browser/breadcrumbs.py:159
     1828#: waeup/kofa/browser/pages.py:1294
     1829#: waeup/kofa/browser/pages.py:1879
     1830#: waeup/kofa/browser/viewlets.py:338
     1831#: waeup/kofa/browser/viewlets.py:932
     1832msgid "Data Center"
     1833msgstr ""
     1834
     1835#: waeup/kofa/browser/breadcrumbs.py:166
     1836#: waeup/kofa/browser/reports.py:43
     1837#: waeup/kofa/browser/viewlets.py:347
     1838#: waeup/kofa/browser/viewlets.py:941
     1839msgid "Reports"
     1840msgstr ""
     1841
     1842#: waeup/kofa/browser/breadcrumbs.py:174
     1843#: waeup/kofa/students/browser.py:3933
     1844msgid "Student Data Exports"
     1845msgstr ""
     1846
     1847#: waeup/kofa/browser/breadcrumbs.py:94
     1848msgid "Home"
     1849msgstr ""
     1850
     1851#: waeup/kofa/browser/fileviewlets.py:108
     1852#: waeup/kofa/accesscodes/browser_templates/reimportbatchpage.pt:11
     1853#: waeup/kofa/browser/templates/datacenterfinishedpage.pt:9
     1854#: waeup/kofa/browser/templates/datacenterpage.pt:17
     1855#: waeup/kofa/browser/templates/datacenterlogspage.pt:10
     1856msgid "File"
     1857msgstr ""
     1858
     1859#: waeup/kofa/browser/fileviewlets.py:109
     1860msgid "Scan"
     1861msgstr ""
     1862
     1863#: waeup/kofa/browser/fileviewlets.py:133
     1864msgid "Upload selected file"
     1865msgstr ""
     1866
     1867#: waeup/kofa/browser/fileviewlets.py:134
     1868msgid "Delete"
     1869msgstr ""
     1870
     1871#: waeup/kofa/browser/fileviewlets.py:168
     1872msgid "No local file selected."
     1873msgstr ""
     1874
     1875#: waeup/kofa/browser/fileviewlets.py:44
     1876#. Default: ""
     1877msgid "${a} deleted."
     1878msgstr ""
     1879
     1880#: waeup/kofa/browser/fileviewlets.py:59
     1881msgid "Uploaded file is too big."
     1882msgstr ""
     1883
     1884#: waeup/kofa/browser/fileviewlets.py:71
     1885msgid "Could not determine file type."
     1886msgstr ""
     1887
     1888#: waeup/kofa/browser/fileviewlets.py:76
     1889#. Default: ""
     1890msgid "${a} file format expected."
     1891msgstr ""
     1892
     1893#: waeup/kofa/browser/fileviewlets.py:82
     1894#. Default: ""
     1895msgid "Only the following extensions are allowed: ${a}"
     1896msgstr ""
     1897
     1898#: waeup/kofa/browser/fileviewlets.py:92
     1899#. Default: ""
     1900msgid "File ${a} uploaded."
     1901msgstr ""
     1902
     1903#: waeup/kofa/browser/interfaces.py:177
     1904msgid "Unique Identifier"
     1905msgstr ""
     1906
     1907#: waeup/kofa/browser/interfaces.py:178
     1908msgid "User Name, Student or Applicant Id, Matriculation or Registration Number"
     1909msgstr ""
     1910
     1911#: waeup/kofa/browser/layout.py:102
     1912#: waeup/kofa/documents/browser.py:260
     1913#: waeup/kofa/students/browser.py:815
     1914msgid "Are you sure?"
     1915msgstr ""
     1916
     1917#: waeup/kofa/browser/layout.py:303
     1918msgid "OE"
     1919msgstr ""
     1920
     1921#: waeup/kofa/browser/pages.py:1012
     1922#: waeup/kofa/browser/viewlets.py:411
     1923msgid "My Preferences"
     1924msgstr ""
     1925
     1926#: waeup/kofa/browser/pages.py:1025
     1927#: waeup/kofa/browser/viewlets.py:426
     1928msgid "My Roles"
     1929msgstr ""
     1930
     1931#: waeup/kofa/browser/pages.py:1052
     1932#: waeup/kofa/browser/viewlets.py:356
     1933msgid "My Courses"
     1934msgstr ""
     1935
     1936#: waeup/kofa/browser/pages.py:1062
     1937msgid "no academic session set"
     1938msgstr ""
     1939
     1940#: waeup/kofa/browser/pages.py:1083
     1941#: waeup/kofa/browser/pages.py:1111
     1942#: waeup/kofa/browser/viewlets.py:375
     1943#: waeup/kofa/browser/viewlets.py:394
     1944msgid "My ToDoList"
     1945msgstr ""
     1946
     1947#: waeup/kofa/browser/pages.py:109
     1948msgid "No local role selected."
     1949msgstr ""
     1950
     1951#: waeup/kofa/browser/pages.py:1138
     1952msgid "Search Academic Section"
     1953msgstr ""
     1954
     1955#: waeup/kofa/browser/pages.py:1152
     1956msgid "No object found."
     1957msgstr ""
     1958
     1959#: waeup/kofa/browser/pages.py:1168
     1960msgid "Edit portal configuration"
     1961msgstr ""
     1962
     1963#: waeup/kofa/browser/pages.py:1169
     1964#: waeup/kofa/browser/pages.py:1212
     1965msgid "Update plugins"
     1966msgstr ""
     1967
     1968#: waeup/kofa/browser/pages.py:1169
     1969#: waeup/kofa/browser/pages.py:1222
     1970msgid "Purge mandates"
     1971msgstr ""
     1972
     1973#: waeup/kofa/browser/pages.py:1171
     1974#: waeup/kofa/browser/pages.py:1191
     1975#: waeup/kofa/browser/pages.py:1236
     1976msgid "Add session configuration"
     1977msgstr ""
     1978
     1979#: waeup/kofa/browser/pages.py:1203
     1980#. Default: ""
     1981msgid "Session ${a} Configuration"
     1982msgstr ""
     1983
     1984#: waeup/kofa/browser/pages.py:1213
     1985#: waeup/kofa/browser/pages.py:1223
     1986msgid "For experts only!"
     1987msgstr ""
     1988
     1989#: waeup/kofa/browser/pages.py:1214
     1990msgid "Plugins may only be updated after software upgrades. Are you really sure?"
     1991msgstr ""
     1992
     1993#: waeup/kofa/browser/pages.py:1219
     1994msgid "Plugins were updated. See log file for details."
     1995msgstr ""
     1996
     1997#: waeup/kofa/browser/pages.py:1227
     1998#. Default: ""
     1999msgid "${a} mandate(s) were purged."
     2000msgstr ""
     2001
     2002#: waeup/kofa/browser/pages.py:1240
     2003msgid "Add Session Configuration"
     2004msgstr ""
     2005
     2006#: waeup/kofa/browser/pages.py:1251
     2007msgid "The session chosen already exists."
     2008msgstr ""
     2009
     2010#: waeup/kofa/browser/pages.py:1273
     2011#. Default: ""
     2012msgid "Edit academic session ${a} configuration"
     2013msgstr ""
     2014
     2015#: waeup/kofa/browser/pages.py:130
     2016#. Default: ""
     2017msgid "Local role successfully removed: ${a}"
     2018msgstr ""
     2019
     2020#: waeup/kofa/browser/pages.py:1315
     2021msgid "OSError: The file could not be deleted."
     2022msgstr ""
     2023
     2024#: waeup/kofa/browser/pages.py:1319
     2025#. Default: ""
     2026msgid "Successfully deleted: ${a}"
     2027msgstr ""
     2028
     2029#: waeup/kofa/browser/pages.py:1330
     2030msgid "Processed Files"
     2031msgstr ""
     2032
     2033#: waeup/kofa/browser/pages.py:1332
     2034#: waeup/kofa/browser/pages.py:1348
     2035#: waeup/kofa/browser/pages.py:1535
     2036#: waeup/kofa/browser/pages.py:1864
     2037#: waeup/kofa/browser/pages.py:1882
     2038#: waeup/kofa/browser/pages.py:1925
     2039#: waeup/kofa/browser/pages.py:1969
     2040msgid "Back to Data Center"
     2041msgstr ""
     2042
     2043#: waeup/kofa/browser/pages.py:1344
     2044msgid "Upload portal data as CSV file"
     2045msgstr ""
     2046
     2047#: waeup/kofa/browser/pages.py:1347
     2048msgid "Upload"
     2049msgstr ""
     2050
     2051#: waeup/kofa/browser/pages.py:1388
     2052msgid "Import Manager"
     2053msgstr ""
     2054
     2055#: waeup/kofa/browser/pages.py:1390
     2056#. Default: ""
     2057msgid "${a}: ${b} uploaded"
     2058msgstr ""
     2059
     2060#: waeup/kofa/browser/pages.py:1394
     2061#. Default: ""
     2062msgid ""
     2063"File: ${a}\n"
     2064"Importer: ${b}\n"
     2065"Import Mode: ${c}\n"
     2066"Datasets: ${d}\n"
     2067"\n"
     2068"${e}\n"
     2069"\n"
     2070"Comment by Import Manager:"
     2071msgstr ""
     2072
     2073#: waeup/kofa/browser/pages.py:1413
     2074msgid "All import managers have been notified by email."
     2075msgstr ""
     2076
     2077#: waeup/kofa/browser/pages.py:1415
     2078#: waeup/kofa/browser/pages.py:2860
     2079#: waeup/kofa/students/browser.py:526
     2080msgid "An smtp server error occurred."
     2081msgstr ""
     2082
     2083#: waeup/kofa/browser/pages.py:1423
     2084msgid "Maximum number of files in the data center exceeded."
     2085msgstr ""
     2086
     2087#: waeup/kofa/browser/pages.py:143
     2088#: waeup/kofa/browser/pages.py:1304
     2089#: waeup/kofa/hostels/browser.py:372
     2090#: waeup/kofa/hostels/browser.py:406
     2091#: waeup/kofa/students/browser.py:343
     2092msgid "No item selected."
     2093msgstr ""
     2094
     2095#: waeup/kofa/browser/pages.py:1438
     2096msgid "Only csv files are allowed."
     2097msgstr ""
     2098
     2099#: waeup/kofa/browser/pages.py:1446
     2100msgid "File with same name was uploaded earlier."
     2101msgstr ""
     2102
     2103#: waeup/kofa/browser/pages.py:1458
     2104msgid "The data in your file contain trailing whitespaces. Please replace."
     2105msgstr ""
     2106
     2107#: waeup/kofa/browser/pages.py:1462
     2108msgid "Your file contains forbidden characters or has invalid CSV format. First problematic line detected: line %s. Please replace."
     2109msgstr ""
     2110
     2111#: waeup/kofa/browser/pages.py:1533
     2112#: waeup/kofa/browser/pages.py:1568
     2113#: waeup/kofa/browser/pages.py:1672
     2114#: waeup/kofa/browser/pages.py:1785
     2115msgid "Process CSV file"
     2116msgstr ""
     2117
     2118#: waeup/kofa/browser/pages.py:1549
     2119msgid "Portal must be in maintenance mode for data import."
     2120msgstr ""
     2121
     2122#: waeup/kofa/browser/pages.py:1571
     2123msgid "Back to step 1"
     2124msgstr ""
     2125
     2126#: waeup/kofa/browser/pages.py:1572
     2127msgid "Proceed to step 3"
     2128msgstr ""
     2129
     2130#: waeup/kofa/browser/pages.py:1616
     2131msgid "Double headers: each column name may only appear once. "
     2132msgstr ""
     2133
     2134#: waeup/kofa/browser/pages.py:1624
     2135msgid "Replace imported file!"
     2136msgstr ""
     2137
     2138#: waeup/kofa/browser/pages.py:1637
     2139#: waeup/kofa/browser/pages.py:1761
     2140msgid "Import aborted."
     2141msgstr ""
     2142
     2143#: waeup/kofa/browser/pages.py:1649
     2144msgid "Update mode only!"
     2145msgstr ""
     2146
     2147#: waeup/kofa/browser/pages.py:1675
     2148#: waeup/kofa/browser/pages.py:1924
     2149msgid "Reset"
     2150msgstr ""
     2151
     2152#: waeup/kofa/browser/pages.py:1676
     2153msgid "Set headerfields"
     2154msgstr ""
     2155
     2156#: waeup/kofa/browser/pages.py:1677
     2157msgid "Back to step 2"
     2158msgstr ""
     2159
     2160#: waeup/kofa/browser/pages.py:1678
     2161msgid "Perform import"
     2162msgstr ""
     2163
     2164#: waeup/kofa/browser/pages.py:1744
     2165msgid "Edit headers or replace imported file!"
     2166msgstr ""
     2167
     2168#: waeup/kofa/browser/pages.py:1787
     2169msgid "Process next"
     2170msgstr ""
     2171
     2172#: waeup/kofa/browser/pages.py:1803
     2173msgid "File has not been imported. Portal must be in maintenance mode for data import."
     2174msgstr ""
     2175
     2176#: waeup/kofa/browser/pages.py:1849
     2177#: waeup/kofa/browser/pages.py:2058
     2178msgid "Maintenance mode disabled."
     2179msgstr ""
     2180
     2181#: waeup/kofa/browser/pages.py:1852
     2182#. Default: ""
     2183msgid "Processing of ${a} rows failed."
     2184msgstr ""
     2185
     2186#: waeup/kofa/browser/pages.py:1854
     2187#. Default: ""
     2188msgid "Successfully processed ${a} rows."
     2189msgstr ""
     2190
     2191#: waeup/kofa/browser/pages.py:1862
     2192msgid "Show logfiles"
     2193msgstr ""
     2194
     2195#: waeup/kofa/browser/pages.py:1865
     2196msgid "Show"
     2197msgstr ""
     2198
     2199#: waeup/kofa/browser/pages.py:1883
     2200msgid "Enter a regular expression here..."
     2201msgstr ""
     2202
     2203#: waeup/kofa/browser/pages.py:1895
     2204msgid "Log files can only be searched on Unix-based operating systems."
     2205msgstr ""
     2206
     2207#: waeup/kofa/browser/pages.py:1910
     2208msgid "Invalid search expression."
     2209msgstr ""
     2210
     2211#: waeup/kofa/browser/pages.py:1913
     2212msgid "No search results found."
     2213msgstr ""
     2214
     2215#: waeup/kofa/browser/pages.py:1921
     2216msgid "Edit data center settings"
     2217msgstr ""
     2218
     2219#: waeup/kofa/browser/pages.py:1931
     2220msgid "You are not permitted to edit datacenter settings."
     2221msgstr ""
     2222
     2223#: waeup/kofa/browser/pages.py:1947
     2224#. Default: ""
     2225msgid "File already existed (not copied): ${a}"
     2226msgstr ""
     2227
     2228#: waeup/kofa/browser/pages.py:1950
     2229#. Default: ""
     2230msgid "Given storage path cannot be used. ${a}"
     2231msgstr ""
     2232
     2233#: waeup/kofa/browser/pages.py:1954
     2234msgid "New storage path succefully set."
     2235msgstr ""
     2236
     2237#: waeup/kofa/browser/pages.py:1966
     2238msgid "Download portal data as CSV file"
     2239msgstr ""
     2240
     2241#: waeup/kofa/browser/pages.py:1968
     2242msgid "Create CSV file"
     2243msgstr ""
     2244
     2245#: waeup/kofa/browser/pages.py:2008
     2246msgid "Exports successfully purged."
     2247msgstr ""
     2248
     2249#: waeup/kofa/browser/pages.py:2064
     2250msgid "Maintenance mode enabled."
     2251msgstr ""
     2252
     2253#: waeup/kofa/browser/pages.py:2081
     2254msgid "Academic Section"
     2255msgstr ""
     2256
     2257#: waeup/kofa/browser/pages.py:2093
     2258#: waeup/kofa/browser/pages.py:2110
     2259#: waeup/kofa/browser/pages.py:2127
     2260#: waeup/kofa/browser/pages.py:2132
     2261msgid "Add faculty"
     2262msgstr ""
     2263
     2264#: waeup/kofa/browser/pages.py:2094
     2265#: waeup/kofa/students/reports/student_statistics.py:290
     2266#: waeup/kofa/university/export.py:37
     2267msgid "Faculties"
     2268msgstr ""
     2269
     2270#: waeup/kofa/browser/pages.py:2099
     2271#: waeup/kofa/browser/viewlets.py:459
     2272msgid "Manage academic section"
     2273msgstr ""
     2274
     2275#: waeup/kofa/browser/pages.py:2104
     2276msgid "You are not allowed to remove entire faculties."
     2277msgstr ""
     2278
     2279#: waeup/kofa/browser/pages.py:2139
     2280msgid "The faculty code chosen already exists."
     2281msgstr ""
     2282
     2283#: waeup/kofa/browser/pages.py:2143
     2284#. Default: ""
     2285msgid "Faculty ${a} added."
     2286msgstr ""
     2287
     2288#: waeup/kofa/browser/pages.py:2167
     2289#: waeup/kofa/browser/pages.py:2178
     2290#: waeup/kofa/students/reports/student_statistics.py:290
     2291#: waeup/kofa/university/export.py:84
     2292msgid "Departments"
     2293msgstr ""
     2294
     2295#: waeup/kofa/browser/pages.py:2180
     2296#: waeup/kofa/browser/pages.py:2209
     2297#: waeup/kofa/browser/pages.py:2277
     2298#: waeup/kofa/browser/pages.py:2282
     2299msgid "Add department"
     2300msgstr ""
     2301
     2302#: waeup/kofa/browser/pages.py:2189
     2303#: waeup/kofa/browser/viewlets.py:487
     2304msgid "Manage faculty"
     2305msgstr ""
     2306
     2307#: waeup/kofa/browser/pages.py:2194
     2308msgid "You are not allowed to remove entire departments."
     2309msgstr ""
     2310
     2311#: waeup/kofa/browser/pages.py:2229
     2312#: waeup/kofa/students/browser.py:267
     2313#: waeup/kofa/students/browser.py:309
     2314msgid "Find student(s)"
     2315msgstr ""
     2316
     2317#: waeup/kofa/browser/pages.py:2234
     2318msgid "Find students in "
     2319msgstr ""
     2320
     2321#: waeup/kofa/browser/pages.py:2268
     2322#: waeup/kofa/students/browser.py:297
     2323#: waeup/kofa/students/browser.py:341
     2324#: waeup/kofa/students/browser.py:3192
     2325#: waeup/kofa/students/browser.py:3493
     2326#: waeup/kofa/students/browser.py:3711
     2327msgid "No student found."
     2328msgstr ""
     2329
     2330#: waeup/kofa/browser/pages.py:2289
     2331msgid "The code chosen already exists in this faculty."
     2332msgstr ""
     2333
     2334#: waeup/kofa/browser/pages.py:2293
     2335#. Default: ""
     2336msgid "Department ${a} added."
     2337msgstr ""
     2338
     2339#: waeup/kofa/browser/pages.py:2315
     2340msgid "Courses and Certificates"
     2341msgstr ""
     2342
     2343#: waeup/kofa/browser/pages.py:2345
     2344#: waeup/kofa/browser/pages.py:2376
     2345msgid "Remove selected courses"
     2346msgstr ""
     2347
     2348#: waeup/kofa/browser/pages.py:2345
     2349#: waeup/kofa/browser/pages.py:2392
     2350#: waeup/kofa/browser/pages.py:2421
     2351#: waeup/kofa/browser/pages.py:2426
     2352msgid "Add course"
     2353msgstr ""
     2354
     2355#: waeup/kofa/browser/pages.py:2346
     2356#: waeup/kofa/browser/pages.py:2382
     2357msgid "Remove selected certificates"
     2358msgstr ""
     2359
     2360#: waeup/kofa/browser/pages.py:2346
     2361#: waeup/kofa/browser/pages.py:2397
     2362#: waeup/kofa/browser/pages.py:2463
     2363#: waeup/kofa/browser/pages.py:2468
     2364msgid "Add certificate"
     2365msgstr ""
     2366
     2367#: waeup/kofa/browser/pages.py:2356
     2368#: waeup/kofa/browser/viewlets.py:516
     2369msgid "Manage department"
     2370msgstr ""
     2371
     2372#: waeup/kofa/browser/pages.py:2385
     2373msgid "You are not allowed to remove certificates."
     2374msgstr ""
     2375
     2376#: waeup/kofa/browser/pages.py:2438
     2377msgid "A course with same code already exists: "
     2378msgstr ""
     2379
     2380#: waeup/kofa/browser/pages.py:2444
     2381#. Default: ""
     2382msgid "Course ${a} successfully created."
     2383msgstr ""
     2384
     2385#: waeup/kofa/browser/pages.py:2480
     2386msgid "A certificate with same code already exists: "
     2387msgstr ""
     2388
     2389#: waeup/kofa/browser/pages.py:2486
     2390#. Default: ""
     2391msgid "Certificate ${a} successfully created."
     2392msgstr ""
     2393
     2394#: waeup/kofa/browser/pages.py:2525
     2395#: waeup/kofa/browser/viewlets.py:565
     2396msgid "Edit course"
     2397msgstr ""
     2398
     2399#: waeup/kofa/browser/pages.py:2570
     2400#: waeup/kofa/students/browser.py:3696
     2401#: waeup/kofa/students/browser.py:3770
     2402#: waeup/kofa/students/browser.py:3811
     2403#: waeup/kofa/students/browser.py:3868
     2404msgid "Current academic session not set."
     2405msgstr ""
     2406
     2407#: waeup/kofa/browser/pages.py:2572
     2408msgid "No course ticket found."
     2409msgstr ""
     2410
     2411#: waeup/kofa/browser/pages.py:2575
     2412msgid "%s course ticket(s) updated."
     2413msgstr ""
     2414
     2415#: waeup/kofa/browser/pages.py:2610
     2416msgid "Edit certificate"
     2417msgstr ""
     2418
     2419#: waeup/kofa/browser/pages.py:2618
     2420#: waeup/kofa/browser/pages.py:2636
     2421#: waeup/kofa/browser/pages.py:2663
     2422#: waeup/kofa/browser/pages.py:2666
     2423msgid "Add certificate course"
     2424msgstr ""
     2425
     2426#: waeup/kofa/browser/pages.py:2619
     2427#: waeup/kofa/browser/pages.py:2631
     2428msgid "Remove selected certificate courses"
     2429msgstr ""
     2430
     2431#: waeup/kofa/browser/pages.py:2625
     2432#: waeup/kofa/browser/viewlets.py:698
     2433msgid "Manage certificate"
     2434msgstr ""
     2435
     2436#: waeup/kofa/browser/pages.py:2671
     2437#: waeup/kofa/browser/pages.py:2740
     2438msgid "The chosen certificate course is already part of this certificate."
     2439msgstr ""
     2440
     2441#: waeup/kofa/browser/pages.py:2675
     2442#. Default: ""
     2443msgid "certificate course ${a}_${b} added."
     2444msgstr ""
     2445
     2446#: waeup/kofa/browser/pages.py:2723
     2447#: waeup/kofa/browser/viewlets.py:730
     2448msgid "Edit certificate course"
     2449msgstr ""
     2450
     2451#: waeup/kofa/browser/pages.py:2771
     2452#: waeup/kofa/students/browser.py:3244
     2453msgid "The portal is in maintenance mode. Password request forms are temporarily disabled."
     2454msgstr ""
     2455
     2456#: waeup/kofa/browser/pages.py:2791
     2457msgid "This is not a valid email address."
     2458msgstr ""
     2459
     2460#: waeup/kofa/browser/pages.py:2800
     2461msgid "Send user a new password"
     2462msgstr ""
     2463
     2464#: waeup/kofa/browser/pages.py:2801
     2465msgid "Send me a new password"
     2466msgstr ""
     2467
     2468#: waeup/kofa/browser/pages.py:2839
     2469#: waeup/kofa/applicants/browser_templates/createallstudentspage.pt:17
     2470msgid "No record found."
     2471msgstr ""
     2472
     2473#: waeup/kofa/browser/pages.py:2853
     2474#: waeup/kofa/students/browser.py:3321
     2475msgid "You have successfully requested a password for the"
     2476msgstr ""
     2477
     2478#: waeup/kofa/browser/pages.py:2857
     2479#. Default: ""
     2480msgid "An email with your user name and password has been sent to ${a}."
     2481msgstr ""
     2482
     2483#: waeup/kofa/browser/pages.py:290
     2484msgid "Sorry, another export job is running. Please try again later."
     2485msgstr ""
     2486
     2487#: waeup/kofa/browser/pages.py:345
     2488#: waeup/kofa/browser/viewlets.py:267
     2489#: waeup/kofa/browser/templates/staffsitelayout.pt:40
     2490#: waeup/kofa/browser/templates/studentsitelayout.pt:39
     2491msgid "Login"
     2492msgstr ""
     2493
     2494#: waeup/kofa/browser/pages.py:355
     2495msgid "The portal is in maintenance mode and authentication (login) temporarily disabled."
     2496msgstr ""
     2497
     2498#: waeup/kofa/browser/pages.py:361
     2499msgid "You logged in."
     2500msgstr ""
     2501
     2502#: waeup/kofa/browser/pages.py:387
     2503msgid "Your personal data record is outdated. Please update."
     2504msgstr ""
     2505
     2506#: waeup/kofa/browser/pages.py:416
     2507msgid "The portal is in maintenance mode. You can't login!"
     2508msgstr ""
     2509
     2510#: waeup/kofa/browser/pages.py:434
     2511msgid "Your account has been temporarily deactivated."
     2512msgstr ""
     2513
     2514#: waeup/kofa/browser/pages.py:440
     2515msgid "Your account has been temporarily deactivated because your parents have logged in."
     2516msgstr ""
     2517
     2518#: waeup/kofa/browser/pages.py:449
     2519msgid "Your account has been deactivated."
     2520msgstr ""
     2521
     2522#: waeup/kofa/browser/pages.py:468
     2523msgid "Your user name and password are correct but your password is not considered secure. "
     2524msgstr ""
     2525
     2526#: waeup/kofa/browser/pages.py:472
     2527msgid " Your account has been temporarily deactivated. Please request a new password."
     2528msgstr ""
     2529
     2530#: waeup/kofa/browser/pages.py:479
     2531msgid "Your user name and password are correct but your account has been temporarily deactivated."
     2532msgstr ""
     2533
     2534#: waeup/kofa/browser/pages.py:484
     2535msgid "You entered invalid credentials."
     2536msgstr ""
     2537
     2538#: waeup/kofa/browser/pages.py:499
     2539msgid "You have been logged out. Thanks for using WAeUP Kofa!"
     2540msgstr ""
     2541
     2542#: waeup/kofa/browser/pages.py:541
     2543#. Default: ""
     2544msgid "Contact ${a}"
     2545msgstr ""
     2546
     2547#: waeup/kofa/browser/pages.py:547
     2548#: waeup/kofa/browser/pages.py:985
     2549msgid "Send message now"
     2550msgstr ""
     2551
     2552#: waeup/kofa/browser/pages.py:566
     2553#: waeup/kofa/browser/pages.py:606
     2554#: waeup/kofa/browser/pages.py:1002
     2555#: waeup/kofa/students/browser.py:524
     2556msgid "Your message has been sent."
     2557msgstr ""
     2558
     2559#: waeup/kofa/browser/pages.py:581
     2560msgid "The portal is in maintenance mode. The contact form is temporarily disabled."
     2561msgstr ""
     2562
     2563#: waeup/kofa/browser/pages.py:593
     2564msgid "Send now"
     2565msgstr ""
     2566
     2567#: waeup/kofa/browser/pages.py:608
     2568msgid "A smtp server error occurred."
     2569msgstr ""
     2570
     2571#: waeup/kofa/browser/pages.py:633
     2572msgid "<h1>Welcome to WAeUP.Kofa</h1>"
     2573msgstr ""
     2574
     2575#: waeup/kofa/browser/pages.py:744
     2576msgid "Sources & Vocabularies"
     2577msgstr ""
     2578
     2579#: waeup/kofa/browser/pages.py:758
     2580msgid "Available Processors (Importers)"
     2581msgstr ""
     2582
     2583#: waeup/kofa/browser/pages.py:838
     2584#: waeup/kofa/documents/viewlets.py:60
     2585#: waeup/kofa/documents/viewlets.py:79
     2586#: waeup/kofa/hostels/browser.py:308
     2587#: waeup/kofa/students/viewlets.py:194
     2588#: waeup/kofa/students/viewlets.py:285
     2589#: waeup/kofa/students/viewlets.py:364
     2590#: waeup/kofa/students/viewlets.py:382
     2591#: waeup/kofa/students/viewlets.py:413
     2592#: waeup/kofa/students/viewlets.py:511
     2593msgid "Manage"
     2594msgstr ""
     2595
     2596#: waeup/kofa/browser/pages.py:839
     2597#: waeup/kofa/browser/viewlets.py:193
     2598msgid "Remove"
     2599msgstr ""
     2600
     2601#: waeup/kofa/browser/pages.py:847
     2602#. Default: ""
     2603msgid "User account ${a} successfully deleted."
     2604msgstr ""
     2605
     2606#: waeup/kofa/browser/pages.py:884
     2607#: waeup/kofa/browser/pages.py:886
     2608#: waeup/kofa/browser/viewlets.py:736
     2609msgid "Add officer"
     2610msgstr ""
     2611
     2612#: waeup/kofa/browser/pages.py:908
     2613#. Default: ""
     2614msgid "User account ${a} successfully added."
     2615msgstr ""
     2616
     2617#: waeup/kofa/browser/pages.py:932
     2618#. Default: ""
     2619msgid "Edit officer ${a}"
     2620msgstr ""
     2621
     2622#: waeup/kofa/browser/pages.py:966
     2623msgid "User settings have been saved."
     2624msgstr ""
     2625
     2626#: waeup/kofa/browser/pages.py:983
     2627#: waeup/kofa/students/browser.py:505
     2628#. Default: ""
     2629msgid "Send message to ${a}"
     2630msgstr ""
     2631
     2632#: waeup/kofa/browser/pdf.py:160
     2633msgid "Date:"
     2634msgstr ""
     2635
     2636#: waeup/kofa/browser/pdf.py:211
     2637#: waeup/kofa/browser/pdf.py:476
     2638#: waeup/kofa/browser/pdf.py:486
     2639#: waeup/kofa/browser/templates/datacenterimport1page.pt:16
     2640#: waeup/kofa/browser/templates/datacenterlogspage.pt:12
     2641msgid "Date"
     2642msgstr ""
     2643
     2644#: waeup/kofa/browser/pdf.py:537
     2645#. Default: ""
     2646msgid "${footer_text} Page ${num1} of ${num2}"
     2647msgstr ""
     2648
     2649#: waeup/kofa/browser/pdf.py:809
     2650#: waeup/kofa/browser/pdf.py:905
     2651#. Default: ""
     2652msgid "Date: ${a}"
     2653msgstr ""
     2654
     2655#: waeup/kofa/browser/reports.py:142
     2656msgid "Create report"
     2657msgstr ""
     2658
     2659#: waeup/kofa/browser/reports.py:150
     2660msgid "Currently, new reports cannot be created due to high system load. Please try again later."
     2661msgstr ""
     2662
     2663#: waeup/kofa/browser/reports.py:90
     2664msgid "Unknown"
     2665msgstr ""
     2666
     2667#: waeup/kofa/browser/templates/certificatecoursepage.pt:10
     2668msgid "Course Code:"
     2669msgstr ""
     2670
     2671#: waeup/kofa/browser/templates/certificatecoursepage.pt:14
     2672msgid "Course Title:"
     2673msgstr ""
     2674
     2675#: waeup/kofa/browser/templates/certificatecoursepage.pt:18
     2676msgid "Provided by:"
     2677msgstr ""
     2678
     2679#: waeup/kofa/browser/templates/certificatecoursepage.pt:26
     2680msgid "Level:"
     2681msgstr ""
     2682
     2683#: waeup/kofa/browser/templates/certificatecoursepage.pt:30
     2684msgid "Course Category:"
     2685msgstr ""
     2686
     2687#: waeup/kofa/browser/templates/certificatecoursepage.pt:34
     2688msgid "Required course:"
     2689msgstr ""
     2690
     2691#: waeup/kofa/browser/templates/certificatecoursepage.pt:6
     2692msgid "Code:"
     2693msgstr ""
     2694
     2695#: waeup/kofa/browser/templates/certificatemanagepage.pt:9
     2696msgid "Certificate Courses"
     2697msgstr ""
     2698
     2699#: waeup/kofa/browser/templates/certificatepage.pt:29
     2700#: waeup/kofa/browser/templates/certificatemanagepage.pt:39
     2701msgid "Semester"
     2702msgstr ""
     2703
     2704#: waeup/kofa/browser/templates/certificatepage.pt:30
     2705#: waeup/kofa/browser/templates/certificatemanagepage.pt:40
     2706msgid "Cert. Course"
     2707msgstr ""
     2708
     2709#: waeup/kofa/browser/templates/certificatepage.pt:31
     2710#: waeup/kofa/browser/templates/certificatemanagepage.pt:41
     2711msgid "Dep. Course"
     2712msgstr ""
     2713
     2714#: waeup/kofa/browser/templates/certificatepage.pt:33
     2715#: waeup/kofa/browser/templates/certificatemanagepage.pt:43
     2716msgid "Course Cat."
     2717msgstr ""
     2718
     2719#: waeup/kofa/browser/templates/changepw.pt:10
     2720#. Default: "Enter the email address stored in Kofa. You can't change your email address here. If you've forgotten your email address or the email address stored in Kofa is wrong or no longer valid, use the enquiries form to request a change of address."
     2721msgid "email_address_problem"
     2722msgstr ""
     2723
     2724#: waeup/kofa/browser/templates/configurationmanagepage.pt:24
     2725msgid "expired"
     2726msgstr ""
     2727
     2728#: waeup/kofa/browser/templates/configurationmanagepage.pt:5
     2729msgid "Site Settings"
     2730msgstr ""
     2731
     2732#: waeup/kofa/browser/templates/configurationmanagepage.pt:9
     2733msgid "Session Configurations"
     2734msgstr ""
     2735
     2736#: waeup/kofa/browser/templates/datacenterexportpage.pt:1
     2737msgid "Here you can create CSV files from parts of portal data except student data. Please pick the type of objects you want to export from the selection below. The file will be generated and then be made available for you to download in the table below. Files can only be downloaded within 24 hours after generation. The download link disappears afterwards."
     2738msgstr ""
     2739
     2740#: waeup/kofa/browser/templates/datacenterexportpage.pt:40
     2741msgid "Student data exports have to be further configured. You can either refine the results by <a href=\"@@exportconfig\">selecting certain export parameters</a> or by <a href=\"@@exportselected\">entering a set of student ids or matric numbers</a>."
     2742msgstr ""
     2743
     2744#: waeup/kofa/browser/templates/datacenterexportpage.pt:88
     2745msgid "Download"
     2746msgstr ""
     2747
     2748#: waeup/kofa/browser/templates/datacenterfinishedpage.pt:11
     2749#: waeup/kofa/browser/templates/datacenterpage.pt:19
     2750msgid "Upload Date"
     2751msgstr ""
     2752
     2753#: waeup/kofa/browser/templates/datacenterfinishedpage.pt:3
     2754msgid "Find below the last ${count} imports. The files contain the imported datasets."
     2755msgstr ""
     2756
     2757#: waeup/kofa/browser/templates/datacenterimport1page.pt:1
     2758msgid "Step 1"
     2759msgstr ""
     2760
     2761#: waeup/kofa/browser/templates/datacenterimport1page.pt:13
     2762msgid "Filename"
     2763msgstr ""
     2764
     2765#: waeup/kofa/browser/templates/datacenterimport1page.pt:14
     2766#: waeup/kofa/browser/templates/datacenterfinishedpage.pt:10
     2767#: waeup/kofa/browser/templates/datacenterpage.pt:18
     2768msgid "Datasets"
     2769msgstr ""
     2770
     2771#: waeup/kofa/browser/templates/datacenterimport1page.pt:15
     2772msgid "Size"
     2773msgstr ""
     2774
     2775#: waeup/kofa/browser/templates/datacenterimport1page.pt:2
     2776msgid "Using batch processing you can mass-create, mass-update, or mass-remove datasets from the database using CSV files."
     2777msgstr ""
     2778
     2779#: waeup/kofa/browser/templates/datacenterimport1page.pt:21
     2780msgid "Select"
     2781msgstr ""
     2782
     2783#: waeup/kofa/browser/templates/datacenterimport1page.pt:6
     2784msgid "Please select a file for processing from the list below."
     2785msgstr ""
     2786
     2787#: waeup/kofa/browser/templates/datacenterimport2page.pt:1
     2788msgid "Step 2"
     2789msgstr ""
     2790
     2791#: waeup/kofa/browser/templates/datacenterimport2page.pt:14
     2792#: waeup/kofa/browser/templates/datacenterimport3page.pt:36
     2793msgid "Header"
     2794msgstr ""
     2795
     2796#: waeup/kofa/browser/templates/datacenterimport2page.pt:15
     2797msgid "Sample Record 1"
     2798msgstr ""
     2799
     2800#: waeup/kofa/browser/templates/datacenterimport2page.pt:16
     2801msgid "Sample Record 2"
     2802msgstr ""
     2803
     2804#: waeup/kofa/browser/templates/datacenterimport2page.pt:17
     2805msgid "Sample Record 3"
     2806msgstr ""
     2807
     2808#: waeup/kofa/browser/templates/datacenterimport2page.pt:39
     2809msgid "Mode:"
     2810msgstr ""
     2811
     2812#: waeup/kofa/browser/templates/datacenterimport2page.pt:8
     2813msgid "Please select a file-processor and a processing-mode from the selections below."
     2814msgstr ""
     2815
     2816#: waeup/kofa/browser/templates/datacenterimport3page.pt:1
     2817msgid "Header fields OK"
     2818msgstr ""
     2819
     2820#: waeup/kofa/browser/templates/datacenterimport3page.pt:37
     2821msgid "change to"
     2822msgstr ""
     2823
     2824#: waeup/kofa/browser/templates/datacenterimport3page.pt:38
     2825msgid "Sample Record"
     2826msgstr ""
     2827
     2828#: waeup/kofa/browser/templates/datacenterimport3page.pt:6
     2829msgid "Step 3"
     2830msgstr ""
     2831
     2832#: waeup/kofa/browser/templates/datacenterimport3page.pt:8
     2833msgid "Eventually modify headerfields of import file below."
     2834msgstr ""
     2835
     2836#: waeup/kofa/browser/templates/datacenterimport4page.pt:1
     2837msgid "Step 4"
     2838msgstr ""
     2839
     2840#: waeup/kofa/browser/templates/datacenterimport4page.pt:13
     2841#: waeup/kofa/browser/templates/datacenterimport3page.pt:24
     2842msgid "Processing mode:"
     2843msgstr ""
     2844
     2845#: waeup/kofa/browser/templates/datacenterimport4page.pt:2
     2846msgid "Batch processing finished."
     2847msgstr ""
     2848
     2849#: waeup/kofa/browser/templates/datacenterlogspage.pt:2
     2850msgid "Currently no log files are available."
     2851msgstr ""
     2852
     2853#: waeup/kofa/browser/templates/datacentermanagepage.pt:5
     2854msgid "Storage path"
     2855msgstr ""
     2856
     2857#: waeup/kofa/browser/templates/datacenterpage.pt:1
     2858msgid "The data center helps you to manage portal data. You can upload CSV files here, which will be available for import afterwards."
     2859msgstr ""
     2860
     2861#: waeup/kofa/browser/templates/datacenterpage.pt:7
     2862msgid "Storage path:"
     2863msgstr ""
     2864
     2865#: waeup/kofa/browser/templates/datacenteruploadpage.pt:1
     2866msgid "Before uploading a file, check that your file header corresponds with the header format of the selected processor:"
     2867msgstr ""
     2868
     2869#: waeup/kofa/browser/templates/datacenteruploadpage.pt:19
     2870msgid "Many importer fields are of type 'Choice' which means only definied keywords are allowed:"
     2871msgstr ""
     2872
     2873#: waeup/kofa/browser/templates/datacenteruploadpage.pt:24
     2874msgid "View choices"
     2875msgstr ""
     2876
     2877#: waeup/kofa/browser/templates/datacenteruploadpage.pt:41
     2878msgid "File:"
     2879msgstr ""
     2880
     2881#: waeup/kofa/browser/templates/datacenteruploadpage.pt:57
     2882msgid "Processor:"
     2883msgstr ""
     2884
     2885#: waeup/kofa/browser/templates/datacenteruploadpage.pt:6
     2886msgid "View available processors (importers)"
     2887msgstr ""
     2888
     2889#: waeup/kofa/browser/templates/datacenteruploadpage.pt:70
     2890msgid "Import Mode:"
     2891msgstr ""
     2892
     2893#: waeup/kofa/browser/templates/datacenteruploadpage.pt:92
     2894msgid "After file upload click the 'Process data' button and proceed up to import step 3. Verify that the data format meets all the import criteria and requirements of the processor."
     2895msgstr ""
     2896
     2897#: waeup/kofa/browser/templates/datacenteruploadpage.pt:98
     2898msgid "Import managers will be automatically informed by email after file upload."
     2899msgstr ""
     2900
     2901#: waeup/kofa/browser/templates/default_waeup_display_form.pt:6
     2902msgid "Uploaded Files"
     2903msgstr ""
     2904
     2905#: waeup/kofa/browser/templates/fileupload.pt:25
     2906msgid "Select new file&hellip; ${input_name}"
     2907msgstr ""
     2908
     2909#: waeup/kofa/browser/templates/loginpage.pt:10
     2910msgid "Password"
     2911msgstr ""
     2912
     2913#: waeup/kofa/browser/templates/loginpage.pt:13
     2914msgid "Notice: User names, Ids and passwords are case sensitive."
     2915msgstr ""
     2916
     2917#: waeup/kofa/browser/templates/loginpage.pt:20
     2918#. Default: "Don't forget to logout or exit your browser when you're done. If you are having trouble logging in, make sure to enable cookies in your web browser."
     2919msgid "login_trouble1"
     2920msgstr ""
     2921
     2922#: waeup/kofa/browser/templates/loginpage.pt:23
     2923#. Default: "You don't have an account because you are a fresh student, or your student record has just been created? Acquire a Password Activation Code (PWD) and inititialize your student account <strong><a href=\"setpassword\"> here</a></strong>."
     2924msgid "login_trouble2"
     2925msgstr ""
     2926
     2927#: waeup/kofa/browser/templates/loginpage.pt:28
     2928#. Default: "You don't have an account because you are a fresh student, or your student record has just been created? Inititialize your student account <strong><a href=\"requestpw\"> here</a></strong>."
     2929msgid "login_trouble3"
     2930msgstr ""
     2931
     2932#: waeup/kofa/browser/templates/loginpage.pt:32
     2933#. Default: "Or simply forgot your student id, applicant id or password? Then request a new password <strong><a href=\"changepw\"> here</a></strong>."
     2934msgid "login_trouble4"
     2935msgstr ""
     2936
     2937#: waeup/kofa/browser/templates/loginpage.pt:35
     2938#. Default: "You are student parents and want to monitor study progress of your child? Then request a temporary parents password <strong><a href=\"requestppw\"> here</a></strong>. Prerequisite for getting access is that you have a valid email address and that this address has been entered by the student into the parents' email address field."
     2939msgid "login_trouble5"
     2940msgstr ""
     2941
     2942#: waeup/kofa/browser/templates/loginpage.pt:4
     2943msgid "User Name or Id"
     2944msgstr ""
     2945
     2946#: waeup/kofa/browser/templates/mycourses.pt:2
     2947msgid "Academic Session: <span>${DYNAMIC_CONTENT}</span>"
     2948msgstr ""
     2949
     2950#: waeup/kofa/browser/templates/myrolespage.pt:1
     2951msgid "My Portal Roles:"
     2952msgstr ""
     2953
     2954#: waeup/kofa/browser/templates/myrolespage.pt:11
     2955msgid "My Local Roles:"
     2956msgstr ""
     2957
     2958#: waeup/kofa/browser/templates/mytranscriptrequests.pt:1
     2959msgid "Transcripts to be validated"
     2960msgstr ""
     2961
     2962#: waeup/kofa/browser/templates/mytranscriptrequests.pt:12
     2963#: waeup/kofa/browser/templates/mytranscriptrequests.pt:43
     2964msgid "Department"
     2965msgstr ""
     2966
     2967#: waeup/kofa/browser/templates/mytranscriptrequests.pt:32
     2968msgid "Transcripts to be signed and released"
     2969msgstr ""
     2970
     2971#: waeup/kofa/browser/templates/notfound.pt:1
     2972msgid "The page you are trying to access is not available."
     2973msgstr ""
     2974
     2975#: waeup/kofa/browser/templates/notfound.pt:12
     2976msgid "You might be trying to access a non-existing page."
     2977msgstr ""
     2978
     2979#: waeup/kofa/browser/templates/notfound.pt:6
     2980msgid "Please note the following:"
     2981msgstr ""
     2982
     2983#: waeup/kofa/browser/templates/notfound.pt:9
     2984msgid "You might have misspelled the URL."
     2985msgstr ""
     2986
     2987#: waeup/kofa/browser/templates/processorsoverview.pt:29
     2988msgid "Processor"
     2989msgstr ""
     2990
     2991#: waeup/kofa/browser/templates/processorsoverview.pt:30
     2992msgid "Required Schema Fields"
     2993msgstr ""
     2994
     2995#: waeup/kofa/browser/templates/processorsoverview.pt:31
     2996msgid "Optional Schema Fields"
     2997msgstr ""
     2998
     2999#: waeup/kofa/browser/templates/processorsoverview.pt:32
     3000msgid "Non-Schema Fields"
     3001msgstr ""
     3002
     3003#: waeup/kofa/browser/templates/processorsoverview.pt:39
     3004msgid "Download CSV File Template"
     3005msgstr ""
     3006
     3007#: waeup/kofa/browser/templates/processorsoverview.pt:84
     3008msgid "Close"
     3009msgstr ""
     3010
     3011#: waeup/kofa/browser/templates/reportscontainercreate.pt:2
     3012msgid "Here you can create reports representing portal data. Please pick the type of report you want to create from the selection below. Afterwards you can configure the report (do the settings). The report data will be calculated and then made available for you to view/download."
     3013msgstr ""
     3014
     3015#: waeup/kofa/browser/templates/reportscontainerpage.pt:4
     3016msgid "Report Number"
     3017msgstr ""
     3018
     3019#: waeup/kofa/browser/templates/reportscontainerpage.pt:5
     3020msgid "Description"
     3021msgstr ""
     3022
     3023#: waeup/kofa/browser/templates/reportscontainerpage.pt:52
     3024msgid "Create new report"
     3025msgstr ""
     3026
     3027#: waeup/kofa/browser/templates/source.pt:22
     3028msgid "Value"
     3029msgstr ""
     3030
     3031#: waeup/kofa/browser/templates/staffsitelayout.pt:148
     3032msgid "Kofa Docs for this page"
     3033msgstr ""
     3034
     3035#: waeup/kofa/browser/templates/staffsitelayout.pt:46
     3036#: waeup/kofa/browser/templates/studentsitelayout.pt:45
     3037msgid "Contact"
     3038msgstr ""
     3039
     3040#: waeup/kofa/browser/templates/staffsitelayout.pt:52
     3041#: waeup/kofa/browser/templates/studentsitelayout.pt:51
     3042msgid "Logout"
     3043msgstr ""
     3044
     3045#: waeup/kofa/browser/templates/staffsitelayout.pt:6
     3046#: waeup/kofa/browser/templates/studentsitelayout.pt:4
     3047msgid "WAeUP.Kofa - Student Management System"
     3048msgstr ""
     3049
     3050#: waeup/kofa/browser/templates/staffsitelayout.pt:68
     3051msgid "M A I N T E N A N C E &nbsp;&nbsp;&nbsp; M O D E &nbsp;&nbsp;&nbsp; O N"
     3052msgstr ""
     3053
     3054#: waeup/kofa/browser/templates/usereditformpage.pt:1
     3055#. Default: "<strong>ATTENTION:</strong> This account has been suspended. The officer can't login."
     3056msgid "officer_suspended_warning"
     3057msgstr ""
     3058
     3059#: waeup/kofa/browser/viewlets.py:1031
     3060msgid "Institution Types"
     3061msgstr ""
     3062
     3063#: waeup/kofa/browser/viewlets.py:1054
     3064msgid "Academic Sessions"
     3065msgstr ""
     3066
     3067#: waeup/kofa/browser/viewlets.py:1062
     3068msgid "Course Levels"
     3069msgstr ""
     3070
     3071#: waeup/kofa/browser/viewlets.py:1070
     3072#: waeup/kofa/students/browser_templates/studycoursemanagepage.pt:12
     3073msgid "Study Levels"
     3074msgstr ""
     3075
     3076#: waeup/kofa/browser/viewlets.py:1078
     3077msgid "Study Modes"
     3078msgstr ""
     3079
     3080#: waeup/kofa/browser/viewlets.py:1086
     3081msgid "Degrees"
     3082msgstr ""
     3083
     3084#: waeup/kofa/browser/viewlets.py:1094
     3085#: waeup/kofa/students/browser_templates/exportconfig.pt:71
     3086msgid "Payment Categories"
     3087msgstr ""
     3088
     3089#: waeup/kofa/browser/viewlets.py:1102
     3090msgid "Application Types (Prefixes)"
     3091msgstr ""
     3092
     3093#: waeup/kofa/browser/viewlets.py:111
     3094#: waeup/kofa/browser/viewlets.py:173
     3095#: waeup/kofa/students/browser.py:1278
     3096#: waeup/kofa/students/viewlets.py:373
     3097#: waeup/kofa/students/viewlets.py:572
     3098#: waeup/kofa/students/viewlets.py:625
     3099msgid "Edit"
     3100msgstr ""
     3101
     3102#: waeup/kofa/browser/viewlets.py:1110
     3103msgid "Application Categories"
     3104msgstr ""
     3105
     3106#: waeup/kofa/browser/viewlets.py:1120
     3107msgid "Student Registration States"
     3108msgstr ""
     3109
     3110#: waeup/kofa/browser/viewlets.py:1130
     3111msgid "Verdicts"
     3112msgstr ""
     3113
     3114#: waeup/kofa/browser/viewlets.py:1140
     3115msgid "Exam Subjects"
     3116msgstr ""
     3117
     3118#: waeup/kofa/browser/viewlets.py:1150
     3119msgid "Exam Grades"
     3120msgstr ""
     3121
     3122#: waeup/kofa/browser/viewlets.py:1160
     3123msgid "Sex"
     3124msgstr ""
     3125
     3126#: waeup/kofa/browser/viewlets.py:1170
     3127msgid "Disable Payment Groups"
     3128msgstr ""
     3129
     3130#: waeup/kofa/browser/viewlets.py:183
     3131msgid "Add"
     3132msgstr ""
     3133
     3134#: waeup/kofa/browser/viewlets.py:306
     3135msgid "Any link text"
     3136msgstr ""
     3137
     3138#: waeup/kofa/browser/viewlets.py:442
     3139#: waeup/kofa/students/viewlets.py:185
     3140msgid "Send email"
     3141msgstr ""
     3142
     3143#: waeup/kofa/browser/viewlets.py:451
     3144msgid "Edit settings"
     3145msgstr ""
     3146
     3147#: waeup/kofa/browser/viewlets.py:469
     3148#: waeup/kofa/browser/viewlets.py:508
     3149#: waeup/kofa/browser/viewlets.py:539
     3150#: waeup/kofa/browser/viewlets.py:588
     3151#: waeup/kofa/browser/viewlets.py:721
     3152msgid "Export student data"
     3153msgstr ""
     3154
     3155#: waeup/kofa/browser/viewlets.py:478
     3156msgid "Search academic section"
     3157msgstr ""
     3158
     3159#: waeup/kofa/browser/viewlets.py:495
     3160#: waeup/kofa/students/browser.py:266
     3161msgid "Find students"
     3162msgstr ""
     3163
     3164#: waeup/kofa/browser/viewlets.py:527
     3165#: waeup/kofa/browser/viewlets.py:576
     3166#: waeup/kofa/browser/viewlets.py:709
     3167msgid "Show students"
     3168msgstr ""
     3169
     3170#: waeup/kofa/browser/viewlets.py:551
     3171msgid "Clear all students"
     3172msgstr ""
     3173
     3174#: waeup/kofa/browser/viewlets.py:557
     3175msgid "'All students, who requested clearance in this department, will be cleared. Are you sure?'"
     3176msgstr ""
     3177
     3178#: waeup/kofa/browser/viewlets.py:616
     3179#. Default: ""
     3180msgid "Update session ${a} scores"
     3181msgstr ""
     3182
     3183#: waeup/kofa/browser/viewlets.py:626
     3184msgid "Download course tickets overview"
     3185msgstr ""
     3186
     3187#: waeup/kofa/browser/viewlets.py:638
     3188msgid "Download attendance sheet"
     3189msgstr ""
     3190
     3191#: waeup/kofa/browser/viewlets.py:666
     3192#. Default: ""
     3193msgid "Update session ${a} credits"
     3194msgstr ""
     3195
     3196#: waeup/kofa/browser/viewlets.py:674
     3197msgid "All current session (%s/%s) course tickets of students, who paid school fee but not yet registered their courses, will be updated.\\n\\nYou really want to update?"
     3198msgstr ""
     3199
     3200#: waeup/kofa/browser/viewlets.py:689
     3201msgid "Download csv file (editable scores only)"
     3202msgstr ""
     3203
     3204#: waeup/kofa/browser/viewlets.py:745
     3205msgid "Show logs"
     3206msgstr ""
     3207
     3208#: waeup/kofa/browser/viewlets.py:754
     3209msgid "Upload data"
     3210msgstr ""
     3211
     3212#: waeup/kofa/browser/viewlets.py:763
     3213msgid "Process data"
     3214msgstr ""
     3215
     3216#: waeup/kofa/browser/viewlets.py:772
     3217msgid "Export data"
     3218msgstr ""
     3219
     3220#: waeup/kofa/browser/viewlets.py:781
     3221msgid "View processed files"
     3222msgstr ""
     3223
     3224#: waeup/kofa/browser/viewlets.py:790
     3225msgid "Switch maintenance mode"
     3226msgstr ""
     3227
     3228#: waeup/kofa/browser/viewlets.py:796
     3229msgid "'In maintenance mode no other user can login, and already logged-in users will be automatically logged out. You will be the only logged-in user and you can safely start any import. Please wait a few seconds before starting the import so that all running processes are finished. If the import is done, maintenance mode will be automatically disabled. \\n\\nYou really want to enable maintenance mode?'"
     3230msgstr ""
     3231
     3232#: waeup/kofa/browser/viewlets.py:877
     3233msgid "Enquiries"
     3234msgstr ""
     3235
     3236#: waeup/kofa/documents/batching.py:143
     3237msgid "Public PDF Document Processor"
     3238msgstr ""
     3239
     3240#: waeup/kofa/documents/batching.py:155
     3241msgid "Public HTML Document Processor"
     3242msgstr ""
     3243
     3244#: waeup/kofa/documents/batching.py:167
     3245msgid "Public REST Document Processor"
     3246msgstr ""
     3247
     3248#: waeup/kofa/documents/browser.py:101
     3249msgid "Remove selected documents"
     3250msgstr ""
     3251
     3252#: waeup/kofa/documents/browser.py:140
     3253msgid "The id chosen already exists."
     3254msgstr ""
     3255
     3256#: waeup/kofa/documents/browser.py:144
     3257#. Default: ""
     3258msgid "${a} added."
     3259msgstr ""
     3260
     3261#: waeup/kofa/documents/browser.py:211
     3262#: waeup/kofa/documents/fileviewlets.py:90
     3263msgid "The document requested has not yet been published."
     3264msgstr ""
     3265
     3266#: waeup/kofa/documents/browser.py:268
     3267msgid "Manage document "
     3268msgstr ""
     3269
     3270#: waeup/kofa/documents/browser.py:353
     3271msgid "Trigger document transition"
     3272msgstr ""
     3273
     3274#: waeup/kofa/documents/browser.py:371
     3275msgid "Apply now"
     3276msgstr ""
     3277
     3278#: waeup/kofa/documents/browser.py:379
     3279msgid "Transition '%s' executed."
     3280msgstr ""
     3281
     3282#: waeup/kofa/documents/browser.py:62
     3283#: waeup/kofa/documents/browser.py:82
     3284#: waeup/kofa/documents/viewlets.py:49
     3285#: waeup/kofa/documents/browser_templates/containermanagepage.pt:3
     3286msgid "Documents"
     3287msgstr ""
     3288
     3289#: waeup/kofa/documents/browser.py:94
     3290msgid "Manage document section"
     3291msgstr ""
     3292
     3293#: waeup/kofa/documents/browser.py:96
     3294#: waeup/kofa/documents/browser.py:119
     3295#: waeup/kofa/documents/browser.py:129
     3296msgid "Add document"
     3297msgstr ""
     3298
     3299#: waeup/kofa/documents/browser_templates/containerpage.pt:1
     3300#: waeup/kofa/browser/templates/facultypage.pt:1
     3301msgid "There are no subobjects registered yet."
     3302msgstr ""
     3303
     3304#: waeup/kofa/documents/browser_templates/documentaddform.pt:7
     3305msgid "Document Type"
     3306msgstr ""
     3307
     3308#: waeup/kofa/documents/browser_templates/documentmanagepage.pt:9
     3309msgid "Files"
     3310msgstr ""
     3311
     3312#: waeup/kofa/documents/browser_templates/documentpage.pt:16
     3313#: waeup/kofa/documents/browser_templates/htmldocumentpage.pt:16
     3314msgid "Document Type:"
     3315msgstr ""
     3316
     3317#: waeup/kofa/documents/browser_templates/documentpage.pt:25
     3318msgid "Connected Files"
     3319msgstr ""
     3320
     3321#: waeup/kofa/documents/browser_templates/htmldocumentmanagepage.pt:39
     3322#: waeup/kofa/documents/browser_templates/documentmanagepage.pt:50
     3323#: waeup/kofa/browser/templates/departmentmanagepage.pt:102
     3324#: waeup/kofa/browser/templates/coursemanagepage.pt:39
     3325#: waeup/kofa/browser/templates/facultymanagepage.pt:75
     3326#: waeup/kofa/browser/templates/certificatemanagepage.pt:95
     3327#: waeup/kofa/applicants/browser_templates/applicantsrootmanagepage.pt:93
     3328#: waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt:115
     3329msgid "Local Role"
     3330msgstr ""
     3331
     3332#: waeup/kofa/documents/browser_templates/htmldocumentmanagepage.pt:6
     3333#: waeup/kofa/documents/browser_templates/documentmanagepage.pt:6
     3334msgid "Metadata"
     3335msgstr ""
     3336
     3337#: waeup/kofa/documents/browser_templates/htmldocumentmanagepage.pt:9
     3338#: waeup/kofa/documents/browser_templates/documentmanagepage.pt:12
     3339#: waeup/kofa/browser/templates/departmentmanagepage.pt:15
     3340#: waeup/kofa/browser/templates/coursemanagepage.pt:9
     3341#: waeup/kofa/browser/templates/userscontainerpage.pt:7
     3342#: waeup/kofa/browser/templates/facultymanagepage.pt:16
     3343#: waeup/kofa/browser/templates/certificatemanagepage.pt:13
     3344#: waeup/kofa/applicants/browser_templates/applicantsrootmanagepage.pt:16
     3345#: waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt:17
     3346msgid "Local Roles"
     3347msgstr ""
     3348
     3349#: waeup/kofa/documents/browser_templates/htmldocumentpage.pt:25
     3350msgid "Content:"
     3351msgstr ""
     3352
     3353#: waeup/kofa/documents/browser_templates/htmldocumentpage.pt:33
     3354msgid "HTML Element:"
     3355msgstr ""
     3356
     3357#: waeup/kofa/documents/export.py:102
     3358msgid "Public PDF Documents"
     3359msgstr ""
     3360
     3361#: waeup/kofa/documents/export.py:111
     3362msgid "Public HTML Documents"
     3363msgstr ""
     3364
     3365#: waeup/kofa/documents/export.py:120
     3366msgid "Public REST Documents"
     3367msgstr ""
     3368
     3369#: waeup/kofa/documents/fileviewlets.py:43
     3370#: waeup/kofa/documents/fileviewlets.py:44
     3371msgid "PDF File"
     3372msgstr ""
     3373
     3374#: waeup/kofa/documents/fileviewlets.py:64
     3375#: waeup/kofa/documents/fileviewlets.py:65
     3376msgid "PDF Scan"
     3377msgstr ""
     3378
     3379#: waeup/kofa/documents/interfaces.py:50
     3380msgid "Document Id"
     3381msgstr ""
     3382
     3383#: waeup/kofa/documents/interfaces.py:56
     3384msgid "Document Title"
     3385msgstr ""
     3386
     3387#: waeup/kofa/documents/interfaces.py:82
     3388msgid "Multilingual content in HTML format"
     3389msgstr ""
     3390
     3391#: waeup/kofa/documents/interfaces.py:95
     3392msgid "Multilingual content in REST (reStructuredText) format"
     3393msgstr ""
     3394
     3395#: waeup/kofa/documents/utils.py:34
     3396msgid "published"
     3397msgstr ""
     3398
     3399#: waeup/kofa/documents/utils.py:38
     3400msgid "PDF Document"
     3401msgstr ""
     3402
     3403#: waeup/kofa/documents/utils.py:39
     3404msgid "HTML Document"
     3405msgstr ""
     3406
     3407#: waeup/kofa/documents/utils.py:40
     3408msgid "REST Document"
     3409msgstr ""
     3410
     3411#: waeup/kofa/documents/viewlets.py:69
     3412#: waeup/kofa/students/viewlets.py:345
     3413#: waeup/kofa/students/viewlets.py:355
     3414msgid "View"
     3415msgstr ""
     3416
     3417#: waeup/kofa/documents/viewlets.py:89
     3418msgid "Transition"
     3419msgstr ""
     3420
     3421#: waeup/kofa/documents/workflow.py:39
     3422msgid "Create document"
     3423msgstr ""
     3424
     3425#: waeup/kofa/documents/workflow.py:42
     3426msgid "Document created"
     3427msgstr ""
     3428
     3429#: waeup/kofa/documents/workflow.py:47
     3430msgid "Publish document"
     3431msgstr ""
     3432
     3433#: waeup/kofa/documents/workflow.py:50
     3434msgid "Document published"
     3435msgstr ""
     3436
     3437#: waeup/kofa/documents/workflow.py:55
     3438msgid "Retract documet"
     3439msgstr ""
     3440
     3441#: waeup/kofa/documents/workflow.py:58
     3442msgid "Document retracted"
     3443msgstr ""
     3444
     3445#: waeup/kofa/hostels/batching.py:42
     3446msgid "Hostel Processor"
     3447msgstr ""
     3448
     3449#: waeup/kofa/hostels/batching.py:95
     3450msgid "Bed Processor (update only)"
     3451msgstr ""
     3452
     3453#: waeup/kofa/hostels/browser.py:102
     3454msgid "Accommodation Section"
     3455msgstr ""
     3456
     3457#: waeup/kofa/hostels/browser.py:115
     3458#: waeup/kofa/hostels/browser.py:161
     3459msgid "Manage accommodation section"
     3460msgstr ""
     3461
     3462#: waeup/kofa/hostels/browser.py:123
     3463msgid "Bed statistics"
     3464msgstr ""
     3465
     3466#: waeup/kofa/hostels/browser.py:133
     3467msgid "Release all expired bed space allocations"
     3468msgstr ""
     3469
     3470#: waeup/kofa/hostels/browser.py:143
     3471msgid "'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.'"
     3472msgstr ""
     3473
     3474#: waeup/kofa/hostels/browser.py:164
     3475#: waeup/kofa/hostels/browser.py:186
     3476#: waeup/kofa/hostels/browser.py:269
     3477msgid "Add hostel"
     3478msgstr ""
     3479
     3480#: waeup/kofa/hostels/browser.py:165
     3481#: waeup/kofa/hostels/browser.py:191
     3482msgid "Clear all hostels"
     3483msgstr ""
     3484
     3485#: waeup/kofa/hostels/browser.py:194
     3486msgid "All hostels cleared."
     3487msgstr ""
     3488
     3489#: waeup/kofa/hostels/browser.py:205
     3490msgid "You can't change the booking session before clearing all hostels."
     3491msgstr ""
     3492
     3493#: waeup/kofa/hostels/browser.py:223
     3494msgid "Forbidden"
     3495msgstr ""
     3496
     3497#: waeup/kofa/hostels/browser.py:228
     3498msgid "Portal must be in maintenance mode for releasing expired bed allocations."
     3499msgstr ""
     3500
     3501#: waeup/kofa/hostels/browser.py:238
     3502#. Default: ""
     3503msgid "Successfully released ${a} beds."
     3504msgstr ""
     3505
     3506#: waeup/kofa/hostels/browser.py:241
     3507#: waeup/kofa/hostels/browser.py:418
     3508#. Default: ""
     3509msgid "Successfully released beds: ${a}"
     3510msgstr ""
     3511
     3512#: waeup/kofa/hostels/browser.py:244
     3513msgid "No bed released."
     3514msgstr ""
     3515
     3516#: waeup/kofa/hostels/browser.py:259
     3517msgid "Bed Statistics"
     3518msgstr ""
     3519
     3520#: waeup/kofa/hostels/browser.py:273
     3521msgid "Create hostel"
     3522msgstr ""
     3523
     3524#: waeup/kofa/hostels/browser.py:282
     3525msgid "The hostel already exists."
     3526msgstr ""
     3527
     3528#: waeup/kofa/hostels/browser.py:284
     3529msgid "Hostel created."
     3530msgstr ""
     3531
     3532#: waeup/kofa/hostels/browser.py:319
     3533msgid "Manage hostel"
     3534msgstr ""
     3535
     3536#: waeup/kofa/hostels/browser.py:322
     3537#: waeup/kofa/hostels/browser.py:338
     3538msgid "Update all beds"
     3539msgstr ""
     3540
     3541#: waeup/kofa/hostels/browser.py:323
     3542#: waeup/kofa/hostels/browser.py:366
     3543msgid "Switch reservation of selected beds"
     3544msgstr ""
     3545
     3546#: waeup/kofa/hostels/browser.py:324
     3547#: waeup/kofa/hostels/browser.py:400
     3548msgid "Release selected beds"
     3549msgstr ""
     3550
     3551#: waeup/kofa/hostels/browser.py:325
     3552#: waeup/kofa/hostels/browser.py:427
     3553msgid "Clear hostel"
     3554msgstr ""
     3555
     3556#: waeup/kofa/hostels/browser.py:339
     3557msgid "Attention: The updater removes all reservation flags of existing beds. You really want to update?"
     3558msgstr ""
     3559
     3560#: waeup/kofa/hostels/browser.py:344
     3561msgid "Portal must be in maintenance mode for bed updates."
     3562msgstr ""
     3563
     3564#: waeup/kofa/hostels/browser.py:352
     3565#. Default: ""
     3566msgid "${a} empty beds removed, ${b} beds added, ${c} occupied beds modified"
     3567msgstr ""
     3568
     3569#: waeup/kofa/hostels/browser.py:357
     3570#. Default: ""
     3571msgid "${a} empty beds removed, ${b} beds added, ${c} occupied beds modified (${d})"
     3572msgstr ""
     3573
     3574#: waeup/kofa/hostels/browser.py:391
     3575#. Default: ""
     3576msgid "Successfully switched ${a} beds."
     3577msgstr ""
     3578
     3579#: waeup/kofa/hostels/browser.py:394
     3580#. Default: ""
     3581msgid "Successfully switched beds: ${a}"
     3582msgstr ""
     3583
     3584#: waeup/kofa/hostels/browser.py:423
     3585msgid "No allocated bed selected."
     3586msgstr ""
     3587
     3588#: waeup/kofa/hostels/browser.py:430
     3589msgid "Hostel cleared."
     3590msgstr ""
     3591
     3592#: waeup/kofa/hostels/browser.py:443
     3593msgid "Allocate student"
     3594msgstr ""
     3595
     3596#: waeup/kofa/hostels/browser.py:450
     3597msgid "No valid student id."
     3598msgstr ""
     3599
     3600#: waeup/kofa/hostels/browser.py:65
     3601#: waeup/kofa/hostels/browser.py:75
     3602#: waeup/kofa/hostels/export.py:35
     3603#: waeup/kofa/hostels/browser_templates/containermanagepage.pt:13
     3604msgid "Hostels"
     3605msgstr ""
     3606
     3607#: waeup/kofa/hostels/browser.py:92
     3608#. Default: ""
     3609msgid "Block ${a}, Room ${b}, Bed ${c}"
     3610msgstr ""
     3611
     3612#: waeup/kofa/hostels/browser_templates/containermanagepage.pt:8
     3613#: waeup/kofa/browser/templates/departmentmanagepage.pt:6
     3614#: waeup/kofa/browser/templates/coursemanagepage.pt:6
     3615#: waeup/kofa/browser/templates/facultymanagepage.pt:6
     3616#: waeup/kofa/browser/templates/certificatemanagepage.pt:6
     3617#: waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt:7
     3618msgid "Settings"
     3619msgstr ""
     3620
     3621#: waeup/kofa/hostels/browser_templates/containerpage.pt:21
     3622#: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:40
     3623#: waeup/kofa/hostels/browser_templates/containermanagepage.pt:41
     3624#: waeup/kofa/documents/browser_templates/containerpage.pt:8
     3625#: waeup/kofa/documents/browser_templates/containermanagepage.pt:9
     3626#: waeup/kofa/browser/templates/userscontainerpage.pt:4
     3627msgid "Id"
     3628msgstr ""
     3629
     3630#: waeup/kofa/hostels/browser_templates/containerpage.pt:24
     3631msgid "Booked Beds"
     3632msgstr ""
     3633
     3634#: waeup/kofa/hostels/browser_templates/containerstatistics.pt:6
     3635msgid "Occupied"
     3636msgstr ""
     3637
     3638#: waeup/kofa/hostels/browser_templates/containerstatistics.pt:7
     3639msgid "Free"
     3640msgstr ""
     3641
     3642#: waeup/kofa/hostels/browser_templates/containerstatistics.pt:8
     3643msgid "Total"
     3644msgstr ""
     3645
     3646#: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:41
     3647#: waeup/kofa/documents/browser_templates/containerpage.pt:10
     3648#: waeup/kofa/documents/browser_templates/containermanagepage.pt:11
     3649#: waeup/kofa/browser/templates/searchpage.pt:22
     3650msgid "Type"
     3651msgstr ""
     3652
     3653#: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:42
     3654msgid "Number"
     3655msgstr ""
     3656
     3657#: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:43
     3658#: waeup/kofa/accesscodes/browser_templates/searchpage.pt:32
     3659msgid "Owner"
     3660msgstr ""
     3661
     3662#: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:61
     3663msgid "[allocate student]"
     3664msgstr ""
     3665
     3666#: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:7
     3667msgid "Hostel Data"
     3668msgstr ""
     3669
     3670#: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:71
     3671#: waeup/kofa/students/browser_templates/containermanagepage.pt:73
     3672#: waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt:81
     3673msgid "Select all"
     3674msgstr ""
     3675
     3676#: waeup/kofa/hostels/export.py:58
     3677#: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:12
     3678msgid "Beds"
     3679msgstr ""
     3680
     3681#: waeup/kofa/hostels/hostel.py:222
     3682msgid "unreserved"
     3683msgstr ""
     3684
     3685#: waeup/kofa/hostels/hostel.py:225
     3686msgid "reserved"
     3687msgstr ""
     3688
     3689#: waeup/kofa/hostels/interfaces.py:114
     3690msgid "Hostel Id"
     3691msgstr ""
     3692
     3693#: waeup/kofa/hostels/interfaces.py:118
     3694#: waeup/kofa/hostels/browser_templates/containerpage.pt:22
     3695#: waeup/kofa/hostels/browser_templates/containermanagepage.pt:43
     3696msgid "Sort Id"
     3697msgstr ""
     3698
     3699#: waeup/kofa/hostels/interfaces.py:125
     3700msgid "Hostel Name"
     3701msgstr ""
     3702
     3703#: waeup/kofa/hostels/interfaces.py:131
     3704msgid "Floors per Block"
     3705msgstr ""
     3706
     3707#: waeup/kofa/hostels/interfaces.py:137
     3708msgid "Rooms per Floor"
     3709msgstr ""
     3710
     3711#: waeup/kofa/hostels/interfaces.py:143
     3712msgid "Blocks for Female Students"
     3713msgstr ""
     3714
     3715#: waeup/kofa/hostels/interfaces.py:151
     3716msgid "Blocks for Male Students"
     3717msgstr ""
     3718
     3719#: waeup/kofa/hostels/interfaces.py:159
     3720msgid "Beds for Pre-Study Students"
     3721msgstr ""
     3722
     3723#: waeup/kofa/hostels/interfaces.py:167
     3724msgid "Beds for Fresh Students"
     3725msgstr ""
     3726
     3727#: waeup/kofa/hostels/interfaces.py:175
     3728msgid "Beds for Returning Students"
     3729msgstr ""
     3730
     3731#: waeup/kofa/hostels/interfaces.py:183
     3732msgid "Beds for Final Year Students"
     3733msgstr ""
     3734
     3735#: waeup/kofa/hostels/interfaces.py:191
     3736msgid "Beds without category"
     3737msgstr ""
     3738
     3739#: waeup/kofa/hostels/interfaces.py:199
     3740msgid "Special Handling"
     3741msgstr ""
     3742
     3743#: waeup/kofa/hostels/interfaces.py:206
     3744msgid "Rent"
     3745msgstr ""
     3746
     3747#: waeup/kofa/hostels/interfaces.py:216
     3748msgid "Female and male blocks overlap."
     3749msgstr ""
     3750
     3751#: waeup/kofa/hostels/interfaces.py:226
     3752msgid "Bed categories overlap."
     3753msgstr ""
     3754
     3755#: waeup/kofa/hostels/interfaces.py:259
     3756msgid "Bed Id"
     3757msgstr ""
     3758
     3759#: waeup/kofa/hostels/interfaces.py:265
     3760#: waeup/kofa/students/browser_templates/accommodationpage.pt:17
     3761msgid "Bed Type"
     3762msgstr ""
     3763
     3764#: waeup/kofa/hostels/interfaces.py:271
     3765msgid "Bed Number"
     3766msgstr ""
     3767
     3768#: waeup/kofa/hostels/interfaces.py:276
     3769msgid "Owner (Student)"
     3770msgstr ""
     3771
     3772#: waeup/kofa/hostels/interfaces.py:277
     3773msgid "Enter valid student id."
     3774msgstr ""
     3775
     3776#: waeup/kofa/hostels/interfaces.py:292
     3777msgid "Either student does not exist or student is not in accommodation session."
     3778msgstr ""
     3779
     3780#: waeup/kofa/hostels/interfaces.py:299
     3781#. Default: ""
     3782msgid "This student resides in bed ${a}."
     3783msgstr ""
     3784
     3785#: waeup/kofa/hostels/interfaces.py:48
     3786msgid "Hostel Allocation Start Date"
     3787msgstr ""
     3788
     3789#: waeup/kofa/hostels/interfaces.py:54
     3790msgid "Hostel Allocation Closing Date"
     3791msgstr ""
     3792
     3793#: waeup/kofa/hostels/interfaces.py:60
     3794msgid "Booking Session"
     3795msgstr ""
     3796
     3797#: waeup/kofa/hostels/interfaces.py:68
     3798msgid "Allowed States"
     3799msgstr ""
     3800
     3801#: waeup/kofa/hostels/interfaces.py:76
     3802msgid "Allocation Expiration Time (days)"
     3803msgstr ""
     3804
     3805#: waeup/kofa/hostels/interfaces.py:77
     3806msgid "Number of days after which allocation is being annulled"
     3807msgstr ""
     3808
     3809#: waeup/kofa/hostels/vocabularies.py:38
     3810msgid "Bed A"
     3811msgstr ""
     3812
     3813#: waeup/kofa/hostels/vocabularies.py:39
     3814msgid "Bed B"
     3815msgstr ""
     3816
     3817#: waeup/kofa/hostels/vocabularies.py:40
     3818msgid "Bed C"
     3819msgstr ""
     3820
     3821#: waeup/kofa/hostels/vocabularies.py:41
     3822msgid "Bed D"
     3823msgstr ""
     3824
     3825#: waeup/kofa/hostels/vocabularies.py:42
     3826msgid "Bed E"
     3827msgstr ""
     3828
     3829#: waeup/kofa/hostels/vocabularies.py:43
     3830msgid "Bed F"
     3831msgstr ""
     3832
     3833#: waeup/kofa/hostels/vocabularies.py:44
     3834msgid "Bed G"
     3835msgstr ""
     3836
     3837#: waeup/kofa/hostels/vocabularies.py:45
     3838msgid "Bed H"
     3839msgstr ""
     3840
     3841#: waeup/kofa/hostels/vocabularies.py:46
     3842msgid "Bed I"
     3843msgstr ""
     3844
     3845#: waeup/kofa/hostels/vocabularies.py:47
     3846msgid "Bed J"
     3847msgstr ""
     3848
     3849#: waeup/kofa/hostels/vocabularies.py:48
     3850msgid "Bed K"
     3851msgstr ""
     3852
     3853#: waeup/kofa/hostels/vocabularies.py:49
     3854msgid "Bed L"
     3855msgstr ""
     3856
     3857#: waeup/kofa/hostels/vocabularies.py:53
     3858msgid "Block A"
     3859msgstr ""
     3860
     3861#: waeup/kofa/hostels/vocabularies.py:54
     3862msgid "Block B"
     3863msgstr ""
     3864
     3865#: waeup/kofa/hostels/vocabularies.py:55
     3866msgid "Block C"
     3867msgstr ""
     3868
     3869#: waeup/kofa/hostels/vocabularies.py:56
     3870msgid "Block D"
     3871msgstr ""
     3872
     3873#: waeup/kofa/hostels/vocabularies.py:57
     3874msgid "Block E"
     3875msgstr ""
     3876
     3877#: waeup/kofa/hostels/vocabularies.py:58
     3878msgid "Block F"
     3879msgstr ""
     3880
     3881#: waeup/kofa/hostels/vocabularies.py:59
     3882msgid "Block G"
     3883msgstr ""
     3884
     3885#: waeup/kofa/hostels/vocabularies.py:60
     3886msgid "Block H"
     3887msgstr ""
     3888
     3889#: waeup/kofa/hostels/vocabularies.py:61
     3890msgid "Block I"
     3891msgstr ""
     3892
     3893#: waeup/kofa/hostels/vocabularies.py:62
     3894msgid "Block J"
     3895msgstr ""
     3896
     3897#: waeup/kofa/hostels/vocabularies.py:63
     3898msgid "Block K"
     3899msgstr ""
     3900
     3901#: waeup/kofa/hostels/vocabularies.py:64
     3902msgid "Block L"
     3903msgstr ""
     3904
     3905#: waeup/kofa/hostels/vocabularies.py:65
     3906msgid "Block M"
     3907msgstr ""
     3908
     3909#: waeup/kofa/hostels/vocabularies.py:66
     3910msgid "Block N"
     3911msgstr ""
     3912
     3913#: waeup/kofa/hostels/vocabularies.py:67
     3914msgid "Block O"
     3915msgstr ""
     3916
     3917#: waeup/kofa/hostels/vocabularies.py:68
     3918msgid "Block P"
     3919msgstr ""
     3920
     3921#: waeup/kofa/hostels/vocabularies.py:69
     3922msgid "Block Q"
     3923msgstr ""
     3924
     3925#: waeup/kofa/hostels/vocabularies.py:70
     3926msgid "Block R"
     3927msgstr ""
     3928
     3929#: waeup/kofa/hostels/vocabularies.py:71
     3930msgid "Block S"
     3931msgstr ""
     3932
     3933#: waeup/kofa/hostels/vocabularies.py:72
     3934msgid "Block T"
     3935msgstr ""
     3936
     3937#: waeup/kofa/hostels/vocabularies.py:73
     3938msgid "Block U"
     3939msgstr ""
     3940
     3941#: waeup/kofa/hostels/vocabularies.py:74
     3942msgid "Block V"
     3943msgstr ""
     3944
     3945#: waeup/kofa/hostels/vocabularies.py:75
     3946msgid "Block W"
     3947msgstr ""
     3948
     3949#: waeup/kofa/interfaces.py:100
     3950msgid "clearance requested"
     3951msgstr ""
     3952
     3953#: waeup/kofa/interfaces.py:101
     3954msgid "cleared"
     3955msgstr ""
     3956
     3957#: waeup/kofa/interfaces.py:102
     3958msgid "school fee paid"
     3959msgstr ""
     3960
     3961#: waeup/kofa/interfaces.py:103
     3962msgid "courses registered"
     3963msgstr ""
     3964
     3965#: waeup/kofa/interfaces.py:104
     3966msgid "courses validated"
     3967msgstr ""
     3968
     3969#: waeup/kofa/interfaces.py:105
     3970msgid "returning"
     3971msgstr ""
     3972
     3973#: waeup/kofa/interfaces.py:106
     3974msgid "graduated"
     3975msgstr ""
     3976
     3977#: waeup/kofa/interfaces.py:107
     3978msgid "transcript requested"
     3979msgstr ""
     3980
     3981#: waeup/kofa/interfaces.py:108
     3982msgid "transcript validated"
     3983msgstr ""
     3984
     3985#: waeup/kofa/interfaces.py:109
     3986msgid "transcript released"
     3987msgstr ""
     3988
     3989#: waeup/kofa/interfaces.py:265
     3990msgid "Subject"
     3991msgstr ""
     3992
     3993#: waeup/kofa/interfaces.py:270
     3994#: waeup/kofa/students/browser.py:1486
     3995#: waeup/kofa/students/browser.py:1655
     3996#: waeup/kofa/students/browser_templates/courseticketmanagepage.pt:10
     3997msgid "Grade"
     3998msgstr ""
     3999
    14174000#: waeup/kofa/interfaces.py:287
    14184001#: waeup/kofa/interfaces.py:289
    1419 #: waeup/kofa/students/browser.py:3790
     4002#: waeup/kofa/students/browser.py:3885
    14204003#: waeup/kofa/hostels/browser_templates/containerpage.pt:23
    14214004#: waeup/kofa/hostels/browser_templates/containermanagepage.pt:45
     
    14334016msgstr ""
    14344017
    1435 #: waeup/kofa/applicants/interfaces.py:696
    1436 msgid "Report"
    1437 msgstr ""
    1438 
    1439 #: waeup/kofa/applicants/payment.py:56
    1440 #: waeup/kofa/applicants/workflow.py:78
    1441 #: waeup/kofa/students/payments.py:161
    1442 msgid "Payment approved"
    1443 msgstr ""
    1444 
    1445 #: waeup/kofa/applicants/payment.py:72
    1446 msgid "Payment successfully completed. Kindly submit application for processing."
    1447 msgstr ""
    1448 
    1449 #: waeup/kofa/applicants/payment.py:80
    1450 #: waeup/kofa/students/payments.py:169
    1451 msgid "This ticket has already been paid."
    1452 msgstr ""
    1453 
    1454 #: waeup/kofa/applicants/pdf.py:105
    1455 #. Default: ""
    1456 msgid ""
    1457 "\n"
    1458 " Proceed to the login page of the portal and enter your new credentials: user name= ${a}, password = ${b}. Change your password when you have logged in."
    1459 msgstr ""
    1460 
    1461 #: waeup/kofa/applicants/pdf.py:71
    1462 msgid "Application Record"
    1463 msgstr ""
    1464 
    1465 #: waeup/kofa/applicants/utils.py:46
    1466 msgid "Desired Study Courses"
    1467 msgstr ""
    1468 
    1469 #: waeup/kofa/applicants/utils.py:47
    1470 msgid "Application Process Data"
    1471 msgstr ""
    1472 
    1473 #: waeup/kofa/applicants/utils.py:60
    1474 #: waeup/kofa/students/utils.py:431
    1475 #: waeup/kofa/students/utils.py:458
    1476 #: waeup/kofa/students/utils.py:469
    1477 #: waeup/kofa/students/utils.py:538
    1478 #: waeup/kofa/students/utils.py:1114
    1479 msgid "Session configuration object is not available."
    1480 msgstr ""
    1481 
    1482 #: waeup/kofa/applicants/utils.py:70
    1483 #: waeup/kofa/applicants/utils.py:76
    1484 #: waeup/kofa/students/utils.py:509
    1485 msgid "Amount could not be determined."
    1486 msgstr ""
    1487 
    1488 #: waeup/kofa/applicants/viewlets.py:107
    1489 msgid "Register for application"
    1490 msgstr ""
    1491 
    1492 #: waeup/kofa/applicants/viewlets.py:142
    1493 msgid "Container statistics"
    1494 msgstr ""
    1495 
    1496 #: waeup/kofa/applicants/viewlets.py:155
    1497 msgid "Manage container"
    1498 msgstr ""
    1499 
    1500 #: waeup/kofa/applicants/viewlets.py:165
    1501 msgid "Export application data"
    1502 msgstr ""
    1503 
    1504 #: waeup/kofa/applicants/viewlets.py:169
    1505 msgid "'The creation process may take a considerably long time depending on the number of student records to be created (appr. 0.5s per student). All users will be logged out and the portal will be in maintenance mode during record creation. You will be automatically logged in when the creation process is finished. Do you really want to start now?'"
    1506 msgstr ""
    1507 
    1508 #: waeup/kofa/applicants/viewlets.py:184
    1509 #: waeup/kofa/applicants/viewlets.py:197
    1510 msgid "Create students"
    1511 msgstr ""
    1512 
    1513 #: waeup/kofa/applicants/viewlets.py:209
    1514 msgid "View application record"
    1515 msgstr ""
    1516 
    1517 #: waeup/kofa/applicants/viewlets.py:217
    1518 msgid "Manage application record"
    1519 msgstr ""
    1520 
    1521 #: waeup/kofa/applicants/viewlets.py:225
    1522 msgid "Edit application record"
    1523 msgstr ""
    1524 
    1525 #: waeup/kofa/applicants/viewlets.py:244
    1526 msgid "Download application slip"
    1527 msgstr ""
    1528 
    1529 #: waeup/kofa/applicants/viewlets.py:261
    1530 #: waeup/kofa/applicants/workflow.py:119
    1531 #: waeup/kofa/students/browser.py:366
    1532 #: waeup/kofa/students/workflow.py:46
    1533 msgid "Create student"
    1534 msgstr ""
    1535 
    1536 #: waeup/kofa/applicants/viewlets.py:278
    1537 #: waeup/kofa/students/viewlets.py:521
    1538 msgid "Download payment slip"
    1539 msgstr ""
    1540 
    1541 #: waeup/kofa/applicants/viewlets.py:293
    1542 #: waeup/kofa/applicants/workflow.py:77
    1543 #: waeup/kofa/students/viewlets.py:537
    1544 #: waeup/kofa/students/workflow.py:117
    1545 msgid "Approve payment"
    1546 msgstr ""
    1547 
    1548 #: waeup/kofa/applicants/viewlets.py:58
    1549 msgid "Application"
    1550 msgstr ""
    1551 
    1552 #: waeup/kofa/applicants/viewlets.py:74
    1553 #: waeup/kofa/students/viewlets.py:896
    1554 msgid "My Data"
    1555 msgstr ""
    1556 
    1557 #: waeup/kofa/applicants/workflow.py:105
    1558 msgid "Process application"
    1559 msgstr ""
    1560 
    1561 #: waeup/kofa/applicants/workflow.py:106
    1562 msgid "Application processed"
    1563 msgstr ""
    1564 
    1565 #: waeup/kofa/applicants/workflow.py:120
    1566 msgid "Student record created"
    1567 msgstr ""
    1568 
    1569 #: waeup/kofa/applicants/workflow.py:126
    1570 #: waeup/kofa/applicants/workflow.py:140
    1571 #: waeup/kofa/applicants/workflow.py:147
    1572 #: waeup/kofa/applicants/workflow.py:154
    1573 msgid "Reset application to started"
    1574 msgstr ""
    1575 
    1576 #: waeup/kofa/applicants/workflow.py:127
    1577 #: waeup/kofa/applicants/workflow.py:141
    1578 #: waeup/kofa/applicants/workflow.py:148
    1579 #: waeup/kofa/applicants/workflow.py:155
    1580 msgid "Application reset"
    1581 msgstr ""
    1582 
    1583 #: waeup/kofa/applicants/workflow.py:133
    1584 msgid "Reset application to paid"
    1585 msgstr ""
    1586 
    1587 #: waeup/kofa/applicants/workflow.py:134
    1588 msgid "Application reset to paid"
    1589 msgstr ""
    1590 
    1591 #: waeup/kofa/applicants/workflow.py:43
    1592 msgid "started"
    1593 msgstr ""
    1594 
    1595 #: waeup/kofa/applicants/workflow.py:44
    1596 msgid "paid"
    1597 msgstr ""
    1598 
    1599 #: waeup/kofa/applicants/workflow.py:45
    1600 msgid "submitted"
    1601 msgstr ""
    1602 
    1603 #: waeup/kofa/applicants/workflow.py:46
    1604 #: waeup/kofa/interfaces.py:98
    1605 msgid "admitted"
    1606 msgstr ""
    1607 
    1608 #: waeup/kofa/applicants/workflow.py:47
    1609 msgid "not admitted"
    1610 msgstr ""
    1611 
    1612 #: waeup/kofa/applicants/workflow.py:48
    1613 #: waeup/kofa/documents/utils.py:33
    1614 #: waeup/kofa/interfaces.py:97
    1615 msgid "created"
    1616 msgstr ""
    1617 
    1618 #: waeup/kofa/applicants/workflow.py:49
    1619 msgid "processed"
    1620 msgstr ""
    1621 
    1622 #: waeup/kofa/applicants/workflow.py:55
    1623 msgid "Initialize application"
    1624 msgstr ""
    1625 
    1626 #: waeup/kofa/applicants/workflow.py:58
    1627 msgid "Application initialized"
    1628 msgstr ""
    1629 
    1630 #: waeup/kofa/applicants/workflow.py:63
    1631 msgid "Start application"
    1632 msgstr ""
    1633 
    1634 #: waeup/kofa/applicants/workflow.py:64
    1635 msgid "Application started"
    1636 msgstr ""
    1637 
    1638 #: waeup/kofa/applicants/workflow.py:70
    1639 msgid "Pay application fee"
    1640 msgstr ""
    1641 
    1642 #: waeup/kofa/applicants/workflow.py:71
    1643 msgid "Payment made"
    1644 msgstr ""
    1645 
    1646 #: waeup/kofa/applicants/workflow.py:84
    1647 msgid "Submit application"
    1648 msgstr ""
    1649 
    1650 #: waeup/kofa/applicants/workflow.py:85
    1651 msgid "Application submitted"
    1652 msgstr ""
    1653 
    1654 #: waeup/kofa/applicants/workflow.py:91
    1655 msgid "Admit applicant"
    1656 msgstr ""
    1657 
    1658 #: waeup/kofa/applicants/workflow.py:92
    1659 msgid "Applicant admitted"
    1660 msgstr ""
    1661 
    1662 #: waeup/kofa/applicants/workflow.py:98
    1663 #: waeup/kofa/applicants/workflow.py:112
    1664 msgid "Refuse application"
    1665 msgstr ""
    1666 
    1667 #: waeup/kofa/applicants/workflow.py:99
    1668 #: waeup/kofa/applicants/workflow.py:113
    1669 msgid "Application refused"
    1670 msgstr ""
    1671 
    1672 #: waeup/kofa/authentication.py:412
    1673 msgid "Password must have at least 6 characters."
    1674 msgstr ""
    1675 
    1676 #: waeup/kofa/authentication.py:415
    1677 #: waeup/kofa/authentication.py:437
    1678 msgid "Passwords do not match."
    1679 msgstr ""
    1680 
    1681 #: waeup/kofa/authentication.py:432
    1682 msgid "Passwords must be at least 8 characters long, must contain at least one uppercase letter, one lowercase letter and one digit."
    1683 msgstr ""
    1684 
    1685 #: waeup/kofa/browser/async.py:91
    1686 msgid "Please wait..."
    1687 msgstr ""
    1688 
    1689 #: waeup/kofa/browser/breadcrumbs.py:108
    1690 msgid "Portal Settings"
    1691 msgstr ""
    1692 
    1693 #: waeup/kofa/browser/breadcrumbs.py:120
    1694 #: waeup/kofa/browser/viewlets.py:823
    1695 msgid "Academics"
    1696 msgstr ""
    1697 
    1698 #: waeup/kofa/browser/breadcrumbs.py:127
    1699 #: waeup/kofa/browser/pages.py:790
    1700 msgid "Administration"
    1701 msgstr ""
    1702 
    1703 #: waeup/kofa/browser/breadcrumbs.py:134
    1704 #: waeup/kofa/browser/viewlets.py:320
    1705 #: waeup/kofa/browser/viewlets.py:874
    1706 msgid "Portal Configuration"
    1707 msgstr ""
    1708 
    1709 #: waeup/kofa/browser/breadcrumbs.py:152
    1710 #: waeup/kofa/browser/pages.py:837
    1711 #: waeup/kofa/browser/viewlets.py:329
    1712 #: waeup/kofa/browser/viewlets.py:884
    1713 msgid "Officers"
    1714 msgstr ""
    1715 
    1716 #: waeup/kofa/browser/breadcrumbs.py:159
    1717 #: waeup/kofa/browser/pages.py:1294
    1718 #: waeup/kofa/browser/pages.py:1879
    1719 #: waeup/kofa/browser/viewlets.py:338
    1720 #: waeup/kofa/browser/viewlets.py:893
    1721 msgid "Data Center"
    1722 msgstr ""
    1723 
    1724 #: waeup/kofa/browser/breadcrumbs.py:166
    1725 #: waeup/kofa/browser/reports.py:43
    1726 #: waeup/kofa/browser/viewlets.py:347
    1727 #: waeup/kofa/browser/viewlets.py:902
    1728 msgid "Reports"
    1729 msgstr ""
    1730 
    1731 #: waeup/kofa/browser/breadcrumbs.py:174
    1732 #: waeup/kofa/students/browser.py:3838
    1733 msgid "Student Data Exports"
    1734 msgstr ""
    1735 
    1736 #: waeup/kofa/browser/breadcrumbs.py:94
    1737 msgid "Home"
    1738 msgstr ""
    1739 
    1740 #: waeup/kofa/browser/fileviewlets.py:108
    1741 #: waeup/kofa/accesscodes/browser_templates/reimportbatchpage.pt:11
    1742 #: waeup/kofa/browser/templates/datacenterfinishedpage.pt:9
    1743 #: waeup/kofa/browser/templates/datacenterpage.pt:17
    1744 #: waeup/kofa/browser/templates/datacenterlogspage.pt:10
    1745 msgid "File"
    1746 msgstr ""
    1747 
    1748 #: waeup/kofa/browser/fileviewlets.py:109
    1749 msgid "Scan"
    1750 msgstr ""
    1751 
    1752 #: waeup/kofa/browser/fileviewlets.py:133
    1753 msgid "Upload selected file"
    1754 msgstr ""
    1755 
    1756 #: waeup/kofa/browser/fileviewlets.py:134
    1757 msgid "Delete"
    1758 msgstr ""
    1759 
    1760 #: waeup/kofa/browser/fileviewlets.py:168
    1761 msgid "No local file selected."
    1762 msgstr ""
    1763 
    1764 #: waeup/kofa/browser/fileviewlets.py:44
    1765 #. Default: ""
    1766 msgid "${a} deleted."
    1767 msgstr ""
    1768 
    1769 #: waeup/kofa/browser/fileviewlets.py:59
    1770 msgid "Uploaded file is too big."
    1771 msgstr ""
    1772 
    1773 #: waeup/kofa/browser/fileviewlets.py:71
    1774 msgid "Could not determine file type."
    1775 msgstr ""
    1776 
    1777 #: waeup/kofa/browser/fileviewlets.py:76
    1778 #. Default: ""
    1779 msgid "${a} file format expected."
    1780 msgstr ""
    1781 
    1782 #: waeup/kofa/browser/fileviewlets.py:82
    1783 #. Default: ""
    1784 msgid "Only the following extensions are allowed: ${a}"
    1785 msgstr ""
    1786 
    1787 #: waeup/kofa/browser/fileviewlets.py:92
    1788 #. Default: ""
    1789 msgid "File ${a} uploaded."
    1790 msgstr ""
    1791 
    1792 #: waeup/kofa/browser/interfaces.py:177
    1793 msgid "Unique Identifier"
    1794 msgstr ""
    1795 
    1796 #: waeup/kofa/browser/interfaces.py:178
    1797 msgid "User Name, Student or Applicant Id, Matriculation or Registration Number"
    1798 msgstr ""
    1799 
    1800 #: waeup/kofa/browser/layout.py:102
    1801 #: waeup/kofa/documents/browser.py:261
    1802 #: waeup/kofa/students/browser.py:766
    1803 msgid "Are you sure?"
    1804 msgstr ""
    1805 
    1806 #: waeup/kofa/browser/pages.py:1012
    1807 #: waeup/kofa/browser/viewlets.py:411
    1808 msgid "My Preferences"
    1809 msgstr ""
    1810 
    1811 #: waeup/kofa/browser/pages.py:1025
    1812 #: waeup/kofa/browser/viewlets.py:426
    1813 msgid "My Roles"
    1814 msgstr ""
    1815 
    1816 #: waeup/kofa/browser/pages.py:1052
    1817 #: waeup/kofa/browser/viewlets.py:356
    1818 msgid "My Courses"
    1819 msgstr ""
    1820 
    1821 #: waeup/kofa/browser/pages.py:1062
    1822 msgid "no academic session set"
    1823 msgstr ""
    1824 
    1825 #: waeup/kofa/browser/pages.py:1083
    1826 #: waeup/kofa/browser/pages.py:1111
    1827 #: waeup/kofa/browser/viewlets.py:375
    1828 #: waeup/kofa/browser/viewlets.py:394
    1829 msgid "My ToDoList"
    1830 msgstr ""
    1831 
    1832 #: waeup/kofa/browser/pages.py:109
    1833 msgid "No local role selected."
    1834 msgstr ""
    1835 
    1836 #: waeup/kofa/browser/pages.py:1138
    1837 msgid "Search Academic Section"
    1838 msgstr ""
    1839 
    1840 #: waeup/kofa/browser/pages.py:1152
    1841 msgid "No object found."
    1842 msgstr ""
    1843 
    1844 #: waeup/kofa/browser/pages.py:1168
    1845 msgid "Edit portal configuration"
    1846 msgstr ""
    1847 
    1848 #: waeup/kofa/browser/pages.py:1169
    1849 #: waeup/kofa/browser/pages.py:1212
    1850 msgid "Update plugins"
    1851 msgstr ""
    1852 
    1853 #: waeup/kofa/browser/pages.py:1169
    1854 #: waeup/kofa/browser/pages.py:1222
    1855 msgid "Purge mandates"
    1856 msgstr ""
    1857 
    1858 #: waeup/kofa/browser/pages.py:1171
    1859 #: waeup/kofa/browser/pages.py:1191
    1860 #: waeup/kofa/browser/pages.py:1236
    1861 msgid "Add session configuration"
    1862 msgstr ""
    1863 
    1864 #: waeup/kofa/browser/pages.py:1203
    1865 #. Default: ""
    1866 msgid "Session ${a} Configuration"
    1867 msgstr ""
    1868 
    1869 #: waeup/kofa/browser/pages.py:1213
    1870 #: waeup/kofa/browser/pages.py:1223
    1871 msgid "For experts only!"
    1872 msgstr ""
    1873 
    1874 #: waeup/kofa/browser/pages.py:1214
    1875 msgid "Plugins may only be updated after software upgrades. Are you really sure?"
    1876 msgstr ""
    1877 
    1878 #: waeup/kofa/browser/pages.py:1219
    1879 msgid "Plugins were updated. See log file for details."
    1880 msgstr ""
    1881 
    1882 #: waeup/kofa/browser/pages.py:1227
    1883 #. Default: ""
    1884 msgid "${a} mandate(s) were purged."
    1885 msgstr ""
    1886 
    1887 #: waeup/kofa/browser/pages.py:1240
    1888 msgid "Add Session Configuration"
    1889 msgstr ""
    1890 
    1891 #: waeup/kofa/browser/pages.py:1251
    1892 msgid "The session chosen already exists."
    1893 msgstr ""
    1894 
    1895 #: waeup/kofa/browser/pages.py:1273
    1896 #. Default: ""
    1897 msgid "Edit academic session ${a} configuration"
    1898 msgstr ""
    1899 
    1900 #: waeup/kofa/browser/pages.py:130
    1901 #. Default: ""
    1902 msgid "Local role successfully removed: ${a}"
    1903 msgstr ""
    1904 
    1905 #: waeup/kofa/browser/pages.py:1315
    1906 msgid "OSError: The file could not be deleted."
    1907 msgstr ""
    1908 
    1909 #: waeup/kofa/browser/pages.py:1319
    1910 #. Default: ""
    1911 msgid "Successfully deleted: ${a}"
    1912 msgstr ""
    1913 
    1914 #: waeup/kofa/browser/pages.py:1330
    1915 msgid "Processed Files"
    1916 msgstr ""
    1917 
    1918 #: waeup/kofa/browser/pages.py:1332
    1919 #: waeup/kofa/browser/pages.py:1348
    1920 #: waeup/kofa/browser/pages.py:1535
    1921 #: waeup/kofa/browser/pages.py:1864
    1922 #: waeup/kofa/browser/pages.py:1882
    1923 #: waeup/kofa/browser/pages.py:1925
    1924 #: waeup/kofa/browser/pages.py:1969
    1925 msgid "Back to Data Center"
    1926 msgstr ""
    1927 
    1928 #: waeup/kofa/browser/pages.py:1344
    1929 msgid "Upload portal data as CSV file"
    1930 msgstr ""
    1931 
    1932 #: waeup/kofa/browser/pages.py:1347
    1933 msgid "Upload"
    1934 msgstr ""
    1935 
    1936 #: waeup/kofa/browser/pages.py:1388
    1937 msgid "Import Manager"
    1938 msgstr ""
    1939 
    1940 #: waeup/kofa/browser/pages.py:1390
    1941 #. Default: ""
    1942 msgid "${a}: ${b} uploaded"
    1943 msgstr ""
    1944 
    1945 #: waeup/kofa/browser/pages.py:1394
    1946 #. Default: ""
    1947 msgid ""
    1948 "File: ${a}\n"
    1949 "Importer: ${b}\n"
    1950 "Import Mode: ${c}\n"
    1951 "Datasets: ${d}\n"
    1952 "\n"
    1953 "${e}\n"
    1954 "\n"
    1955 "Comment by Import Manager:"
    1956 msgstr ""
    1957 
    1958 #: waeup/kofa/browser/pages.py:1413
    1959 msgid "All import managers have been notified by email."
    1960 msgstr ""
    1961 
    1962 #: waeup/kofa/browser/pages.py:1415
    1963 #: waeup/kofa/browser/pages.py:2834
    1964 #: waeup/kofa/students/browser.py:521
    1965 msgid "An smtp server error occurred."
    1966 msgstr ""
    1967 
    1968 #: waeup/kofa/browser/pages.py:1423
    1969 msgid "Maximum number of files in the data center exceeded."
    1970 msgstr ""
    1971 
    1972 #: waeup/kofa/browser/pages.py:143
    1973 #: waeup/kofa/browser/pages.py:1304
    1974 #: waeup/kofa/hostels/browser.py:372
    1975 #: waeup/kofa/hostels/browser.py:406
    1976 #: waeup/kofa/students/browser.py:338
    1977 msgid "No item selected."
    1978 msgstr ""
    1979 
    1980 #: waeup/kofa/browser/pages.py:1438
    1981 msgid "Only csv files are allowed."
    1982 msgstr ""
    1983 
    1984 #: waeup/kofa/browser/pages.py:1446
    1985 msgid "File with same name was uploaded earlier."
    1986 msgstr ""
    1987 
    1988 #: waeup/kofa/browser/pages.py:1458
    1989 msgid "The data in your file contain trailing whitespaces. Please replace."
    1990 msgstr ""
    1991 
    1992 #: waeup/kofa/browser/pages.py:1462
    1993 msgid "Your file contains forbidden characters or has invalid CSV format. First problematic line detected: line %s. Please replace."
    1994 msgstr ""
    1995 
    1996 #: waeup/kofa/browser/pages.py:1533
    1997 #: waeup/kofa/browser/pages.py:1568
    1998 #: waeup/kofa/browser/pages.py:1672
    1999 #: waeup/kofa/browser/pages.py:1785
    2000 msgid "Process CSV file"
    2001 msgstr ""
    2002 
    2003 #: waeup/kofa/browser/pages.py:1549
    2004 msgid "Portal must be in maintenance mode for data import."
    2005 msgstr ""
    2006 
    2007 #: waeup/kofa/browser/pages.py:1571
    2008 msgid "Back to step 1"
    2009 msgstr ""
    2010 
    2011 #: waeup/kofa/browser/pages.py:1572
    2012 msgid "Proceed to step 3"
    2013 msgstr ""
    2014 
    2015 #: waeup/kofa/browser/pages.py:1616
    2016 msgid "Double headers: each column name may only appear once. "
    2017 msgstr ""
    2018 
    2019 #: waeup/kofa/browser/pages.py:1624
    2020 msgid "Replace imported file!"
    2021 msgstr ""
    2022 
    2023 #: waeup/kofa/browser/pages.py:1637
    2024 #: waeup/kofa/browser/pages.py:1761
    2025 msgid "Import aborted."
    2026 msgstr ""
    2027 
    2028 #: waeup/kofa/browser/pages.py:1649
    2029 msgid "Update mode only!"
    2030 msgstr ""
    2031 
    2032 #: waeup/kofa/browser/pages.py:1675
    2033 #: waeup/kofa/browser/pages.py:1924
    2034 msgid "Reset"
    2035 msgstr ""
    2036 
    2037 #: waeup/kofa/browser/pages.py:1676
    2038 msgid "Set headerfields"
    2039 msgstr ""
    2040 
    2041 #: waeup/kofa/browser/pages.py:1677
    2042 msgid "Back to step 2"
    2043 msgstr ""
    2044 
    2045 #: waeup/kofa/browser/pages.py:1678
    2046 msgid "Perform import"
    2047 msgstr ""
    2048 
    2049 #: waeup/kofa/browser/pages.py:1744
    2050 msgid "Edit headers or replace imported file!"
    2051 msgstr ""
    2052 
    2053 #: waeup/kofa/browser/pages.py:1787
    2054 msgid "Process next"
    2055 msgstr ""
    2056 
    2057 #: waeup/kofa/browser/pages.py:1803
    2058 msgid "File has not been imported. Portal must be in maintenance mode for data import."
    2059 msgstr ""
    2060 
    2061 #: waeup/kofa/browser/pages.py:1849
    2062 #: waeup/kofa/browser/pages.py:2058
    2063 msgid "Maintenance mode disabled."
    2064 msgstr ""
    2065 
    2066 #: waeup/kofa/browser/pages.py:1852
    2067 #. Default: ""
    2068 msgid "Processing of ${a} rows failed."
    2069 msgstr ""
    2070 
    2071 #: waeup/kofa/browser/pages.py:1854
    2072 #. Default: ""
    2073 msgid "Successfully processed ${a} rows."
    2074 msgstr ""
    2075 
    2076 #: waeup/kofa/browser/pages.py:1862
    2077 msgid "Show logfiles"
    2078 msgstr ""
    2079 
    2080 #: waeup/kofa/browser/pages.py:1865
    2081 msgid "Show"
    2082 msgstr ""
    2083 
    2084 #: waeup/kofa/browser/pages.py:1883
    2085 msgid "Enter a regular expression here..."
    2086 msgstr ""
    2087 
    2088 #: waeup/kofa/browser/pages.py:1895
    2089 msgid "Log files can only be searched on Unix-based operating systems."
    2090 msgstr ""
    2091 
    2092 #: waeup/kofa/browser/pages.py:1910
    2093 msgid "Invalid search expression."
    2094 msgstr ""
    2095 
    2096 #: waeup/kofa/browser/pages.py:1913
    2097 msgid "No search results found."
    2098 msgstr ""
    2099 
    2100 #: waeup/kofa/browser/pages.py:1921
    2101 msgid "Edit data center settings"
    2102 msgstr ""
    2103 
    2104 #: waeup/kofa/browser/pages.py:1931
    2105 msgid "You are not permitted to edit datacenter settings."
    2106 msgstr ""
    2107 
    2108 #: waeup/kofa/browser/pages.py:1947
    2109 #. Default: ""
    2110 msgid "File already existed (not copied): ${a}"
    2111 msgstr ""
    2112 
    2113 #: waeup/kofa/browser/pages.py:1950
    2114 #. Default: ""
    2115 msgid "Given storage path cannot be used. ${a}"
    2116 msgstr ""
    2117 
    2118 #: waeup/kofa/browser/pages.py:1954
    2119 msgid "New storage path succefully set."
    2120 msgstr ""
    2121 
    2122 #: waeup/kofa/browser/pages.py:1966
    2123 msgid "Download portal data as CSV file"
    2124 msgstr ""
    2125 
    2126 #: waeup/kofa/browser/pages.py:1968
    2127 msgid "Create CSV file"
    2128 msgstr ""
    2129 
    2130 #: waeup/kofa/browser/pages.py:2008
    2131 msgid "Exports successfully purged."
    2132 msgstr ""
    2133 
    2134 #: waeup/kofa/browser/pages.py:2064
    2135 msgid "Maintenance mode enabled."
    2136 msgstr ""
    2137 
    2138 #: waeup/kofa/browser/pages.py:2081
    2139 msgid "Academic Section"
    2140 msgstr ""
    2141 
    2142 #: waeup/kofa/browser/pages.py:2093
    2143 #: waeup/kofa/browser/pages.py:2110
    2144 #: waeup/kofa/browser/pages.py:2127
    2145 #: waeup/kofa/browser/pages.py:2132
    2146 msgid "Add faculty"
    2147 msgstr ""
    2148 
    2149 #: waeup/kofa/browser/pages.py:2094
    2150 #: waeup/kofa/students/reports/student_statistics.py:290
    2151 #: waeup/kofa/university/export.py:37
    2152 msgid "Faculties"
    2153 msgstr ""
    2154 
    2155 #: waeup/kofa/browser/pages.py:2099
    2156 #: waeup/kofa/browser/viewlets.py:459
    2157 msgid "Manage academic section"
    2158 msgstr ""
    2159 
    2160 #: waeup/kofa/browser/pages.py:2104
    2161 msgid "You are not allowed to remove entire faculties."
    2162 msgstr ""
    2163 
    2164 #: waeup/kofa/browser/pages.py:2139
    2165 msgid "The faculty code chosen already exists."
    2166 msgstr ""
    2167 
    2168 #: waeup/kofa/browser/pages.py:2143
    2169 #. Default: ""
    2170 msgid "Faculty ${a} added."
    2171 msgstr ""
    2172 
    2173 #: waeup/kofa/browser/pages.py:2167
    2174 #: waeup/kofa/browser/pages.py:2178
    2175 #: waeup/kofa/students/reports/student_statistics.py:290
    2176 #: waeup/kofa/university/export.py:84
    2177 msgid "Departments"
    2178 msgstr ""
    2179 
    2180 #: waeup/kofa/browser/pages.py:2180
    2181 #: waeup/kofa/browser/pages.py:2209
    2182 #: waeup/kofa/browser/pages.py:2277
    2183 #: waeup/kofa/browser/pages.py:2282
    2184 msgid "Add department"
    2185 msgstr ""
    2186 
    2187 #: waeup/kofa/browser/pages.py:2189
    2188 #: waeup/kofa/browser/viewlets.py:487
    2189 msgid "Manage faculty"
    2190 msgstr ""
    2191 
    2192 #: waeup/kofa/browser/pages.py:2194
    2193 msgid "You are not allowed to remove entire departments."
    2194 msgstr ""
    2195 
    2196 #: waeup/kofa/browser/pages.py:2229
    2197 #: waeup/kofa/students/browser.py:262
    2198 #: waeup/kofa/students/browser.py:304
    2199 msgid "Find student(s)"
    2200 msgstr ""
    2201 
    2202 #: waeup/kofa/browser/pages.py:2234
    2203 msgid "Find students in "
    2204 msgstr ""
    2205 
    2206 #: waeup/kofa/browser/pages.py:2268
    2207 #: waeup/kofa/students/browser.py:292
    2208 #: waeup/kofa/students/browser.py:336
    2209 #: waeup/kofa/students/browser.py:3104
    2210 #: waeup/kofa/students/browser.py:3405
    2211 #: waeup/kofa/students/browser.py:3623
    2212 msgid "No student found."
    2213 msgstr ""
    2214 
    2215 #: waeup/kofa/browser/pages.py:2289
    2216 msgid "The code chosen already exists in this faculty."
    2217 msgstr ""
    2218 
    2219 #: waeup/kofa/browser/pages.py:2293
    2220 #. Default: ""
    2221 msgid "Department ${a} added."
    2222 msgstr ""
    2223 
    2224 #: waeup/kofa/browser/pages.py:2315
    2225 msgid "Courses and Certificates"
    2226 msgstr ""
    2227 
    2228 #: waeup/kofa/browser/pages.py:2345
    2229 #: waeup/kofa/browser/pages.py:2376
    2230 msgid "Remove selected courses"
    2231 msgstr ""
    2232 
    2233 #: waeup/kofa/browser/pages.py:2345
    2234 #: waeup/kofa/browser/pages.py:2392
    2235 #: waeup/kofa/browser/pages.py:2421
    2236 #: waeup/kofa/browser/pages.py:2426
    2237 msgid "Add course"
    2238 msgstr ""
    2239 
    2240 #: waeup/kofa/browser/pages.py:2346
    2241 #: waeup/kofa/browser/pages.py:2382
    2242 msgid "Remove selected certificates"
    2243 msgstr ""
    2244 
    2245 #: waeup/kofa/browser/pages.py:2346
    2246 #: waeup/kofa/browser/pages.py:2397
    2247 #: waeup/kofa/browser/pages.py:2463
    2248 #: waeup/kofa/browser/pages.py:2468
    2249 msgid "Add certificate"
    2250 msgstr ""
    2251 
    2252 #: waeup/kofa/browser/pages.py:2356
    2253 #: waeup/kofa/browser/viewlets.py:516
    2254 msgid "Manage department"
    2255 msgstr ""
    2256 
    2257 #: waeup/kofa/browser/pages.py:2385
    2258 msgid "You are not allowed to remove certificates."
    2259 msgstr ""
    2260 
    2261 #: waeup/kofa/browser/pages.py:2438
    2262 msgid "A course with same code already exists: "
    2263 msgstr ""
    2264 
    2265 #: waeup/kofa/browser/pages.py:2444
    2266 #. Default: ""
    2267 msgid "Course ${a} successfully created."
    2268 msgstr ""
    2269 
    2270 #: waeup/kofa/browser/pages.py:2480
    2271 msgid "A certificate with same code already exists: "
    2272 msgstr ""
    2273 
    2274 #: waeup/kofa/browser/pages.py:2486
    2275 #. Default: ""
    2276 msgid "Certificate ${a} successfully created."
    2277 msgstr ""
    2278 
    2279 #: waeup/kofa/browser/pages.py:2525
    2280 #: waeup/kofa/browser/viewlets.py:565
    2281 msgid "Edit course"
    2282 msgstr ""
    2283 
    2284 #: waeup/kofa/browser/pages.py:2584
    2285 msgid "Edit certificate"
    2286 msgstr ""
    2287 
    2288 #: waeup/kofa/browser/pages.py:2592
    2289 #: waeup/kofa/browser/pages.py:2610
    2290 #: waeup/kofa/browser/pages.py:2637
    2291 #: waeup/kofa/browser/pages.py:2640
    2292 msgid "Add certificate course"
    2293 msgstr ""
    2294 
    2295 #: waeup/kofa/browser/pages.py:2593
    2296 #: waeup/kofa/browser/pages.py:2605
    2297 msgid "Remove selected certificate courses"
    2298 msgstr ""
    2299 
    2300 #: waeup/kofa/browser/pages.py:2599
    2301 #: waeup/kofa/browser/viewlets.py:659
    2302 msgid "Manage certificate"
    2303 msgstr ""
    2304 
    2305 #: waeup/kofa/browser/pages.py:2645
    2306 #: waeup/kofa/browser/pages.py:2714
    2307 msgid "The chosen certificate course is already part of this certificate."
    2308 msgstr ""
    2309 
    2310 #: waeup/kofa/browser/pages.py:2649
    2311 #. Default: ""
    2312 msgid "certificate course ${a}_${b} added."
    2313 msgstr ""
    2314 
    2315 #: waeup/kofa/browser/pages.py:2697
    2316 #: waeup/kofa/browser/viewlets.py:691
    2317 msgid "Edit certificate course"
    2318 msgstr ""
    2319 
    2320 #: waeup/kofa/browser/pages.py:2745
    2321 #: waeup/kofa/students/browser.py:3156
    2322 msgid "The portal is in maintenance mode. Password request forms are temporarily disabled."
    2323 msgstr ""
    2324 
    2325 #: waeup/kofa/browser/pages.py:2765
    2326 msgid "This is not a valid email address."
    2327 msgstr ""
    2328 
    2329 #: waeup/kofa/browser/pages.py:2774
    2330 msgid "Send user a new password"
    2331 msgstr ""
    2332 
    2333 #: waeup/kofa/browser/pages.py:2775
    2334 msgid "Send me a new password"
    2335 msgstr ""
    2336 
    2337 #: waeup/kofa/browser/pages.py:2813
    2338 #: waeup/kofa/applicants/browser_templates/createallstudentspage.pt:17
    2339 msgid "No record found."
    2340 msgstr ""
    2341 
    2342 #: waeup/kofa/browser/pages.py:2827
    2343 #: waeup/kofa/students/browser.py:3233
    2344 msgid "You have successfully requested a password for the"
    2345 msgstr ""
    2346 
    2347 #: waeup/kofa/browser/pages.py:2831
    2348 #. Default: ""
    2349 msgid "An email with your user name and password has been sent to ${a}."
    2350 msgstr ""
    2351 
    2352 #: waeup/kofa/browser/pages.py:290
    2353 msgid "Sorry, another export job is running. Please try again later."
    2354 msgstr ""
    2355 
    2356 #: waeup/kofa/browser/pages.py:345
    2357 #: waeup/kofa/browser/viewlets.py:267
    2358 #: waeup/kofa/browser/templates/staffsitelayout.pt:40
    2359 #: waeup/kofa/browser/templates/studentsitelayout.pt:39
    2360 msgid "Login"
    2361 msgstr ""
    2362 
    2363 #: waeup/kofa/browser/pages.py:355
    2364 msgid "The portal is in maintenance mode and authentication (login) temporarily disabled."
    2365 msgstr ""
    2366 
    2367 #: waeup/kofa/browser/pages.py:361
    2368 msgid "You logged in."
    2369 msgstr ""
    2370 
    2371 #: waeup/kofa/browser/pages.py:387
    2372 msgid "Your personal data record is outdated. Please update."
    2373 msgstr ""
    2374 
    2375 #: waeup/kofa/browser/pages.py:416
    2376 msgid "The portal is in maintenance mode. You can't login!"
    2377 msgstr ""
    2378 
    2379 #: waeup/kofa/browser/pages.py:434
    2380 msgid "Your account has been temporarily deactivated."
    2381 msgstr ""
    2382 
    2383 #: waeup/kofa/browser/pages.py:440
    2384 msgid "Your account has been temporarily deactivated because your parents have logged in."
    2385 msgstr ""
    2386 
    2387 #: waeup/kofa/browser/pages.py:449
    2388 msgid "Your account has been deactivated."
    2389 msgstr ""
    2390 
    2391 #: waeup/kofa/browser/pages.py:468
    2392 msgid "Your user name and password are correct but your password is not considered secure. "
    2393 msgstr ""
    2394 
    2395 #: waeup/kofa/browser/pages.py:472
    2396 msgid " Your account has been temporarily deactivated. Please request a new password."
    2397 msgstr ""
    2398 
    2399 #: waeup/kofa/browser/pages.py:479
    2400 msgid "Your user name and password are correct but your account has been temporarily deactivated."
    2401 msgstr ""
    2402 
    2403 #: waeup/kofa/browser/pages.py:484
    2404 msgid "You entered invalid credentials."
    2405 msgstr ""
    2406 
    2407 #: waeup/kofa/browser/pages.py:499
    2408 msgid "You have been logged out. Thanks for using WAeUP Kofa!"
    2409 msgstr ""
    2410 
    2411 #: waeup/kofa/browser/pages.py:541
    2412 #. Default: ""
    2413 msgid "Contact ${a}"
    2414 msgstr ""
    2415 
    2416 #: waeup/kofa/browser/pages.py:547
    2417 #: waeup/kofa/browser/pages.py:985
    2418 msgid "Send message now"
    2419 msgstr ""
    2420 
    2421 #: waeup/kofa/browser/pages.py:566
    2422 #: waeup/kofa/browser/pages.py:606
    2423 #: waeup/kofa/browser/pages.py:1002
    2424 #: waeup/kofa/students/browser.py:519
    2425 msgid "Your message has been sent."
    2426 msgstr ""
    2427 
    2428 #: waeup/kofa/browser/pages.py:581
    2429 msgid "The portal is in maintenance mode. The contact form is temporarily disabled."
    2430 msgstr ""
    2431 
    2432 #: waeup/kofa/browser/pages.py:593
    2433 msgid "Send now"
    2434 msgstr ""
    2435 
    2436 #: waeup/kofa/browser/pages.py:608
    2437 msgid "A smtp server error occurred."
    2438 msgstr ""
    2439 
    2440 #: waeup/kofa/browser/pages.py:633
    2441 msgid "<h1>Welcome to WAeUP.Kofa</h1>"
    2442 msgstr ""
    2443 
    2444 #: waeup/kofa/browser/pages.py:744
    2445 msgid "Sources & Vocabularies"
    2446 msgstr ""
    2447 
    2448 #: waeup/kofa/browser/pages.py:758
    2449 msgid "Available Processors (Importers)"
    2450 msgstr ""
    2451 
    2452 #: waeup/kofa/browser/pages.py:838
    2453 #: waeup/kofa/documents/viewlets.py:60
    2454 #: waeup/kofa/documents/viewlets.py:79
    2455 #: waeup/kofa/hostels/browser.py:308
    2456 #: waeup/kofa/students/viewlets.py:194
    2457 #: waeup/kofa/students/viewlets.py:285
    2458 #: waeup/kofa/students/viewlets.py:364
    2459 #: waeup/kofa/students/viewlets.py:382
    2460 #: waeup/kofa/students/viewlets.py:413
    2461 #: waeup/kofa/students/viewlets.py:511
    2462 msgid "Manage"
    2463 msgstr ""
    2464 
    2465 #: waeup/kofa/browser/pages.py:839
    2466 #: waeup/kofa/browser/viewlets.py:193
    2467 msgid "Remove"
    2468 msgstr ""
    2469 
    2470 #: waeup/kofa/browser/pages.py:847
    2471 #. Default: ""
    2472 msgid "User account ${a} successfully deleted."
    2473 msgstr ""
    2474 
    2475 #: waeup/kofa/browser/pages.py:884
    2476 #: waeup/kofa/browser/pages.py:886
    2477 #: waeup/kofa/browser/viewlets.py:697
    2478 msgid "Add officer"
    2479 msgstr ""
    2480 
    2481 #: waeup/kofa/browser/pages.py:908
    2482 #. Default: ""
    2483 msgid "User account ${a} successfully added."
    2484 msgstr ""
    2485 
    2486 #: waeup/kofa/browser/pages.py:932
    2487 #. Default: ""
    2488 msgid "Edit officer ${a}"
    2489 msgstr ""
    2490 
    2491 #: waeup/kofa/browser/pages.py:966
    2492 msgid "User settings have been saved."
    2493 msgstr ""
    2494 
    2495 #: waeup/kofa/browser/pages.py:983
    2496 #: waeup/kofa/students/browser.py:500
    2497 #. Default: ""
    2498 msgid "Send message to ${a}"
    2499 msgstr ""
    2500 
    2501 #: waeup/kofa/browser/pdf.py:160
    2502 msgid "Date:"
    2503 msgstr ""
    2504 
    2505 #: waeup/kofa/browser/pdf.py:211
    2506 #: waeup/kofa/browser/pdf.py:476
    2507 #: waeup/kofa/browser/pdf.py:486
    2508 #: waeup/kofa/browser/templates/datacenterimport1page.pt:16
    2509 #: waeup/kofa/browser/templates/datacenterlogspage.pt:12
    2510 msgid "Date"
    2511 msgstr ""
    2512 
    2513 #: waeup/kofa/browser/pdf.py:537
    2514 #. Default: ""
    2515 msgid "${footer_text} Page ${num1} of ${num2}"
    2516 msgstr ""
    2517 
    2518 #: waeup/kofa/browser/pdf.py:807
    2519 #. Default: ""
    2520 msgid "Date: ${a}"
    2521 msgstr ""
    2522 
    2523 #: waeup/kofa/browser/reports.py:142
    2524 msgid "Create report"
    2525 msgstr ""
    2526 
    2527 #: waeup/kofa/browser/reports.py:147
    2528 msgid "Currently, new reports cannot be created due to high system load. Please try again later."
    2529 msgstr ""
    2530 
    2531 #: waeup/kofa/browser/reports.py:90
    2532 msgid "Unknown"
    2533 msgstr ""
    2534 
    2535 #: waeup/kofa/browser/templates/certificatecoursepage.pt:10
    2536 msgid "Course Code:"
    2537 msgstr ""
    2538 
    2539 #: waeup/kofa/browser/templates/certificatecoursepage.pt:14
    2540 msgid "Course Title:"
    2541 msgstr ""
    2542 
    2543 #: waeup/kofa/browser/templates/certificatecoursepage.pt:18
    2544 msgid "Provided by:"
    2545 msgstr ""
    2546 
    2547 #: waeup/kofa/browser/templates/certificatecoursepage.pt:26
    2548 msgid "Level:"
    2549 msgstr ""
    2550 
    2551 #: waeup/kofa/browser/templates/certificatecoursepage.pt:30
    2552 msgid "Course Category:"
    2553 msgstr ""
    2554 
    2555 #: waeup/kofa/browser/templates/certificatecoursepage.pt:34
    2556 msgid "Required course:"
    2557 msgstr ""
    2558 
    2559 #: waeup/kofa/browser/templates/certificatecoursepage.pt:6
    2560 msgid "Code:"
    2561 msgstr ""
    2562 
    2563 #: waeup/kofa/browser/templates/certificatemanagepage.pt:9
    2564 msgid "Certificate Courses"
    2565 msgstr ""
    2566 
    2567 #: waeup/kofa/browser/templates/certificatepage.pt:29
    2568 #: waeup/kofa/browser/templates/certificatemanagepage.pt:39
    2569 msgid "Semester"
    2570 msgstr ""
    2571 
    2572 #: waeup/kofa/browser/templates/certificatepage.pt:30
    2573 #: waeup/kofa/browser/templates/certificatemanagepage.pt:40
    2574 msgid "Cert. Course"
    2575 msgstr ""
    2576 
    2577 #: waeup/kofa/browser/templates/certificatepage.pt:31
    2578 #: waeup/kofa/browser/templates/certificatemanagepage.pt:41
    2579 msgid "Dep. Course"
    2580 msgstr ""
    2581 
    2582 #: waeup/kofa/browser/templates/certificatepage.pt:33
    2583 #: waeup/kofa/browser/templates/certificatemanagepage.pt:43
    2584 msgid "Course Cat."
    2585 msgstr ""
    2586 
    2587 #: waeup/kofa/browser/templates/changepw.pt:10
    2588 #. Default: "Enter the email address stored in Kofa. You can't change your email address here. If you've forgotten your email address or the email address stored in Kofa is wrong or no longer valid, use the enquiries form to request a change of address."
    2589 msgid "email_address_problem"
    2590 msgstr ""
    2591 
    2592 #: waeup/kofa/browser/templates/configurationmanagepage.pt:24
    2593 msgid "expired"
    2594 msgstr ""
    2595 
    2596 #: waeup/kofa/browser/templates/configurationmanagepage.pt:5
    2597 msgid "Site Settings"
    2598 msgstr ""
    2599 
    2600 #: waeup/kofa/browser/templates/configurationmanagepage.pt:9
    2601 msgid "Session Configurations"
    2602 msgstr ""
    2603 
    2604 #: waeup/kofa/browser/templates/datacenterexportpage.pt:1
    2605 msgid "Here you can create CSV files from parts of portal data except student data. Please pick the type of objects you want to export from the selection below. The file will be generated and then be made available for you to download in the table below. Files can only be downloaded within 24 hours after generation. The download link disappears afterwards."
    2606 msgstr ""
    2607 
    2608 #: waeup/kofa/browser/templates/datacenterexportpage.pt:40
    2609 msgid "Student data exports have to be further configured. You can either refine the results by <a href=\"@@exportconfig\">selecting certain export parameters</a> or by <a href=\"@@exportselected\">entering a set of student ids or matric numbers</a>."
    2610 msgstr ""
    2611 
    2612 #: waeup/kofa/browser/templates/datacenterexportpage.pt:88
    2613 msgid "Download"
    2614 msgstr ""
    2615 
    2616 #: waeup/kofa/browser/templates/datacenterfinishedpage.pt:11
    2617 #: waeup/kofa/browser/templates/datacenterpage.pt:19
    2618 msgid "Upload Date"
    2619 msgstr ""
    2620 
    2621 #: waeup/kofa/browser/templates/datacenterfinishedpage.pt:3
    2622 msgid "Find below the last ${count} imports. The files contain the imported datasets."
    2623 msgstr ""
    2624 
    2625 #: waeup/kofa/browser/templates/datacenterimport1page.pt:1
    2626 msgid "Step 1"
    2627 msgstr ""
    2628 
    2629 #: waeup/kofa/browser/templates/datacenterimport1page.pt:13
    2630 msgid "Filename"
    2631 msgstr ""
    2632 
    2633 #: waeup/kofa/browser/templates/datacenterimport1page.pt:14
    2634 #: waeup/kofa/browser/templates/datacenterfinishedpage.pt:10
    2635 #: waeup/kofa/browser/templates/datacenterpage.pt:18
    2636 msgid "Datasets"
    2637 msgstr ""
    2638 
    2639 #: waeup/kofa/browser/templates/datacenterimport1page.pt:15
    2640 msgid "Size"
    2641 msgstr ""
    2642 
    2643 #: waeup/kofa/browser/templates/datacenterimport1page.pt:2
    2644 msgid "Using batch processing you can mass-create, mass-update, or mass-remove datasets from the database using CSV files."
    2645 msgstr ""
    2646 
    2647 #: waeup/kofa/browser/templates/datacenterimport1page.pt:21
    2648 msgid "Select"
    2649 msgstr ""
    2650 
    2651 #: waeup/kofa/browser/templates/datacenterimport1page.pt:6
    2652 msgid "Please select a file for processing from the list below."
    2653 msgstr ""
    2654 
    2655 #: waeup/kofa/browser/templates/datacenterimport2page.pt:1
    2656 msgid "Step 2"
    2657 msgstr ""
    2658 
    2659 #: waeup/kofa/browser/templates/datacenterimport2page.pt:14
    2660 #: waeup/kofa/browser/templates/datacenterimport3page.pt:36
    2661 msgid "Header"
    2662 msgstr ""
    2663 
    2664 #: waeup/kofa/browser/templates/datacenterimport2page.pt:15
    2665 msgid "Sample Record 1"
    2666 msgstr ""
    2667 
    2668 #: waeup/kofa/browser/templates/datacenterimport2page.pt:16
    2669 msgid "Sample Record 2"
    2670 msgstr ""
    2671 
    2672 #: waeup/kofa/browser/templates/datacenterimport2page.pt:17
    2673 msgid "Sample Record 3"
    2674 msgstr ""
    2675 
    2676 #: waeup/kofa/browser/templates/datacenterimport2page.pt:39
    2677 msgid "Mode:"
    2678 msgstr ""
    2679 
    2680 #: waeup/kofa/browser/templates/datacenterimport2page.pt:8
    2681 msgid "Please select a file-processor and a processing-mode from the selections below."
    2682 msgstr ""
    2683 
    2684 #: waeup/kofa/browser/templates/datacenterimport3page.pt:1
    2685 msgid "Header fields OK"
    2686 msgstr ""
    2687 
    2688 #: waeup/kofa/browser/templates/datacenterimport3page.pt:37
    2689 msgid "change to"
    2690 msgstr ""
    2691 
    2692 #: waeup/kofa/browser/templates/datacenterimport3page.pt:38
    2693 msgid "Sample Record"
    2694 msgstr ""
    2695 
    2696 #: waeup/kofa/browser/templates/datacenterimport3page.pt:6
    2697 msgid "Step 3"
    2698 msgstr ""
    2699 
    2700 #: waeup/kofa/browser/templates/datacenterimport3page.pt:8
    2701 msgid "Eventually modify headerfields of import file below."
    2702 msgstr ""
    2703 
    2704 #: waeup/kofa/browser/templates/datacenterimport4page.pt:1
    2705 msgid "Step 4"
    2706 msgstr ""
    2707 
    2708 #: waeup/kofa/browser/templates/datacenterimport4page.pt:13
    2709 #: waeup/kofa/browser/templates/datacenterimport3page.pt:24
    2710 msgid "Processing mode:"
    2711 msgstr ""
    2712 
    2713 #: waeup/kofa/browser/templates/datacenterimport4page.pt:2
    2714 msgid "Batch processing finished."
    2715 msgstr ""
    2716 
    2717 #: waeup/kofa/browser/templates/datacenterlogspage.pt:2
    2718 msgid "Currently no log files are available."
    2719 msgstr ""
    2720 
    2721 #: waeup/kofa/browser/templates/datacentermanagepage.pt:5
    2722 msgid "Storage path"
    2723 msgstr ""
    2724 
    2725 #: waeup/kofa/browser/templates/datacenterpage.pt:1
    2726 msgid "The data center helps you to manage portal data. You can upload CSV files here, which will be available for import afterwards."
    2727 msgstr ""
    2728 
    2729 #: waeup/kofa/browser/templates/datacenterpage.pt:7
    2730 msgid "Storage path:"
    2731 msgstr ""
    2732 
    2733 #: waeup/kofa/browser/templates/datacenteruploadpage.pt:1
    2734 msgid "Before uploading a file, check that your file header corresponds with the header format of the selected processor:"
    2735 msgstr ""
    2736 
    2737 #: waeup/kofa/browser/templates/datacenteruploadpage.pt:19
    2738 msgid "Many importer fields are of type 'Choice' which means only definied keywords are allowed:"
    2739 msgstr ""
    2740 
    2741 #: waeup/kofa/browser/templates/datacenteruploadpage.pt:24
    2742 msgid "View choices"
    2743 msgstr ""
    2744 
    2745 #: waeup/kofa/browser/templates/datacenteruploadpage.pt:41
    2746 msgid "File:"
    2747 msgstr ""
    2748 
    2749 #: waeup/kofa/browser/templates/datacenteruploadpage.pt:57
    2750 msgid "Processor:"
    2751 msgstr ""
    2752 
    2753 #: waeup/kofa/browser/templates/datacenteruploadpage.pt:6
    2754 msgid "View available processors (importers)"
    2755 msgstr ""
    2756 
    2757 #: waeup/kofa/browser/templates/datacenteruploadpage.pt:70
    2758 msgid "Import Mode:"
    2759 msgstr ""
    2760 
    2761 #: waeup/kofa/browser/templates/datacenteruploadpage.pt:92
    2762 msgid "After file upload click the 'Process data' button and proceed up to import step 3. Verify that the data format meets all the import criteria and requirements of the processor."
    2763 msgstr ""
    2764 
    2765 #: waeup/kofa/browser/templates/datacenteruploadpage.pt:98
    2766 msgid "Import managers will be automatically informed by email after file upload."
    2767 msgstr ""
    2768 
    2769 #: waeup/kofa/browser/templates/default_waeup_display_form.pt:6
    2770 msgid "Uploaded Files"
    2771 msgstr ""
    2772 
    2773 #: waeup/kofa/browser/templates/fileupload.pt:25
    2774 msgid "Select new file&hellip; ${input_name}"
    2775 msgstr ""
    2776 
    2777 #: waeup/kofa/browser/templates/loginpage.pt:10
    2778 msgid "Password"
    2779 msgstr ""
    2780 
    2781 #: waeup/kofa/browser/templates/loginpage.pt:13
    2782 msgid "Notice: User names, Ids and passwords are case sensitive."
    2783 msgstr ""
    2784 
    2785 #: waeup/kofa/browser/templates/loginpage.pt:20
    2786 #. Default: "Don't forget to logout or exit your browser when you're done. If you are having trouble logging in, make sure to enable cookies in your web browser."
    2787 msgid "login_trouble1"
    2788 msgstr ""
    2789 
    2790 #: waeup/kofa/browser/templates/loginpage.pt:23
    2791 #. Default: "You don't have an account because you are a fresh student, or your student record has just been created? Acquire a Password Activation Code (PWD) and inititialize your student account <strong><a href=\"setpassword\"> here</a></strong>."
    2792 msgid "login_trouble2"
    2793 msgstr ""
    2794 
    2795 #: waeup/kofa/browser/templates/loginpage.pt:28
    2796 #: waeup/kofa/browser/templates/loginpage.pt:35
    2797 #. Default: "You don't have an account because you are a fresh student, or your student record has just been created? Inititialize your student account <strong><a href=\"requestpw\"> here</a></strong>."
    2798 msgid "login_trouble4"
    2799 msgstr ""
    2800 
    2801 #: waeup/kofa/browser/templates/loginpage.pt:32
    2802 #. Default: "Or simply forgot your student id, applicant id or password? Then request a new password <strong><a href=\"changepw\"> here</a></strong>."
    2803 msgid "login_trouble3"
    2804 msgstr ""
    2805 
    2806 #: waeup/kofa/browser/templates/loginpage.pt:4
    2807 msgid "User Name or Id"
    2808 msgstr ""
    2809 
    2810 #: waeup/kofa/browser/templates/mycourses.pt:2
    2811 msgid "Academic Session: <span>${DYNAMIC_CONTENT}</span>"
    2812 msgstr ""
    2813 
    2814 #: waeup/kofa/browser/templates/myrolespage.pt:1
    2815 msgid "My Portal Roles:"
    2816 msgstr ""
    2817 
    2818 #: waeup/kofa/browser/templates/myrolespage.pt:11
    2819 msgid "My Local Roles:"
    2820 msgstr ""
    2821 
    2822 #: waeup/kofa/browser/templates/mytranscriptrequests.pt:1
    2823 msgid "Transcripts to be validated"
    2824 msgstr ""
    2825 
    2826 #: waeup/kofa/browser/templates/mytranscriptrequests.pt:12
    2827 #: waeup/kofa/browser/templates/mytranscriptrequests.pt:43
    2828 msgid "Department"
    2829 msgstr ""
    2830 
    2831 #: waeup/kofa/browser/templates/mytranscriptrequests.pt:32
    2832 msgid "Transcripts to be signed and released"
    2833 msgstr ""
    2834 
    2835 #: waeup/kofa/browser/templates/notfound.pt:1
    2836 msgid "The page you are trying to access is not available."
    2837 msgstr ""
    2838 
    2839 #: waeup/kofa/browser/templates/notfound.pt:12
    2840 msgid "You might be trying to access a non-existing page."
    2841 msgstr ""
    2842 
    2843 #: waeup/kofa/browser/templates/notfound.pt:6
    2844 msgid "Please note the following:"
    2845 msgstr ""
    2846 
    2847 #: waeup/kofa/browser/templates/notfound.pt:9
    2848 msgid "You might have misspelled the URL."
    2849 msgstr ""
    2850 
    2851 #: waeup/kofa/browser/templates/processorsoverview.pt:29
    2852 msgid "Processor"
    2853 msgstr ""
    2854 
    2855 #: waeup/kofa/browser/templates/processorsoverview.pt:30
    2856 msgid "Required Schema Fields"
    2857 msgstr ""
    2858 
    2859 #: waeup/kofa/browser/templates/processorsoverview.pt:31
    2860 msgid "Optional Schema Fields"
    2861 msgstr ""
    2862 
    2863 #: waeup/kofa/browser/templates/processorsoverview.pt:32
    2864 msgid "Non-Schema Fields"
    2865 msgstr ""
    2866 
    2867 #: waeup/kofa/browser/templates/processorsoverview.pt:39
    2868 msgid "Download CSV File Template"
    2869 msgstr ""
    2870 
    2871 #: waeup/kofa/browser/templates/processorsoverview.pt:84
    2872 msgid "Close"
    2873 msgstr ""
    2874 
    2875 #: waeup/kofa/browser/templates/reportscontainercreate.pt:2
    2876 msgid "Here you can create reports representing portal data. Please pick the type of report you want to create from the selection below. Afterwards you can configure the report (do the settings). The report data will be calculated and then made available for you to view/download."
    2877 msgstr ""
    2878 
    2879 #: waeup/kofa/browser/templates/reportscontainerpage.pt:4
    2880 msgid "Report Number"
    2881 msgstr ""
    2882 
    2883 #: waeup/kofa/browser/templates/reportscontainerpage.pt:5
    2884 msgid "Description"
    2885 msgstr ""
    2886 
    2887 #: waeup/kofa/browser/templates/reportscontainerpage.pt:52
    2888 msgid "Create new report"
    2889 msgstr ""
    2890 
    2891 #: waeup/kofa/browser/templates/source.pt:22
    2892 msgid "Value"
    2893 msgstr ""
    2894 
    2895 #: waeup/kofa/browser/templates/staffsitelayout.pt:148
    2896 msgid "Kofa Docs for this page"
    2897 msgstr ""
    2898 
    2899 #: waeup/kofa/browser/templates/staffsitelayout.pt:46
    2900 #: waeup/kofa/browser/templates/studentsitelayout.pt:45
    2901 msgid "Contact"
    2902 msgstr ""
    2903 
    2904 #: waeup/kofa/browser/templates/staffsitelayout.pt:52
    2905 #: waeup/kofa/browser/templates/studentsitelayout.pt:51
    2906 msgid "Logout"
    2907 msgstr ""
    2908 
    2909 #: waeup/kofa/browser/templates/staffsitelayout.pt:6
    2910 #: waeup/kofa/browser/templates/studentsitelayout.pt:4
    2911 msgid "WAeUP.Kofa - Student Management System"
    2912 msgstr ""
    2913 
    2914 #: waeup/kofa/browser/templates/staffsitelayout.pt:68
    2915 msgid "M A I N T E N A N C E &nbsp;&nbsp;&nbsp; M O D E &nbsp;&nbsp;&nbsp; O N"
    2916 msgstr ""
    2917 
    2918 #: waeup/kofa/browser/templates/usereditformpage.pt:1
    2919 #. Default: "<strong>ATTENTION:</strong> This account has been suspended. The officer can't login."
    2920 msgid "officer_suspended_warning"
    2921 msgstr ""
    2922 
    2923 #: waeup/kofa/browser/viewlets.py:1015
    2924 msgid "Academic Sessions"
    2925 msgstr ""
    2926 
    2927 #: waeup/kofa/browser/viewlets.py:1023
    2928 msgid "Course Levels"
    2929 msgstr ""
    2930 
    2931 #: waeup/kofa/browser/viewlets.py:1031
    2932 #: waeup/kofa/students/browser_templates/studycoursemanagepage.pt:12
    2933 msgid "Study Levels"
    2934 msgstr ""
    2935 
    2936 #: waeup/kofa/browser/viewlets.py:1039
    2937 msgid "Study Modes"
    2938 msgstr ""
    2939 
    2940 #: waeup/kofa/browser/viewlets.py:1047
    2941 msgid "Degrees"
    2942 msgstr ""
    2943 
    2944 #: waeup/kofa/browser/viewlets.py:1055
    2945 #: waeup/kofa/students/browser_templates/exportconfig.pt:71
    2946 msgid "Payment Categories"
    2947 msgstr ""
    2948 
    2949 #: waeup/kofa/browser/viewlets.py:1063
    2950 msgid "Application Types (Prefixes)"
    2951 msgstr ""
    2952 
    2953 #: waeup/kofa/browser/viewlets.py:1071
    2954 msgid "Application Categories"
    2955 msgstr ""
    2956 
    2957 #: waeup/kofa/browser/viewlets.py:1081
    2958 msgid "Student Registration States"
    2959 msgstr ""
    2960 
    2961 #: waeup/kofa/browser/viewlets.py:1091
    2962 msgid "Verdicts"
    2963 msgstr ""
    2964 
    2965 #: waeup/kofa/browser/viewlets.py:1101
    2966 msgid "Exam Subjects"
    2967 msgstr ""
    2968 
    2969 #: waeup/kofa/browser/viewlets.py:111
    2970 #: waeup/kofa/browser/viewlets.py:173
    2971 #: waeup/kofa/students/browser.py:1229
    2972 #: waeup/kofa/students/viewlets.py:373
    2973 #: waeup/kofa/students/viewlets.py:572
    2974 #: waeup/kofa/students/viewlets.py:625
    2975 msgid "Edit"
    2976 msgstr ""
    2977 
    2978 #: waeup/kofa/browser/viewlets.py:1111
    2979 msgid "Exam Grades"
    2980 msgstr ""
    2981 
    2982 #: waeup/kofa/browser/viewlets.py:1121
    2983 msgid "Sex"
    2984 msgstr ""
    2985 
    2986 #: waeup/kofa/browser/viewlets.py:1131
    2987 msgid "Disable Payment Groups"
    2988 msgstr ""
    2989 
    2990 #: waeup/kofa/browser/viewlets.py:183
    2991 msgid "Add"
    2992 msgstr ""
    2993 
    2994 #: waeup/kofa/browser/viewlets.py:306
    2995 msgid "Any link text"
    2996 msgstr ""
    2997 
    2998 #: waeup/kofa/browser/viewlets.py:442
    2999 #: waeup/kofa/students/viewlets.py:185
    3000 msgid "Send email"
    3001 msgstr ""
    3002 
    3003 #: waeup/kofa/browser/viewlets.py:451
    3004 msgid "Edit settings"
    3005 msgstr ""
    3006 
    3007 #: waeup/kofa/browser/viewlets.py:469
    3008 #: waeup/kofa/browser/viewlets.py:508
    3009 #: waeup/kofa/browser/viewlets.py:539
    3010 #: waeup/kofa/browser/viewlets.py:588
    3011 #: waeup/kofa/browser/viewlets.py:682
    3012 msgid "Export student data"
    3013 msgstr ""
    3014 
    3015 #: waeup/kofa/browser/viewlets.py:478
    3016 msgid "Search academic section"
    3017 msgstr ""
    3018 
    3019 #: waeup/kofa/browser/viewlets.py:495
    3020 #: waeup/kofa/students/browser.py:261
    3021 msgid "Find students"
    3022 msgstr ""
    3023 
    3024 #: waeup/kofa/browser/viewlets.py:527
    3025 #: waeup/kofa/browser/viewlets.py:576
    3026 #: waeup/kofa/browser/viewlets.py:670
    3027 msgid "Show students"
    3028 msgstr ""
    3029 
    3030 #: waeup/kofa/browser/viewlets.py:551
    3031 msgid "Clear all students"
    3032 msgstr ""
    3033 
    3034 #: waeup/kofa/browser/viewlets.py:557
    3035 msgid "'All students, who requested clearance in this department, will be cleared. Are you sure?'"
    3036 msgstr ""
    3037 
    3038 #: waeup/kofa/browser/viewlets.py:616
    3039 #. Default: ""
    3040 msgid "Update session ${a} scores"
    3041 msgstr ""
    3042 
    3043 #: waeup/kofa/browser/viewlets.py:626
    3044 msgid "Download course tickets overview"
    3045 msgstr ""
    3046 
    3047 #: waeup/kofa/browser/viewlets.py:638
    3048 msgid "Download attendance sheet"
    3049 msgstr ""
    3050 
    3051 #: waeup/kofa/browser/viewlets.py:650
    3052 msgid "Download csv file (editable scores only)"
    3053 msgstr ""
    3054 
    3055 #: waeup/kofa/browser/viewlets.py:706
    3056 msgid "Show logs"
    3057 msgstr ""
    3058 
    3059 #: waeup/kofa/browser/viewlets.py:715
    3060 msgid "Upload data"
    3061 msgstr ""
    3062 
    3063 #: waeup/kofa/browser/viewlets.py:724
    3064 msgid "Process data"
    3065 msgstr ""
    3066 
    3067 #: waeup/kofa/browser/viewlets.py:733
    3068 msgid "Export data"
    3069 msgstr ""
    3070 
    3071 #: waeup/kofa/browser/viewlets.py:742
    3072 msgid "View processed files"
    3073 msgstr ""
    3074 
    3075 #: waeup/kofa/browser/viewlets.py:751
    3076 msgid "Switch maintenance mode"
    3077 msgstr ""
    3078 
    3079 #: waeup/kofa/browser/viewlets.py:757
    3080 msgid "'In maintenance mode no other user can login, and already logged-in users will be automatically logged out. You will be the only logged-in user and you can safely start any import. Please wait a few seconds before starting the import so that all running processes are finished. If the import is done, maintenance mode will be automatically disabled. \\n\\nYou really want to enable maintenance mode?'"
    3081 msgstr ""
    3082 
    3083 #: waeup/kofa/browser/viewlets.py:838
    3084 msgid "Enquiries"
    3085 msgstr ""
    3086 
    3087 #: waeup/kofa/browser/viewlets.py:992
    3088 msgid "Institution Types"
    3089 msgstr ""
    3090 
    3091 #: waeup/kofa/documents/batching.py:143
    3092 msgid "Public PDF Document Processor"
    3093 msgstr ""
    3094 
    3095 #: waeup/kofa/documents/batching.py:155
    3096 msgid "Public HTML Document Processor"
    3097 msgstr ""
    3098 
    3099 #: waeup/kofa/documents/batching.py:167
    3100 msgid "Public REST Document Processor"
    3101 msgstr ""
    3102 
    3103 #: waeup/kofa/documents/browser.py:102
    3104 msgid "Remove selected documents"
    3105 msgstr ""
    3106 
    3107 #: waeup/kofa/documents/browser.py:141
    3108 msgid "The id chosen already exists."
    3109 msgstr ""
    3110 
    3111 #: waeup/kofa/documents/browser.py:145
    3112 #. Default: ""
    3113 msgid "${a} added."
    3114 msgstr ""
    3115 
    3116 #: waeup/kofa/documents/browser.py:212
    3117 #: waeup/kofa/documents/fileviewlets.py:90
    3118 msgid "The document requested has not yet been published."
    3119 msgstr ""
    3120 
    3121 #: waeup/kofa/documents/browser.py:269
    3122 msgid "Manage document "
    3123 msgstr ""
    3124 
    3125 #: waeup/kofa/documents/browser.py:354
    3126 msgid "Trigger document transition"
    3127 msgstr ""
    3128 
    3129 #: waeup/kofa/documents/browser.py:372
    3130 msgid "Apply now"
    3131 msgstr ""
    3132 
    3133 #: waeup/kofa/documents/browser.py:380
    3134 msgid "Transition '%s' executed."
    3135 msgstr ""
    3136 
    3137 #: waeup/kofa/documents/browser.py:62
    3138 #: waeup/kofa/documents/browser.py:82
    3139 #: waeup/kofa/documents/viewlets.py:49
    3140 #: waeup/kofa/documents/browser_templates/containermanagepage.pt:3
    3141 msgid "Documents"
    3142 msgstr ""
    3143 
    3144 #: waeup/kofa/documents/browser.py:95
    3145 msgid "Manage document section"
    3146 msgstr ""
    3147 
    3148 #: waeup/kofa/documents/browser.py:97
    3149 #: waeup/kofa/documents/browser.py:120
    3150 #: waeup/kofa/documents/browser.py:130
    3151 msgid "Add document"
    3152 msgstr ""
    3153 
    3154 #: waeup/kofa/documents/browser_templates/containerpage.pt:1
    3155 #: waeup/kofa/browser/templates/facultypage.pt:1
    3156 msgid "There are no subobjects registered yet."
    3157 msgstr ""
    3158 
    3159 #: waeup/kofa/documents/browser_templates/documentaddform.pt:7
    3160 msgid "Document Type"
    3161 msgstr ""
    3162 
    3163 #: waeup/kofa/documents/browser_templates/documentmanagepage.pt:9
    3164 msgid "Files"
    3165 msgstr ""
    3166 
    3167 #: waeup/kofa/documents/browser_templates/documentpage.pt:16
    3168 #: waeup/kofa/documents/browser_templates/htmldocumentpage.pt:16
    3169 msgid "Document Type:"
    3170 msgstr ""
    3171 
    3172 #: waeup/kofa/documents/browser_templates/documentpage.pt:25
    3173 msgid "Connected Files"
    3174 msgstr ""
    3175 
    3176 #: waeup/kofa/documents/browser_templates/htmldocumentmanagepage.pt:39
    3177 #: waeup/kofa/documents/browser_templates/documentmanagepage.pt:50
    3178 #: waeup/kofa/browser/templates/departmentmanagepage.pt:102
    3179 #: waeup/kofa/browser/templates/coursemanagepage.pt:39
    3180 #: waeup/kofa/browser/templates/facultymanagepage.pt:75
    3181 #: waeup/kofa/browser/templates/certificatemanagepage.pt:95
    3182 #: waeup/kofa/applicants/browser_templates/applicantsrootmanagepage.pt:93
    3183 #: waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt:115
    3184 msgid "Local Role"
    3185 msgstr ""
    3186 
    3187 #: waeup/kofa/documents/browser_templates/htmldocumentmanagepage.pt:6
    3188 #: waeup/kofa/documents/browser_templates/documentmanagepage.pt:6
    3189 msgid "Metadata"
    3190 msgstr ""
    3191 
    3192 #: waeup/kofa/documents/browser_templates/htmldocumentmanagepage.pt:9
    3193 #: waeup/kofa/documents/browser_templates/documentmanagepage.pt:12
    3194 #: waeup/kofa/browser/templates/departmentmanagepage.pt:15
    3195 #: waeup/kofa/browser/templates/coursemanagepage.pt:9
    3196 #: waeup/kofa/browser/templates/userscontainerpage.pt:7
    3197 #: waeup/kofa/browser/templates/facultymanagepage.pt:16
    3198 #: waeup/kofa/browser/templates/certificatemanagepage.pt:13
    3199 #: waeup/kofa/applicants/browser_templates/applicantsrootmanagepage.pt:16
    3200 #: waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt:17
    3201 msgid "Local Roles"
    3202 msgstr ""
    3203 
    3204 #: waeup/kofa/documents/browser_templates/htmldocumentpage.pt:25
    3205 msgid "Content:"
    3206 msgstr ""
    3207 
    3208 #: waeup/kofa/documents/browser_templates/htmldocumentpage.pt:33
    3209 msgid "HTML Element:"
    3210 msgstr ""
    3211 
    3212 #: waeup/kofa/documents/export.py:102
    3213 msgid "Public PDF Documents"
    3214 msgstr ""
    3215 
    3216 #: waeup/kofa/documents/export.py:111
    3217 msgid "Public HTML Documents"
    3218 msgstr ""
    3219 
    3220 #: waeup/kofa/documents/export.py:120
    3221 msgid "Public REST Documents"
    3222 msgstr ""
    3223 
    3224 #: waeup/kofa/documents/fileviewlets.py:43
    3225 #: waeup/kofa/documents/fileviewlets.py:44
    3226 msgid "PDF File"
    3227 msgstr ""
    3228 
    3229 #: waeup/kofa/documents/fileviewlets.py:64
    3230 #: waeup/kofa/documents/fileviewlets.py:65
    3231 msgid "PDF Scan"
    3232 msgstr ""
    3233 
    3234 #: waeup/kofa/documents/interfaces.py:50
    3235 msgid "Document Id"
    3236 msgstr ""
    3237 
    3238 #: waeup/kofa/documents/interfaces.py:56
    3239 msgid "Document Title"
    3240 msgstr ""
    3241 
    3242 #: waeup/kofa/documents/interfaces.py:82
    3243 msgid "Multilingual content in HTML format"
    3244 msgstr ""
    3245 
    3246 #: waeup/kofa/documents/interfaces.py:95
    3247 msgid "Multilingual content in REST (reStructuredText) format"
    3248 msgstr ""
    3249 
    3250 #: waeup/kofa/documents/utils.py:34
    3251 msgid "published"
    3252 msgstr ""
    3253 
    3254 #: waeup/kofa/documents/utils.py:38
    3255 msgid "PDF Document"
    3256 msgstr ""
    3257 
    3258 #: waeup/kofa/documents/utils.py:39
    3259 msgid "HTML Document"
    3260 msgstr ""
    3261 
    3262 #: waeup/kofa/documents/utils.py:40
    3263 msgid "REST Document"
    3264 msgstr ""
    3265 
    3266 #: waeup/kofa/documents/viewlets.py:69
    3267 #: waeup/kofa/students/viewlets.py:345
    3268 #: waeup/kofa/students/viewlets.py:355
    3269 msgid "View"
    3270 msgstr ""
    3271 
    3272 #: waeup/kofa/documents/viewlets.py:89
    3273 msgid "Transition"
    3274 msgstr ""
    3275 
    3276 #: waeup/kofa/documents/workflow.py:39
    3277 msgid "Create document"
    3278 msgstr ""
    3279 
    3280 #: waeup/kofa/documents/workflow.py:42
    3281 msgid "Document created"
    3282 msgstr ""
    3283 
    3284 #: waeup/kofa/documents/workflow.py:47
    3285 msgid "Publish document"
    3286 msgstr ""
    3287 
    3288 #: waeup/kofa/documents/workflow.py:50
    3289 msgid "Document published"
    3290 msgstr ""
    3291 
    3292 #: waeup/kofa/documents/workflow.py:55
    3293 msgid "Retract documet"
    3294 msgstr ""
    3295 
    3296 #: waeup/kofa/documents/workflow.py:58
    3297 msgid "Document retracted"
    3298 msgstr ""
    3299 
    3300 #: waeup/kofa/hostels/batching.py:42
    3301 msgid "Hostel Processor"
    3302 msgstr ""
    3303 
    3304 #: waeup/kofa/hostels/batching.py:95
    3305 msgid "Bed Processor (update only)"
    3306 msgstr ""
    3307 
    3308 #: waeup/kofa/hostels/browser.py:102
    3309 msgid "Accommodation Section"
    3310 msgstr ""
    3311 
    3312 #: waeup/kofa/hostels/browser.py:115
    3313 #: waeup/kofa/hostels/browser.py:161
    3314 msgid "Manage accommodation section"
    3315 msgstr ""
    3316 
    3317 #: waeup/kofa/hostels/browser.py:123
    3318 msgid "Bed statistics"
    3319 msgstr ""
    3320 
    3321 #: waeup/kofa/hostels/browser.py:133
    3322 msgid "Release all expired bed space allocations"
    3323 msgstr ""
    3324 
    3325 #: waeup/kofa/hostels/browser.py:143
    3326 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.'"
    3327 msgstr ""
    3328 
    3329 #: waeup/kofa/hostels/browser.py:164
    3330 #: waeup/kofa/hostels/browser.py:186
    3331 #: waeup/kofa/hostels/browser.py:269
    3332 msgid "Add hostel"
    3333 msgstr ""
    3334 
    3335 #: waeup/kofa/hostels/browser.py:165
    3336 #: waeup/kofa/hostels/browser.py:191
    3337 msgid "Clear all hostels"
    3338 msgstr ""
    3339 
    3340 #: waeup/kofa/hostels/browser.py:194
    3341 msgid "All hostels cleared."
    3342 msgstr ""
    3343 
    3344 #: waeup/kofa/hostels/browser.py:205
    3345 msgid "You can't change the booking session before clearing all hostels."
    3346 msgstr ""
    3347 
    3348 #: waeup/kofa/hostels/browser.py:223
    3349 msgid "Forbidden"
    3350 msgstr ""
    3351 
    3352 #: waeup/kofa/hostels/browser.py:228
    3353 msgid "Portal must be in maintenance mode for releasing expired bed allocations."
    3354 msgstr ""
    3355 
    3356 #: waeup/kofa/hostels/browser.py:238
    3357 #. Default: ""
    3358 msgid "Successfully released ${a} beds."
    3359 msgstr ""
    3360 
    3361 #: waeup/kofa/hostels/browser.py:241
    3362 #: waeup/kofa/hostels/browser.py:418
    3363 #. Default: ""
    3364 msgid "Successfully released beds: ${a}"
    3365 msgstr ""
    3366 
    3367 #: waeup/kofa/hostels/browser.py:244
    3368 msgid "No bed released."
    3369 msgstr ""
    3370 
    3371 #: waeup/kofa/hostels/browser.py:259
    3372 msgid "Bed Statistics"
    3373 msgstr ""
    3374 
    3375 #: waeup/kofa/hostels/browser.py:273
    3376 msgid "Create hostel"
    3377 msgstr ""
    3378 
    3379 #: waeup/kofa/hostels/browser.py:282
    3380 msgid "The hostel already exists."
    3381 msgstr ""
    3382 
    3383 #: waeup/kofa/hostels/browser.py:284
    3384 msgid "Hostel created."
    3385 msgstr ""
    3386 
    3387 #: waeup/kofa/hostels/browser.py:319
    3388 msgid "Manage hostel"
    3389 msgstr ""
    3390 
    3391 #: waeup/kofa/hostels/browser.py:322
    3392 #: waeup/kofa/hostels/browser.py:338
    3393 msgid "Update all beds"
    3394 msgstr ""
    3395 
    3396 #: waeup/kofa/hostels/browser.py:323
    3397 #: waeup/kofa/hostels/browser.py:366
    3398 msgid "Switch reservation of selected beds"
    3399 msgstr ""
    3400 
    3401 #: waeup/kofa/hostels/browser.py:324
    3402 #: waeup/kofa/hostels/browser.py:400
    3403 msgid "Release selected beds"
    3404 msgstr ""
    3405 
    3406 #: waeup/kofa/hostels/browser.py:325
    3407 #: waeup/kofa/hostels/browser.py:427
    3408 msgid "Clear hostel"
    3409 msgstr ""
    3410 
    3411 #: waeup/kofa/hostels/browser.py:339
    3412 msgid "Attention: The updater removes all reservation flags of existing beds. You really want to update?"
    3413 msgstr ""
    3414 
    3415 #: waeup/kofa/hostels/browser.py:344
    3416 msgid "Portal must be in maintenance mode for bed updates."
    3417 msgstr ""
    3418 
    3419 #: waeup/kofa/hostels/browser.py:352
    3420 #. Default: ""
    3421 msgid "${a} empty beds removed, ${b} beds added, ${c} occupied beds modified"
    3422 msgstr ""
    3423 
    3424 #: waeup/kofa/hostels/browser.py:357
    3425 #. Default: ""
    3426 msgid "${a} empty beds removed, ${b} beds added, ${c} occupied beds modified (${d})"
    3427 msgstr ""
    3428 
    3429 #: waeup/kofa/hostels/browser.py:391
    3430 #. Default: ""
    3431 msgid "Successfully switched ${a} beds."
    3432 msgstr ""
    3433 
    3434 #: waeup/kofa/hostels/browser.py:394
    3435 #. Default: ""
    3436 msgid "Successfully switched beds: ${a}"
    3437 msgstr ""
    3438 
    3439 #: waeup/kofa/hostels/browser.py:423
    3440 msgid "No allocated bed selected."
    3441 msgstr ""
    3442 
    3443 #: waeup/kofa/hostels/browser.py:430
    3444 msgid "Hostel cleared."
    3445 msgstr ""
    3446 
    3447 #: waeup/kofa/hostels/browser.py:443
    3448 msgid "Allocate student"
    3449 msgstr ""
    3450 
    3451 #: waeup/kofa/hostels/browser.py:450
    3452 msgid "No valid student id."
    3453 msgstr ""
    3454 
    3455 #: waeup/kofa/hostels/browser.py:65
    3456 #: waeup/kofa/hostels/browser.py:75
    3457 #: waeup/kofa/hostels/export.py:35
    3458 #: waeup/kofa/hostels/browser_templates/containermanagepage.pt:13
    3459 msgid "Hostels"
    3460 msgstr ""
    3461 
    3462 #: waeup/kofa/hostels/browser.py:92
    3463 #. Default: ""
    3464 msgid "Block ${a}, Room ${b}, Bed ${c}"
    3465 msgstr ""
    3466 
    3467 #: waeup/kofa/hostels/browser_templates/containermanagepage.pt:8
    3468 #: waeup/kofa/browser/templates/departmentmanagepage.pt:6
    3469 #: waeup/kofa/browser/templates/coursemanagepage.pt:6
    3470 #: waeup/kofa/browser/templates/facultymanagepage.pt:6
    3471 #: waeup/kofa/browser/templates/certificatemanagepage.pt:6
    3472 #: waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt:7
    3473 msgid "Settings"
    3474 msgstr ""
    3475 
    3476 #: waeup/kofa/hostels/browser_templates/containerpage.pt:21
    3477 #: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:40
    3478 #: waeup/kofa/hostels/browser_templates/containermanagepage.pt:41
    3479 #: waeup/kofa/documents/browser_templates/containerpage.pt:8
    3480 #: waeup/kofa/documents/browser_templates/containermanagepage.pt:9
    3481 #: waeup/kofa/browser/templates/userscontainerpage.pt:4
    3482 msgid "Id"
    3483 msgstr ""
    3484 
    3485 #: waeup/kofa/hostels/browser_templates/containerpage.pt:24
    3486 msgid "Booked Beds"
    3487 msgstr ""
    3488 
    3489 #: waeup/kofa/hostels/browser_templates/containerstatistics.pt:6
    3490 msgid "Occupied"
    3491 msgstr ""
    3492 
    3493 #: waeup/kofa/hostels/browser_templates/containerstatistics.pt:7
    3494 msgid "Free"
    3495 msgstr ""
    3496 
    3497 #: waeup/kofa/hostels/browser_templates/containerstatistics.pt:8
    3498 msgid "Total"
    3499 msgstr ""
    3500 
    3501 #: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:41
    3502 #: waeup/kofa/documents/browser_templates/containerpage.pt:10
    3503 #: waeup/kofa/documents/browser_templates/containermanagepage.pt:11
    3504 #: waeup/kofa/browser/templates/searchpage.pt:22
    3505 msgid "Type"
    3506 msgstr ""
    3507 
    3508 #: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:42
    3509 msgid "Number"
    3510 msgstr ""
    3511 
    3512 #: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:43
    3513 #: waeup/kofa/accesscodes/browser_templates/searchpage.pt:32
    3514 msgid "Owner"
    3515 msgstr ""
    3516 
    3517 #: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:61
    3518 msgid "[allocate student]"
    3519 msgstr ""
    3520 
    3521 #: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:7
    3522 msgid "Hostel Data"
    3523 msgstr ""
    3524 
    3525 #: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:71
    3526 #: waeup/kofa/students/browser_templates/containermanagepage.pt:73
    3527 #: waeup/kofa/applicants/browser_templates/applicantscontainermanagepage.pt:81
    3528 msgid "Select all"
    3529 msgstr ""
    3530 
    3531 #: waeup/kofa/hostels/export.py:58
    3532 #: waeup/kofa/hostels/browser_templates/hostelmanagepage.pt:12
    3533 msgid "Beds"
    3534 msgstr ""
    3535 
    3536 #: waeup/kofa/hostels/hostel.py:222
    3537 msgid "unreserved"
    3538 msgstr ""
    3539 
    3540 #: waeup/kofa/hostels/hostel.py:225
    3541 msgid "reserved"
    3542 msgstr ""
    3543 
    3544 #: waeup/kofa/hostels/interfaces.py:114
    3545 msgid "Hostel Id"
    3546 msgstr ""
    3547 
    3548 #: waeup/kofa/hostels/interfaces.py:118
    3549 #: waeup/kofa/hostels/browser_templates/containerpage.pt:22
    3550 #: waeup/kofa/hostels/browser_templates/containermanagepage.pt:43
    3551 msgid "Sort Id"
    3552 msgstr ""
    3553 
    3554 #: waeup/kofa/hostels/interfaces.py:125
    3555 msgid "Hostel Name"
    3556 msgstr ""
    3557 
    3558 #: waeup/kofa/hostels/interfaces.py:131
    3559 msgid "Floors per Block"
    3560 msgstr ""
    3561 
    3562 #: waeup/kofa/hostels/interfaces.py:137
    3563 msgid "Rooms per Floor"
    3564 msgstr ""
    3565 
    3566 #: waeup/kofa/hostels/interfaces.py:143
    3567 msgid "Blocks for Female Students"
    3568 msgstr ""
    3569 
    3570 #: waeup/kofa/hostels/interfaces.py:151
    3571 msgid "Blocks for Male Students"
    3572 msgstr ""
    3573 
    3574 #: waeup/kofa/hostels/interfaces.py:159
    3575 msgid "Beds for Pre-Study Students"
    3576 msgstr ""
    3577 
    3578 #: waeup/kofa/hostels/interfaces.py:167
    3579 msgid "Beds for Fresh Students"
    3580 msgstr ""
    3581 
    3582 #: waeup/kofa/hostels/interfaces.py:175
    3583 msgid "Beds for Returning Students"
    3584 msgstr ""
    3585 
    3586 #: waeup/kofa/hostels/interfaces.py:183
    3587 msgid "Beds for Final Year Students"
    3588 msgstr ""
    3589 
    3590 #: waeup/kofa/hostels/interfaces.py:191
    3591 msgid "Beds without category"
    3592 msgstr ""
    3593 
    3594 #: waeup/kofa/hostels/interfaces.py:199
    3595 msgid "Special Handling"
    3596 msgstr ""
    3597 
    3598 #: waeup/kofa/hostels/interfaces.py:206
    3599 msgid "Rent"
    3600 msgstr ""
    3601 
    3602 #: waeup/kofa/hostels/interfaces.py:216
    3603 msgid "Female and male blocks overlap."
    3604 msgstr ""
    3605 
    3606 #: waeup/kofa/hostels/interfaces.py:226
    3607 msgid "Bed categories overlap."
    3608 msgstr ""
    3609 
    3610 #: waeup/kofa/hostels/interfaces.py:259
    3611 msgid "Bed Id"
    3612 msgstr ""
    3613 
    3614 #: waeup/kofa/hostels/interfaces.py:265
    3615 #: waeup/kofa/hostels/browser_templates/containerstatistics.pt:5
    3616 #: waeup/kofa/students/browser_templates/accommodationmanagepage.pt:48
    3617 msgid "Bed Type"
    3618 msgstr ""
    3619 
    3620 #: waeup/kofa/hostels/interfaces.py:271
    3621 msgid "Bed Number"
    3622 msgstr ""
    3623 
    3624 #: waeup/kofa/hostels/interfaces.py:276
    3625 msgid "Owner (Student)"
    3626 msgstr ""
    3627 
    3628 #: waeup/kofa/hostels/interfaces.py:277
    3629 msgid "Enter valid student id."
    3630 msgstr ""
    3631 
    3632 #: waeup/kofa/hostels/interfaces.py:292
    3633 msgid "Either student does not exist or student is not in accommodation session."
    3634 msgstr ""
    3635 
    3636 #: waeup/kofa/hostels/interfaces.py:299
    3637 #. Default: ""
    3638 msgid "This student resides in bed ${a}."
    3639 msgstr ""
    3640 
    3641 #: waeup/kofa/hostels/interfaces.py:48
    3642 msgid "Hostel Allocation Start Date"
    3643 msgstr ""
    3644 
    3645 #: waeup/kofa/hostels/interfaces.py:54
    3646 msgid "Hostel Allocation Closing Date"
    3647 msgstr ""
    3648 
    3649 #: waeup/kofa/hostels/interfaces.py:60
    3650 msgid "Booking Session"
    3651 msgstr ""
    3652 
    3653 #: waeup/kofa/hostels/interfaces.py:68
    3654 msgid "Allowed States"
    3655 msgstr ""
    3656 
    3657 #: waeup/kofa/hostels/interfaces.py:76
    3658 msgid "Allocation Expiration Time (days)"
    3659 msgstr ""
    3660 
    3661 #: waeup/kofa/hostels/interfaces.py:77
    3662 msgid "Number of days after which allocation is being annulled"
    3663 msgstr ""
    3664 
    3665 #: waeup/kofa/hostels/vocabularies.py:38
    3666 msgid "Bed A"
    3667 msgstr ""
    3668 
    3669 #: waeup/kofa/hostels/vocabularies.py:39
    3670 msgid "Bed B"
    3671 msgstr ""
    3672 
    3673 #: waeup/kofa/hostels/vocabularies.py:40
    3674 msgid "Bed C"
    3675 msgstr ""
    3676 
    3677 #: waeup/kofa/hostels/vocabularies.py:41
    3678 msgid "Bed D"
    3679 msgstr ""
    3680 
    3681 #: waeup/kofa/hostels/vocabularies.py:42
    3682 msgid "Bed E"
    3683 msgstr ""
    3684 
    3685 #: waeup/kofa/hostels/vocabularies.py:43
    3686 msgid "Bed F"
    3687 msgstr ""
    3688 
    3689 #: waeup/kofa/hostels/vocabularies.py:44
    3690 msgid "Bed G"
    3691 msgstr ""
    3692 
    3693 #: waeup/kofa/hostels/vocabularies.py:45
    3694 msgid "Bed H"
    3695 msgstr ""
    3696 
    3697 #: waeup/kofa/hostels/vocabularies.py:46
    3698 msgid "Bed I"
    3699 msgstr ""
    3700 
    3701 #: waeup/kofa/hostels/vocabularies.py:47
    3702 msgid "Bed J"
    3703 msgstr ""
    3704 
    3705 #: waeup/kofa/hostels/vocabularies.py:48
    3706 msgid "Bed K"
    3707 msgstr ""
    3708 
    3709 #: waeup/kofa/hostels/vocabularies.py:49
    3710 msgid "Bed L"
    3711 msgstr ""
    3712 
    3713 #: waeup/kofa/hostels/vocabularies.py:53
    3714 msgid "Block A"
    3715 msgstr ""
    3716 
    3717 #: waeup/kofa/hostels/vocabularies.py:54
    3718 msgid "Block B"
    3719 msgstr ""
    3720 
    3721 #: waeup/kofa/hostels/vocabularies.py:55
    3722 msgid "Block C"
    3723 msgstr ""
    3724 
    3725 #: waeup/kofa/hostels/vocabularies.py:56
    3726 msgid "Block D"
    3727 msgstr ""
    3728 
    3729 #: waeup/kofa/hostels/vocabularies.py:57
    3730 msgid "Block E"
    3731 msgstr ""
    3732 
    3733 #: waeup/kofa/hostels/vocabularies.py:58
    3734 msgid "Block F"
    3735 msgstr ""
    3736 
    3737 #: waeup/kofa/hostels/vocabularies.py:59
    3738 msgid "Block G"
    3739 msgstr ""
    3740 
    3741 #: waeup/kofa/hostels/vocabularies.py:60
    3742 msgid "Block H"
    3743 msgstr ""
    3744 
    3745 #: waeup/kofa/hostels/vocabularies.py:61
    3746 msgid "Block I"
    3747 msgstr ""
    3748 
    3749 #: waeup/kofa/hostels/vocabularies.py:62
    3750 msgid "Block J"
    3751 msgstr ""
    3752 
    3753 #: waeup/kofa/hostels/vocabularies.py:63
    3754 msgid "Block K"
    3755 msgstr ""
    3756 
    3757 #: waeup/kofa/hostels/vocabularies.py:64
    3758 msgid "Block L"
    3759 msgstr ""
    3760 
    3761 #: waeup/kofa/hostels/vocabularies.py:65
    3762 msgid "Block M"
    3763 msgstr ""
    3764 
    3765 #: waeup/kofa/hostels/vocabularies.py:66
    3766 msgid "Block N"
    3767 msgstr ""
    3768 
    3769 #: waeup/kofa/hostels/vocabularies.py:67
    3770 msgid "Block O"
    3771 msgstr ""
    3772 
    3773 #: waeup/kofa/hostels/vocabularies.py:68
    3774 msgid "Block P"
    3775 msgstr ""
    3776 
    3777 #: waeup/kofa/hostels/vocabularies.py:69
    3778 msgid "Block Q"
    3779 msgstr ""
    3780 
    3781 #: waeup/kofa/hostels/vocabularies.py:70
    3782 msgid "Block R"
    3783 msgstr ""
    3784 
    3785 #: waeup/kofa/hostels/vocabularies.py:71
    3786 msgid "Block S"
    3787 msgstr ""
    3788 
    3789 #: waeup/kofa/hostels/vocabularies.py:72
    3790 msgid "Block T"
    3791 msgstr ""
    3792 
    3793 #: waeup/kofa/hostels/vocabularies.py:73
    3794 msgid "Block U"
    3795 msgstr ""
    3796 
    3797 #: waeup/kofa/hostels/vocabularies.py:74
    3798 msgid "Block V"
    3799 msgstr ""
    3800 
    3801 #: waeup/kofa/hostels/vocabularies.py:75
    3802 msgid "Block W"
    3803 msgstr ""
    3804 
    3805 #: waeup/kofa/interfaces.py:100
    3806 msgid "clearance requested"
    3807 msgstr ""
    3808 
    3809 #: waeup/kofa/interfaces.py:101
    3810 msgid "cleared"
    3811 msgstr ""
    3812 
    3813 #: waeup/kofa/interfaces.py:102
    3814 msgid "school fee paid"
    3815 msgstr ""
    3816 
    3817 #: waeup/kofa/interfaces.py:103
    3818 msgid "courses registered"
    3819 msgstr ""
    3820 
    3821 #: waeup/kofa/interfaces.py:104
    3822 msgid "courses validated"
    3823 msgstr ""
    3824 
    3825 #: waeup/kofa/interfaces.py:105
    3826 msgid "returning"
    3827 msgstr ""
    3828 
    3829 #: waeup/kofa/interfaces.py:106
    3830 msgid "graduated"
    3831 msgstr ""
    3832 
    3833 #: waeup/kofa/interfaces.py:107
    3834 msgid "transcript requested"
    3835 msgstr ""
    3836 
    3837 #: waeup/kofa/interfaces.py:108
    3838 msgid "transcript validated"
    3839 msgstr ""
    3840 
    3841 #: waeup/kofa/interfaces.py:109
    3842 msgid "transcript released"
    3843 msgstr ""
    3844 
    3845 #: waeup/kofa/interfaces.py:265
    3846 msgid "Subject"
    3847 msgstr ""
    3848 
    3849 #: waeup/kofa/interfaces.py:270
    3850 #: waeup/kofa/students/browser.py:1433
    3851 #: waeup/kofa/students/browser.py:1602
    3852 #: waeup/kofa/students/browser_templates/courseticketmanagepage.pt:10
    3853 msgid "Grade"
    3854 msgstr ""
    3855 
    3856 #: waeup/kofa/interfaces.py:297
    3857 msgid "Email Address (referees will be automatically invited by email after final submission of this form)"
    3858 msgstr ""
    3859 
    3860 #: waeup/kofa/interfaces.py:472
     4018#: waeup/kofa/interfaces.py:471
    38614019msgid "Processor name"
    38624020msgstr ""
    38634021
    3864 #: waeup/kofa/interfaces.py:498
     4022#: waeup/kofa/interfaces.py:497
     4023#: waeup/kofa/applicants/browser_templates/checktranscriptstatus.pt:20
    38654024msgid "Email Address:"
    38664025msgstr ""
    38674026
    3868 #: waeup/kofa/interfaces.py:505
     4027#: waeup/kofa/interfaces.py:504
    38694028msgid "Email to:"
    38704029msgstr ""
    38714030
    3872 #: waeup/kofa/interfaces.py:512
     4031#: waeup/kofa/interfaces.py:511
    38734032msgid "Subject:"
    38744033msgstr ""
    38754034
    3876 #: waeup/kofa/interfaces.py:516
     4035#: waeup/kofa/interfaces.py:515
    38774036msgid "Full Name:"
    38784037msgstr ""
    38794038
    3880 #: waeup/kofa/interfaces.py:520
     4039#: waeup/kofa/interfaces.py:519
    38814040msgid "Text:"
    38824041msgstr ""
    38834042
    3884 #: waeup/kofa/interfaces.py:550
    3885 #: waeup/kofa/interfaces.py:608
     4043#: waeup/kofa/interfaces.py:549
     4044#: waeup/kofa/interfaces.py:607
    38864045msgid "Public Name"
    38874046msgstr ""
    38884047
     4048#: waeup/kofa/interfaces.py:561
    38894049#: waeup/kofa/interfaces.py:562
    3890 #: waeup/kofa/interfaces.py:563
    38914050msgid "Number of failed logins"
    38924051msgstr ""
    38934052
     4053#: waeup/kofa/interfaces.py:568
     4054msgid "Timestamp"
     4055msgstr ""
     4056
    38944057#: waeup/kofa/interfaces.py:569
    3895 msgid "Timestamp"
    3896 msgstr ""
    3897 
    3898 #: waeup/kofa/interfaces.py:570
    38994058msgid "Timestamp of last failed login or `None`"
    39004059msgstr ""
    39014060
    3902 #: waeup/kofa/interfaces.py:599
     4061#: waeup/kofa/interfaces.py:598
    39034062#: waeup/kofa/documents/browser_templates/htmldocumentmanagepage.pt:35
    39044063#: waeup/kofa/documents/browser_templates/documentmanagepage.pt:46
     
    39124071msgstr ""
    39134072
    3914 #: waeup/kofa/interfaces.py:600
     4073#: waeup/kofa/interfaces.py:599
    39154074msgid "Login name of user"
    39164075msgstr ""
    39174076
    3918 #: waeup/kofa/interfaces.py:604
     4077#: waeup/kofa/interfaces.py:603
    39194078#: waeup/kofa/students/browser_templates/containerpage.pt:48
    39204079#: waeup/kofa/browser/templates/findstudentspage.pt:34
     
    39224081msgstr ""
    39234082
    3924 #: waeup/kofa/interfaces.py:609
     4083#: waeup/kofa/interfaces.py:608
    39254084msgid "Substitute for officer's real name in student object histories."
    39264085msgstr ""
    39274086
    3928 #: waeup/kofa/interfaces.py:614
     4087#: waeup/kofa/interfaces.py:613
    39294088msgid "Description/Notice"
    39304089msgstr ""
    39314090
    3932 #: waeup/kofa/interfaces.py:631
     4091#: waeup/kofa/interfaces.py:630
    39334092#: waeup/kofa/browser/templates/userscontainerpage.pt:6
    39344093msgid "Portal Roles"
    39354094msgstr ""
    39364095
    3937 #: waeup/kofa/interfaces.py:638
     4096#: waeup/kofa/interfaces.py:637
    39384097msgid "If set, the account is immediately blocked."
    39394098msgstr ""
     
    39564115msgstr ""
    39574116
     4117#: waeup/kofa/interfaces.py:696
     4118msgid "Name of University"
     4119msgstr ""
     4120
    39584121#: waeup/kofa/interfaces.py:697
    3959 msgid "Name of University"
    3960 msgstr ""
    3961 
    3962 #: waeup/kofa/interfaces.py:698
    39634122msgid "Sample University"
    39644123msgstr ""
     
    39684127msgstr ""
    39694128
    3970 #: waeup/kofa/interfaces.py:703
     4129#: waeup/kofa/interfaces.py:702
    39714130msgid "Abbreviated Title of University"
    39724131msgstr ""
    39734132
    3974 #: waeup/kofa/interfaces.py:709
     4133#: waeup/kofa/interfaces.py:708
    39754134msgid "Content in HTML format"
    39764135msgstr ""
     
    39804139msgstr ""
    39814140
    3982 #: waeup/kofa/interfaces.py:722
     4141#: waeup/kofa/interfaces.py:721
    39834142msgid "Name of Administrator"
    39844143msgstr ""
    39854144
    3986 #: waeup/kofa/interfaces.py:728
     4145#: waeup/kofa/interfaces.py:727
    39874146msgid "Email Address of Administrator"
    39884147msgstr ""
    39894148
     4149#: waeup/kofa/interfaces.py:734
     4150msgid "Subject of Email to Administrator"
     4151msgstr ""
     4152
    39904153#: waeup/kofa/interfaces.py:735
    3991 msgid "Subject of Email to Administrator"
    3992 msgstr ""
    3993 
    3994 #: waeup/kofa/interfaces.py:736
    39954154msgid "Kofa Contact"
    39964155msgstr ""
    39974156
    3998 #: waeup/kofa/interfaces.py:741
     4157#: waeup/kofa/interfaces.py:740
    39994158msgid "SMTP mailer to use when sending mail"
    40004159msgstr ""
    40014160
    4002 #: waeup/kofa/interfaces.py:748
     4161#: waeup/kofa/interfaces.py:747
    40034162msgid "Captcha used for public registration pages"
    40044163msgstr ""
    40054164
    4006 #: waeup/kofa/interfaces.py:755
     4165#: waeup/kofa/interfaces.py:754
    40074166msgid "Carry-over Course Registration"
    40084167msgstr ""
    40094168
     4169#: waeup/kofa/interfaces.py:759
     4170msgid "Current Academic Session"
     4171msgstr ""
     4172
    40104173#: waeup/kofa/interfaces.py:760
    4011 msgid "Current Academic Session"
    4012 msgstr ""
    4013 
    4014 #: waeup/kofa/interfaces.py:761
    40154174msgid "Session for which score editing is allowed"
    40164175msgstr ""
    40174176
     4177#: waeup/kofa/interfaces.py:768
     4178msgid "Next Matriculation Number Integer"
     4179msgstr ""
     4180
    40184181#: waeup/kofa/interfaces.py:769
    4019 msgid "Next Matriculation Number Integer"
    4020 msgstr ""
    4021 
    4022 #: waeup/kofa/interfaces.py:770
    40234182msgid "Integer used for constructing the next matriculation number"
    40244183msgstr ""
    40254184
     4185#: waeup/kofa/interfaces.py:777
     4186msgid "Next Matriculation Number Integer 2"
     4187msgstr ""
     4188
    40264189#: waeup/kofa/interfaces.py:778
    4027 msgid "Next Matriculation Number Integer 2"
    4028 msgstr ""
    4029 
    4030 #: waeup/kofa/interfaces.py:779
    40314190msgid "2nd integer used for constructing the next matriculation number"
    40324191msgstr ""
    40334192
     4193#: waeup/kofa/interfaces.py:786
     4194msgid "Next Matriculation Number Integer 3"
     4195msgstr ""
     4196
    40344197#: waeup/kofa/interfaces.py:787
    4035 msgid "Next Matriculation Number Integer 3"
    4036 msgstr ""
    4037 
    4038 #: waeup/kofa/interfaces.py:788
    40394198msgid "3rd integer used for constructing the next matriculation number"
    40404199msgstr ""
    40414200
     4201#: waeup/kofa/interfaces.py:795
     4202msgid "Next Matriculation Number Integer 4"
     4203msgstr ""
     4204
    40424205#: waeup/kofa/interfaces.py:796
    4043 msgid "Next Matriculation Number Integer 4"
    4044 msgstr ""
    4045 
    4046 #: waeup/kofa/interfaces.py:797
    40474206msgid "4th integer used for constructing the next matriculation number"
    40484207msgstr ""
    40494208
     4209#: waeup/kofa/interfaces.py:804
     4210msgid "Export-disabled message"
     4211msgstr ""
     4212
    40504213#: waeup/kofa/interfaces.py:805
    4051 msgid "Export-disabled message"
    4052 msgstr ""
    4053 
    4054 #: waeup/kofa/interfaces.py:806
    40554214msgid "Message which will show up if an officer tries to export data. All exporters are automatcally disabled if this field is set."
    40564215msgstr ""
    40574216
    4058 #: waeup/kofa/interfaces.py:813
     4217#: waeup/kofa/interfaces.py:812
    40594218msgid "Maintenance Mode enabled by"
    40604219msgstr ""
    40614220
    4062 #: waeup/kofa/interfaces.py:827
    4063 #: waeup/kofa/interfaces.py:900
     4221#: waeup/kofa/interfaces.py:826
     4222#: waeup/kofa/interfaces.py:899
    40644223msgid "Academic Session"
    40654224msgstr ""
    40664225
    4067 #: waeup/kofa/interfaces.py:835
     4226#: waeup/kofa/interfaces.py:834
    40684227msgid "Clearance enabled"
    40694228msgstr ""
    40704229
    4071 #: waeup/kofa/interfaces.py:840
     4230#: waeup/kofa/interfaces.py:839
    40724231msgid "Payment disabled"
    40734232msgstr ""
    40744233
    4075 #: waeup/kofa/interfaces.py:849
     4234#: waeup/kofa/interfaces.py:848
    40764235msgid "Course Reg. Deadline"
    40774236msgstr ""
    40784237
    4079 #: waeup/kofa/interfaces.py:855
     4238#: waeup/kofa/interfaces.py:854
    40804239msgid "Acceptance Fee"
    40814240msgstr ""
    40824241
    4083 #: waeup/kofa/interfaces.py:861
     4242#: waeup/kofa/interfaces.py:860
    40844243msgid "Bed Booking Fee"
    40854244msgstr ""
    40864245
    4087 #: waeup/kofa/interfaces.py:867
     4246#: waeup/kofa/interfaces.py:866
    40884247msgid "Rent (fallback)"
    40894248msgstr ""
    40904249
    4091 #: waeup/kofa/interfaces.py:873
     4250#: waeup/kofa/interfaces.py:872
    40924251msgid "Late Course Reg. Fee"
    40934252msgstr ""
    40944253
    4095 #: waeup/kofa/interfaces.py:879
     4254#: waeup/kofa/interfaces.py:878
    40964255msgid "Transcript Fee"
    40974256msgstr ""
    40984257
    4099 #: waeup/kofa/interfaces.py:885
     4258#: waeup/kofa/interfaces.py:884
    41004259msgid "Transfer Fee"
    41014260msgstr ""
     
    41194278#: waeup/kofa/mandates/mandate.py:70
    41204279#: waeup/kofa/mandates/mandate.py:98
    4121 #: waeup/kofa/mandates/mandate.py:127
     4280#: waeup/kofa/mandates/mandate.py:126
    41224281msgid "Wrong mandate parameters."
    4123 msgstr ""
    4124 
    4125 #: waeup/kofa/mandates/mandate.py:73
    4126 #: waeup/kofa/mandates/mandate.py:101
    4127 #: waeup/kofa/mandates/mandate.py:122
    4128 msgid "Mandate expired."
    41294282msgstr ""
    41304283
     
    41354288#: waeup/kofa/objecthistory.py:66
    41364289msgid "by"
     4290msgstr ""
     4291
     4292#: waeup/kofa/payments/interfaces.py:100
     4293msgid "Ticket Creation Date"
    41374294msgstr ""
    41384295
     
    41414298#: waeup/kofa/students/browser_templates/exportconfig.pt:55
    41424299#: waeup/kofa/students/browser_templates/exportconfig_certificate.pt:44
    4143 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:128
    4144 #: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:50
     4300#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:159
     4301#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:90
    41454302msgid "Payment Date"
    41464303msgstr ""
     
    41874344
    41884345#: waeup/kofa/payments/interfaces.py:59
    4189 #: waeup/kofa/students/interfaces.py:877
    4190 #: waeup/kofa/students/interfaces.py:900
     4346#: waeup/kofa/students/interfaces.py:884
     4347#: waeup/kofa/students/interfaces.py:907
    41914348msgid "Payment Category"
    41924349msgstr ""
     
    42014358
    42024359#: waeup/kofa/payments/interfaces.py:87
    4203 #: waeup/kofa/students/interfaces.py:884
    4204 #: waeup/kofa/students/interfaces.py:907
     4360#: waeup/kofa/students/interfaces.py:891
     4361#: waeup/kofa/students/interfaces.py:914
    42054362#: waeup/kofa/students/browser_templates/exportconfig.pt:85
    42064363msgid "Payment Session"
     
    42334390
    42344391#: waeup/kofa/students/accommodation.py:150
    4235 #: waeup/kofa/students/browser.py:2419
     4392#: waeup/kofa/students/browser.py:2501
    42364393#. Default: ""
    42374394msgid "There is no free bed in your category ${a}."
     
    42394396
    42404397#: waeup/kofa/students/accommodation.py:162
    4241 #: waeup/kofa/students/browser.py:2459
     4398#: waeup/kofa/students/browser.py:2541
    42424399#. Default: ""
    42434400msgid "${a}, Block ${b}, Room ${c}, Bed ${d} (${e})"
     
    42494406msgstr ""
    42504407
    4251 #: waeup/kofa/students/batching.py:1014
     4408#: waeup/kofa/students/batching.py:1002
     4409msgid "Verdict Processor (special processor, update only)"
     4410msgstr ""
     4411
     4412#: waeup/kofa/students/batching.py:1053
    42524413msgid "System"
    42534414msgstr ""
     
    42614422msgstr ""
    42624423
    4263 #: waeup/kofa/students/batching.py:664
     4424#: waeup/kofa/students/batching.py:685
    42644425msgid "CourseTicket Processor"
    4265 msgstr ""
    4266 
    4267 #: waeup/kofa/students/batching.py:788
    4268 msgid "StudentOnlinePayment Processor"
    42694426msgstr ""
    42704427
     
    42734430msgstr ""
    42744431
    4275 #: waeup/kofa/students/batching.py:963
    4276 msgid "Verdict Processor (special processor, update only)"
    4277 msgstr ""
    4278 
    4279 #: waeup/kofa/students/browser.py:1021
     4432#: waeup/kofa/students/batching.py:827
     4433msgid "StudentOnlinePayment Processor"
     4434msgstr ""
     4435
     4436#: waeup/kofa/students/browser.py:1023
     4437msgid "First Study Course, "
     4438msgstr ""
     4439
     4440#: waeup/kofa/students/browser.py:1025
     4441msgid "Second Study Course"
     4442msgstr ""
     4443
     4444#: waeup/kofa/students/browser.py:1030
     4445msgid "First Study Course"
     4446msgstr ""
     4447
     4448#: waeup/kofa/students/browser.py:1041
     4449msgid "Manage study course"
     4450msgstr ""
     4451
     4452#: waeup/kofa/students/browser.py:1044
     4453#: waeup/kofa/students/browser.py:1118
     4454msgid "Remove selected levels"
     4455msgstr ""
     4456
     4457#: waeup/kofa/students/browser.py:1045
     4458#: waeup/kofa/students/browser.py:1091
     4459msgid "Add study level"
     4460msgstr ""
     4461
     4462#: waeup/kofa/students/browser.py:1070
    42804463msgid "Current level not available for certificate."
    42814464msgstr ""
    42824465
    4283 #: waeup/kofa/students/browser.py:1047
     4466#: waeup/kofa/students/browser.py:1096
    42844467msgid "You must select a session for the level."
    42854468msgstr ""
    42864469
    4287 #: waeup/kofa/students/browser.py:1052
     4470#: waeup/kofa/students/browser.py:1101
    42884471msgid "Level zero must not be assigned a session."
    42894472msgstr ""
    42904473
    4291 #: waeup/kofa/students/browser.py:1063
     4474#: waeup/kofa/students/browser.py:1112
    42924475msgid "Study level has been added."
    42934476msgstr ""
    42944477
    4295 #: waeup/kofa/students/browser.py:1065
    4296 #: waeup/kofa/students/browser.py:2916
     4478#: waeup/kofa/students/browser.py:1114
     4479#: waeup/kofa/students/browser.py:2998
    42974480msgid "This level exists."
    42984481msgstr ""
    42994482
    4300 #: waeup/kofa/students/browser.py:1075
     4483#: waeup/kofa/students/browser.py:1124
    43014484msgid "No study level selected."
    43024485msgstr ""
    43034486
    4304 #: waeup/kofa/students/browser.py:1099
     4487#: waeup/kofa/students/browser.py:1148
    43054488#: waeup/kofa/students/viewlets.py:756
    43064489msgid "Request transcript"
    43074490msgstr ""
    43084491
    4309 #: waeup/kofa/students/browser.py:1109
    4310 #: waeup/kofa/students/browser.py:2669
     4492#: waeup/kofa/students/browser.py:1158
     4493#: waeup/kofa/students/browser.py:2751
    43114494msgid "Wrong state"
    43124495msgstr ""
    43134496
    4314 #: waeup/kofa/students/browser.py:1128
    4315 #: waeup/kofa/students/browser.py:2396
    4316 #: waeup/kofa/students/browser.py:2691
    4317 #: waeup/kofa/students/browser.py:2840
     4497#: waeup/kofa/students/browser.py:1177
     4498#: waeup/kofa/students/browser.py:2478
     4499#: waeup/kofa/students/browser.py:2773
     4500#: waeup/kofa/students/browser.py:2922
    43184501msgid "Activation code is invalid."
    43194502msgstr ""
    43204503
    4321 #: waeup/kofa/students/browser.py:1131
    4322 #: waeup/kofa/students/browser.py:2426
    4323 #: waeup/kofa/students/browser.py:2694
    4324 #: waeup/kofa/students/browser.py:2844
     4504#: waeup/kofa/students/browser.py:1180
     4505#: waeup/kofa/students/browser.py:2508
     4506#: waeup/kofa/students/browser.py:2776
     4507#: waeup/kofa/students/browser.py:2926
    43254508msgid "Activation code has already been used."
    43264509msgstr ""
    43274510
    4328 #: waeup/kofa/students/browser.py:1136
    4329 #: waeup/kofa/students/browser.py:2435
    4330 #: waeup/kofa/students/browser.py:2699
    4331 #: waeup/kofa/students/browser.py:2848
    4332 #: waeup/kofa/students/browser.py:3133
     4511#: waeup/kofa/students/browser.py:1185
     4512#: waeup/kofa/students/browser.py:2517
     4513#: waeup/kofa/students/browser.py:2781
     4514#: waeup/kofa/students/browser.py:2930
     4515#: waeup/kofa/students/browser.py:3221
    43334516msgid "invalidated"
    43344517msgstr ""
    43354518
    4336 #: waeup/kofa/students/browser.py:1140
    4337 #: waeup/kofa/students/browser.py:2441
    4338 #: waeup/kofa/students/browser.py:2703
    4339 #: waeup/kofa/students/browser.py:2853
     4519#: waeup/kofa/students/browser.py:1189
     4520#: waeup/kofa/students/browser.py:2523
     4521#: waeup/kofa/students/browser.py:2785
     4522#: waeup/kofa/students/browser.py:2935
    43404523msgid "You are not the owner of this access code."
    43414524msgstr ""
    43424525
    4343 #: waeup/kofa/students/browser.py:1164
     4526#: waeup/kofa/students/browser.py:1213
    43444527msgid "Transcript processing has been started."
    43454528msgstr ""
    43464529
    4347 #: waeup/kofa/students/browser.py:1184
     4530#: waeup/kofa/students/browser.py:1233
    43484531msgid "You have already signed this transcript."
    43494532msgstr ""
    43504533
    4351 #: waeup/kofa/students/browser.py:1188
     4534#: waeup/kofa/students/browser.py:1237
    43524535msgid "Transcript signed."
    43534536msgstr ""
    43544537
    4355 #: waeup/kofa/students/browser.py:1215
     4538#: waeup/kofa/students/browser.py:1264
    43564539#: waeup/kofa/students/viewlets.py:772
    43574540#: waeup/kofa/students/workflow.py:231
     
    43594542msgstr ""
    43604543
    4361 #: waeup/kofa/students/browser.py:1216
     4544#: waeup/kofa/students/browser.py:1265
    43624545msgid "Save comment and validate transcript"
    43634546msgstr ""
    43644547
    4365 #: waeup/kofa/students/browser.py:1260
     4548#: waeup/kofa/students/browser.py:1309
    43664549msgid "Transcript validated."
    43674550msgstr ""
    43684551
    4369 #: waeup/kofa/students/browser.py:1286
     4552#: waeup/kofa/students/browser.py:1335
    43704553#: waeup/kofa/students/viewlets.py:788
    43714554#: waeup/kofa/students/workflow.py:238
     
    43734556msgstr ""
    43744557
    4375 #: waeup/kofa/students/browser.py:1287
     4558#: waeup/kofa/students/browser.py:1336
    43764559msgid "Save comment and release transcript"
    43774560msgstr ""
    43784561
    4379 #: waeup/kofa/students/browser.py:1321
     4562#: waeup/kofa/students/browser.py:1370
    43804563msgid "Transcript released and final transcript file saved."
    43814564msgstr ""
    43824565
    4383 #: waeup/kofa/students/browser.py:1354
    4384 #: waeup/kofa/students/browser.py:1388
     4566#: waeup/kofa/students/browser.py:1407
     4567#: waeup/kofa/students/browser.py:1441
    43854568msgid "Forbidden!"
    43864569msgstr ""
    43874570
    4388 #: waeup/kofa/students/browser.py:1368
     4571#: waeup/kofa/students/browser.py:1421
    43894572#. Default: ""
    43904573msgid "${a}: Transcript Data"
    43914574msgstr ""
    43924575
    4393 #: waeup/kofa/students/browser.py:1403
     4576#: waeup/kofa/students/browser.py:1456
    43944577#: waeup/kofa/students/viewlets.py:805
    43954578msgid "Academic Transcript"
    43964579msgstr ""
    43974580
    4398 #: waeup/kofa/students/browser.py:1410
     4581#: waeup/kofa/students/browser.py:1463
    43994582msgid "CERTIFIED TRUE COPY"
    44004583msgstr ""
    44014584
    4402 #: waeup/kofa/students/browser.py:1428
     4585#: waeup/kofa/students/browser.py:1481
    44034586#: waeup/kofa/students/browser_templates/transcript.pt:36
    44044587#: waeup/kofa/students/browser_templates/studyleveleditpage.pt:14
     
    44094592msgstr ""
    44104593
    4411 #: waeup/kofa/students/browser.py:1431
    4412 #: waeup/kofa/students/interfaces.py:699
     4594#: waeup/kofa/students/browser.py:1484
     4595#: waeup/kofa/students/interfaces.py:706
    44134596#: waeup/kofa/university/interfaces.py:165
    44144597#: waeup/kofa/students/browser_templates/transcript.pt:39
     
    44174600msgstr ""
    44184601
    4419 #: waeup/kofa/students/browser.py:1432
    4420 #: waeup/kofa/students/browser.py:1601
    4421 #: waeup/kofa/students/browser.py:3738
    4422 #: waeup/kofa/students/interfaces.py:722
    4423 #: waeup/kofa/students/interfaces.py:753
     4602#: waeup/kofa/students/browser.py:1485
     4603#: waeup/kofa/students/browser.py:1654
     4604#: waeup/kofa/students/browser.py:3832
     4605#: waeup/kofa/students/interfaces.py:729
     4606#: waeup/kofa/students/interfaces.py:760
    44244607#: waeup/kofa/students/browser_templates/editscorespage.pt:83
    44254608#: waeup/kofa/students/browser_templates/studyleveleditpage.pt:20
     
    44304613msgstr ""
    44314614
    4432 #: waeup/kofa/students/browser.py:1467
     4615#: waeup/kofa/students/browser.py:1520
    44334616#: waeup/kofa/students/viewlets.py:233
    44344617msgid "Transfer student"
    44354618msgstr ""
    44364619
    4437 #: waeup/kofa/students/browser.py:1472
     4620#: waeup/kofa/students/browser.py:1525
    44384621msgid "Transfer"
    44394622msgstr ""
    44404623
    4441 #: waeup/kofa/students/browser.py:1476
     4624#: waeup/kofa/students/browser.py:1529
    44424625msgid "Current level does not match certificate levels."
    44434626msgstr ""
    44444627
    4445 #: waeup/kofa/students/browser.py:1479
     4628#: waeup/kofa/students/browser.py:1532
    44464629msgid "Former study course record incomplete."
    44474630msgstr ""
    44484631
    4449 #: waeup/kofa/students/browser.py:1482
     4632#: waeup/kofa/students/browser.py:1535
    44504633msgid "Maximum number of transfers exceeded."
    44514634msgstr ""
    44524635
    4453 #: waeup/kofa/students/browser.py:1485
     4636#: waeup/kofa/students/browser.py:1538
    44544637msgid "Successfully transferred."
    44554638msgstr ""
    44564639
    4457 #: waeup/kofa/students/browser.py:1495
     4640#: waeup/kofa/students/browser.py:1548
    44584641msgid "Revert previous transfer"
    44594642msgstr ""
    44604643
    4461 #: waeup/kofa/students/browser.py:1499
     4644#: waeup/kofa/students/browser.py:1552
    44624645msgid "No previous transfer."
    44634646msgstr ""
    44644647
    4465 #: waeup/kofa/students/browser.py:1504
     4648#: waeup/kofa/students/browser.py:1557
    44664649msgid "Revert now"
    44674650msgstr ""
    44684651
    4469 #: waeup/kofa/students/browser.py:1507
     4652#: waeup/kofa/students/browser.py:1560
    44704653msgid "Previous transfer reverted."
    44714654msgstr ""
    44724655
    4473 #: waeup/kofa/students/browser.py:1539
     4656#: waeup/kofa/students/browser.py:1592
    44744657#. Default: ""
    44754658msgid "${a}: ${b}"
    44764659msgstr ""
    44774660
    4478 #: waeup/kofa/students/browser.py:1562
     4661#: waeup/kofa/students/browser.py:1615
    44794662msgid "Level Data"
    44804663msgstr ""
    44814664
    4482 #: waeup/kofa/students/browser.py:1571
     4665#: waeup/kofa/students/browser.py:1624
    44834666msgid "Course Registration Slip"
    44844667msgstr ""
    44854668
    4486 #: waeup/kofa/students/browser.py:1579
     4669#: waeup/kofa/students/browser.py:1632
    44874670msgid "1st Semester Courses"
    44884671msgstr ""
    44894672
    4490 #: waeup/kofa/students/browser.py:1581
     4673#: waeup/kofa/students/browser.py:1634
    44914674msgid "2nd Semester Courses"
    44924675msgstr ""
    44934676
    4494 #: waeup/kofa/students/browser.py:1583
     4677#: waeup/kofa/students/browser.py:1636
    44954678msgid "Level Courses"
    44964679msgstr ""
    44974680
    4498 #: waeup/kofa/students/browser.py:159
     4681#: waeup/kofa/students/browser.py:164
    44994682msgid "The ticket exists."
    45004683msgstr ""
    45014684
    4502 #: waeup/kofa/students/browser.py:1597
     4685#: waeup/kofa/students/browser.py:1650
    45034686#: waeup/kofa/students/browser_templates/studylevelmanagepage.pt:43
    45044687msgid "Dept."
    45054688msgstr ""
    45064689
    4507 #: waeup/kofa/students/browser.py:1598
     4690#: waeup/kofa/students/browser.py:1651
    45084691#: waeup/kofa/browser/templates/mytranscriptrequests.pt:11
    45094692#: waeup/kofa/browser/templates/mytranscriptrequests.pt:42
     
    45114694msgstr ""
    45124695
    4513 #: waeup/kofa/students/browser.py:1599
     4696#: waeup/kofa/students/browser.py:1652
    45144697#: waeup/kofa/students/browser_templates/studylevelpage.pt:28
    45154698#: waeup/kofa/students/browser_templates/studylevelremarkpage.pt:44
     
    45184701msgstr ""
    45194702
    4520 #: waeup/kofa/students/browser.py:1643
    4521 #: waeup/kofa/students/browser.py:1851
    4522 #: waeup/kofa/students/browser.py:1863
    4523 #: waeup/kofa/students/browser.py:3073
     4703#: waeup/kofa/students/browser.py:1696
     4704#: waeup/kofa/students/browser.py:1903
     4705#: waeup/kofa/students/browser.py:1915
     4706#: waeup/kofa/students/browser.py:3158
    45244707msgid "Add course ticket"
    45254708msgstr ""
    45264709
    4527 #: waeup/kofa/students/browser.py:1645
    4528 #: waeup/kofa/students/browser.py:2935
     4710#: waeup/kofa/students/browser.py:1698
     4711#: waeup/kofa/students/browser.py:3017
    45294712msgid "Enter valid course code"
    45304713msgstr ""
    45314714
    4532 #: waeup/kofa/students/browser.py:165
     4715#: waeup/kofa/students/browser.py:170
    45334716#. Default: ""
    45344717msgid "Successfully added ${a}."
    45354718msgstr ""
    45364719
    4537 #: waeup/kofa/students/browser.py:1655
    4538 #: waeup/kofa/students/browser.py:2948
     4720#: waeup/kofa/students/browser.py:1708
     4721#: waeup/kofa/students/browser.py:3030
    45394722msgid "No valid course code entered."
    45404723msgstr ""
    45414724
    4542 #: waeup/kofa/students/browser.py:1661
    4543 #: waeup/kofa/students/browser.py:2953
     4725#: waeup/kofa/students/browser.py:1714
     4726#: waeup/kofa/students/browser.py:3035
    45444727msgid "Course not found."
    45454728msgstr ""
    45464729
    4547 #: waeup/kofa/students/browser.py:1678
     4730#: waeup/kofa/students/browser.py:1731
    45484731#. Default: ""
    45494732msgid "Manage ${a}"
    45504733msgstr ""
    45514734
    4552 #: waeup/kofa/students/browser.py:1692
    4553 #: waeup/kofa/students/browser.py:2977
     4735#: waeup/kofa/students/browser.py:1745
     4736#: waeup/kofa/students/browser.py:3062
    45544737msgid "No ticket selected."
    45554738msgstr ""
    45564739
    4557 #: waeup/kofa/students/browser.py:1734
     4740#: waeup/kofa/students/browser.py:1786
    45584741#. Default: ""
    45594742msgid "Edit transcript remark of level ${a}"
    45604743msgstr ""
    45614744
    4562 #: waeup/kofa/students/browser.py:1741
     4745#: waeup/kofa/students/browser.py:1793
    45634746msgid "Save remark and go and back to transcript validation page"
    45644747msgstr ""
    45654748
    4566 #: waeup/kofa/students/browser.py:1761
    4567 #: waeup/kofa/students/browser.py:1787
     4749#: waeup/kofa/students/browser.py:1813
     4750#: waeup/kofa/students/browser.py:1839
    45684751msgid "This is not the student's current level."
    45694752msgstr ""
    45704753
    4571 #: waeup/kofa/students/browser.py:1766
     4754#: waeup/kofa/students/browser.py:1818
    45724755msgid "Course list has been validated."
    45734756msgstr ""
    45744757
    4575 #: waeup/kofa/students/browser.py:1768
    4576 #: waeup/kofa/students/browser.py:1800
     4758#: waeup/kofa/students/browser.py:1820
     4759#: waeup/kofa/students/browser.py:1852
    45774760msgid "Student is in the wrong state."
    45784761msgstr ""
    45794762
    4580 #: waeup/kofa/students/browser.py:1793
     4763#: waeup/kofa/students/browser.py:1845
    45814764msgid "Course list request has been annulled."
    45824765msgstr ""
    45834766
    4584 #: waeup/kofa/students/browser.py:1797
    4585 #: waeup/kofa/students/browser.py:1835
     4767#: waeup/kofa/students/browser.py:1849
     4768#: waeup/kofa/students/browser.py:1887
    45864769msgid "Course list has been unregistered."
    45874770msgstr ""
    45884771
    4589 #: waeup/kofa/students/browser.py:1828
     4772#: waeup/kofa/students/browser.py:1880
    45904773msgid "Course registration has ended. Unregistration is disabled."
    45914774msgstr ""
    45924775
    4593 #: waeup/kofa/students/browser.py:1832
     4776#: waeup/kofa/students/browser.py:1884
    45944777msgid "This is not your current level."
    45954778msgstr ""
    45964779
    4597 #: waeup/kofa/students/browser.py:1838
     4780#: waeup/kofa/students/browser.py:1890
    45984781msgid "You are in the wrong state."
    45994782msgstr ""
    46004783
    4601 #: waeup/kofa/students/browser.py:186
    4602 #: waeup/kofa/students/export.py:294
     4784#: waeup/kofa/students/browser.py:191
    46034785#: waeup/kofa/students/viewlets.py:851
    46044786msgid "Students"
    46054787msgstr ""
    46064788
    4607 #: waeup/kofa/students/browser.py:1888
     4789#: waeup/kofa/students/browser.py:1940
    46084790#. Default: ""
    46094791msgid "${a}: Course Ticket ${b}"
    46104792msgstr ""
    46114793
    4612 #: waeup/kofa/students/browser.py:1922
     4794#: waeup/kofa/students/browser.py:1974
    46134795#. Default: ""
    46144796msgid "Manage course ticket ${a}"
    46154797msgstr ""
    46164798
    4617 #: waeup/kofa/students/browser.py:1955
     4799#: waeup/kofa/students/browser.py:2007
    46184800#. Default: ""
    46194801msgid "${a}: Payments"
    46204802msgstr ""
    46214803
    4622 #: waeup/kofa/students/browser.py:1996
     4804#: waeup/kofa/students/browser.py:2048
    46234805msgid "Add online payment"
    46244806msgstr ""
    46254807
    4626 #: waeup/kofa/students/browser.py:2006
    4627 #: waeup/kofa/students/browser.py:2064
    4628 #: waeup/kofa/students/browser.py:2097
     4808#: waeup/kofa/students/browser.py:2058
     4809#: waeup/kofa/students/browser.py:2116
     4810#: waeup/kofa/students/browser.py:2149
    46294811msgid "Create ticket"
    46304812msgstr ""
    46314813
    4632 #: waeup/kofa/students/browser.py:2020
    4633 #: waeup/kofa/students/utils.py:657
     4814#: waeup/kofa/students/browser.py:2072
     4815#: waeup/kofa/students/utils.py:659
    46344816msgid "Your current session does not match accommodation session."
    46354817msgstr ""
    46364818
    4637 #: waeup/kofa/students/browser.py:2026
     4819#: waeup/kofa/students/browser.py:2078
    46384820msgid "You have not yet booked accommodation."
    46394821msgstr ""
    46404822
    4641 #: waeup/kofa/students/browser.py:2054
     4823#: waeup/kofa/students/browser.py:2106
    46424824msgid "Add previous session online payment"
    46434825msgstr ""
    46444826
    4645 #: waeup/kofa/students/browser.py:2059
     4827#: waeup/kofa/students/browser.py:2111
    46464828msgid "No previous payment to be made."
    46474829msgstr ""
    46484830
    4649 #: waeup/kofa/students/browser.py:2094
     4831#: waeup/kofa/students/browser.py:2146
    46504832msgid "Add balance"
    46514833msgstr ""
    46524834
    4653 #: waeup/kofa/students/browser.py:210
     4835#: waeup/kofa/students/browser.py:215
    46544836#: waeup/kofa/students/viewlets.py:120
    46554837#: waeup/kofa/students/viewlets.py:915
     
    46584840msgstr ""
    46594841
    4660 #: waeup/kofa/students/browser.py:212
     4842#: waeup/kofa/students/browser.py:217
    46614843msgid "Previous Study Course"
    46624844msgstr ""
    46634845
    4664 #: waeup/kofa/students/browser.py:218
     4846#: waeup/kofa/students/browser.py:223
    46654847#: waeup/kofa/students/viewlets.py:127
    46664848#: waeup/kofa/students/viewlets.py:916
     
    46694851msgstr ""
    46704852
    4671 #: waeup/kofa/students/browser.py:2256
    4672 #: waeup/kofa/students/browser.py:2257
    4673 #: waeup/kofa/students/browser.py:2296
     4853#: waeup/kofa/students/browser.py:2283
     4854#: waeup/kofa/students/browser.py:2343
     4855#. Default: ""
     4856msgid "${a}: Accommodation"
     4857msgstr ""
     4858
     4859#: waeup/kofa/students/browser.py:2289
     4860#: waeup/kofa/students/browser.py:2349
     4861#: waeup/kofa/students/browser.py:2363
     4862msgid "No favoured hostel"
     4863msgstr ""
     4864
     4865#: waeup/kofa/students/browser.py:2338
     4866#: waeup/kofa/students/browser.py:2339
     4867#: waeup/kofa/students/browser.py:2378
    46744868msgid "Book accommodation"
    46754869msgstr ""
    46764870
    4677 #: waeup/kofa/students/browser.py:2261
    4678 #. Default: ""
    4679 msgid "${a}: Accommodation"
    4680 msgstr ""
    4681 
    4682 #: waeup/kofa/students/browser.py:2267
    4683 #: waeup/kofa/students/browser.py:2281
    4684 msgid "No favoured hostel"
    4685 msgstr ""
    4686 
    4687 #: waeup/kofa/students/browser.py:2293
     4871#: waeup/kofa/students/browser.py:2375
    46884872msgid "Your selection has been saved."
    46894873msgstr ""
    46904874
    4691 #: waeup/kofa/students/browser.py:2304
    4692 msgid "You are not allowed to remove bed tickets."
    4693 msgstr ""
    4694 
    4695 #: waeup/kofa/students/browser.py:2312
    4696 msgid "No bed ticket selected."
    4697 msgstr ""
    4698 
    4699 #: waeup/kofa/students/browser.py:233
     4875#: waeup/kofa/students/browser.py:238
    47004876#: waeup/kofa/students/viewlets.py:135
    47014877msgid "Accommodation"
    47024878msgstr ""
    47034879
    4704 #: waeup/kofa/students/browser.py:2337
     4880#: waeup/kofa/students/browser.py:2386
     4881msgid "You are not allowed to remove bed tickets."
     4882msgstr ""
     4883
     4884#: waeup/kofa/students/browser.py:2394
     4885msgid "No bed ticket selected."
     4886msgstr ""
     4887
     4888#: waeup/kofa/students/browser.py:2419
    47054889msgid "Add bed ticket"
    47064890msgstr ""
    47074891
    4708 #: waeup/kofa/students/browser.py:2339
     4892#: waeup/kofa/students/browser.py:2421
    47094893msgid "Create bed ticket"
    47104894msgstr ""
    47114895
    4712 #: waeup/kofa/students/browser.py:2364
     4896#: waeup/kofa/students/browser.py:2446
    47134897#. Default: ""
    47144898msgid "${a}, Block ${b}, Room ${c}, Bed ${d}"
    47154899msgstr ""
    47164900
    4717 #: waeup/kofa/students/browser.py:242
     4901#: waeup/kofa/students/browser.py:247
    47184902#. Default: ""
    47194903msgid "Bed Ticket ${a}"
    47204904msgstr ""
    47214905
    4722 #: waeup/kofa/students/browser.py:2468
     4906#: waeup/kofa/students/browser.py:2550
    47234907#. Default: ""
    47244908msgid "Bed ticket created and bed booked: ${a}"
    47254909msgstr ""
    47264910
    4727 #: waeup/kofa/students/browser.py:2485
     4911#: waeup/kofa/students/browser.py:2567
    47284912#. Default: ""
    47294913msgid "Bed Ticket for Session ${a}"
    47304914msgstr ""
    47314915
    4732 #: waeup/kofa/students/browser.py:2505
     4916#: waeup/kofa/students/browser.py:2587
    47334917msgid "Bed Allocation Data"
    47344918msgstr ""
    47354919
    4736 #: waeup/kofa/students/browser.py:2514
     4920#: waeup/kofa/students/browser.py:2596
    47374921msgid "Bed Allocation Slip"
    47384922msgstr ""
    47394923
    4740 #: waeup/kofa/students/browser.py:2525
     4924#: waeup/kofa/students/browser.py:2607
    47414925msgid ""
    47424926"\n"
     
    47484932msgstr ""
    47494933
    4750 #: waeup/kofa/students/browser.py:2574
     4934#: waeup/kofa/students/browser.py:2656
    47514935#. Default: ""
    47524936msgid "${a}: History"
    47534937msgstr ""
    47544938
    4755 #: waeup/kofa/students/browser.py:2586
     4939#: waeup/kofa/students/browser.py:2668
    47564940msgid "Edit base data"
    47574941msgstr ""
    47584942
    4759 #: waeup/kofa/students/browser.py:2601
     4943#: waeup/kofa/students/browser.py:2683
    47604944#: waeup/kofa/students/viewlets.py:582
    47614945msgid "Change password"
    47624946msgstr ""
    47634947
    4764 #: waeup/kofa/students/browser.py:2617
     4948#: waeup/kofa/students/browser.py:2699
    47654949msgid "Password changed."
    47664950msgstr ""
    47674951
    4768 #: waeup/kofa/students/browser.py:2629
     4952#: waeup/kofa/students/browser.py:2711
    47694953msgid "Upload portrait"
    47704954msgstr ""
    47714955
    4772 #: waeup/kofa/students/browser.py:2645
     4956#: waeup/kofa/students/browser.py:2727
    47734957#: waeup/kofa/students/viewlets.py:610
    47744958#: waeup/kofa/students/workflow.py:68
     
    47764960msgstr ""
    47774961
    4778 #: waeup/kofa/students/browser.py:2649
     4962#: waeup/kofa/students/browser.py:2731
    47794963msgid "Start clearance now"
    47804964msgstr ""
    47814965
    4782 #: waeup/kofa/students/browser.py:2655
     4966#: waeup/kofa/students/browser.py:2737
    47834967msgid "Email address is missing."
    47844968msgstr ""
    47854969
    4786 #: waeup/kofa/students/browser.py:2657
     4970#: waeup/kofa/students/browser.py:2739
    47874971msgid "Phone number is missing."
    47884972msgstr ""
    47894973
    4790 #: waeup/kofa/students/browser.py:2673
     4974#: waeup/kofa/students/browser.py:2755
    47914975msgid "No portrait uploaded."
    47924976msgstr ""
    47934977
    4794 #: waeup/kofa/students/browser.py:2708
     4978#: waeup/kofa/students/browser.py:2790
    47954979msgid "Clearance process has been started."
    47964980msgstr ""
    47974981
    4798 #: waeup/kofa/students/browser.py:2718
     4982#: waeup/kofa/students/browser.py:2800
    47994983msgid "Edit clearance data"
    48004984msgstr ""
    48014985
    4802 #: waeup/kofa/students/browser.py:2739
    4803 #: waeup/kofa/students/browser.py:2755
     4986#: waeup/kofa/students/browser.py:2821
     4987#: waeup/kofa/students/browser.py:2837
    48044988msgid "Clearance form has been saved."
    48054989msgstr ""
    48064990
    4807 #: waeup/kofa/students/browser.py:2747
     4991#: waeup/kofa/students/browser.py:2829
    48084992msgid "Save and request clearance"
    48094993msgstr ""
    48104994
    4811 #: waeup/kofa/students/browser.py:2748
     4995#: waeup/kofa/students/browser.py:2830
    48124996msgid "You can not edit your data after requesting clearance. You really want to request clearance now?"
    48134997msgstr ""
    48144998
    4815 #: waeup/kofa/students/browser.py:2766
    4816 #: waeup/kofa/students/browser.py:2801
     4999#: waeup/kofa/students/browser.py:2848
     5000#: waeup/kofa/students/browser.py:2883
    48175001msgid "This form cannot be submitted. Wrong state!"
    48185002msgstr ""
    48195003
    4820 #: waeup/kofa/students/browser.py:2770
    4821 #: waeup/kofa/students/browser.py:2805
     5004#: waeup/kofa/students/browser.py:2852
     5005#: waeup/kofa/students/browser.py:2887
    48225006msgid "Clearance has been requested."
    48235007msgstr ""
    48245008
    4825 #: waeup/kofa/students/browser.py:2779
     5009#: waeup/kofa/students/browser.py:2861
    48265010#: waeup/kofa/students/workflow.py:82
    48275011msgid "Request clearance"
    48285012msgstr ""
    48295013
    4830 #: waeup/kofa/students/browser.py:2780
     5014#: waeup/kofa/students/browser.py:2862
    48315015msgid "Enter the CLR access code used for starting clearance."
    48325016msgstr ""
    48335017
    4834 #: waeup/kofa/students/browser.py:2783
     5018#: waeup/kofa/students/browser.py:2865
    48355019msgid "Request clearance now"
    48365020msgstr ""
    48375021
    4838 #: waeup/kofa/students/browser.py:2795
     5022#: waeup/kofa/students/browser.py:2877
    48395023msgid "This isn't your CLR access code."
    48405024msgstr ""
    48415025
    4842 #: waeup/kofa/students/browser.py:2814
     5026#: waeup/kofa/students/browser.py:2896
    48435027msgid "Start session"
    48445028msgstr ""
    48455029
    4846 #: waeup/kofa/students/browser.py:2818
     5030#: waeup/kofa/students/browser.py:2900
    48475031msgid "Start now"
    48485032msgstr ""
    48495033
    4850 #: waeup/kofa/students/browser.py:2827
     5034#: waeup/kofa/students/browser.py:2909
    48515035msgid "You are not entitled to start session."
    48525036msgstr ""
    48535037
    4854 #: waeup/kofa/students/browser.py:286
    4855 #: waeup/kofa/students/browser.py:329
     5038#: waeup/kofa/students/browser.py:291
     5039#: waeup/kofa/students/browser.py:334
    48565040msgid "Only year dates allowed (e.g. 2011)."
    48575041msgstr ""
    48585042
    4859 #: waeup/kofa/students/browser.py:2867
     5043#: waeup/kofa/students/browser.py:2949
    48605044msgid "An error occurred, please contact the system administrator."
    48615045msgstr ""
    48625046
    4863 #: waeup/kofa/students/browser.py:2870
     5047#: waeup/kofa/students/browser.py:2952
    48645048msgid "Session started."
    48655049msgstr ""
    48665050
    4867 #: waeup/kofa/students/browser.py:2889
     5051#: waeup/kofa/students/browser.py:2971
    48685052#. Default: ""
    48695053msgid "Add current level ${a}"
    48705054msgstr ""
    48715055
    4872 #: waeup/kofa/students/browser.py:2901
     5056#: waeup/kofa/students/browser.py:2983
    48735057msgid "Your data are incomplete"
    48745058msgstr ""
    48755059
    4876 #: waeup/kofa/students/browser.py:2907
     5060#: waeup/kofa/students/browser.py:2989
    48775061msgid "Create course list now"
    48785062msgstr ""
    48795063
    4880 #: waeup/kofa/students/browser.py:2920
    4881 #: waeup/kofa/students/utils.py:652
     5064#: waeup/kofa/students/browser.py:3002
     5065#: waeup/kofa/students/utils.py:654
    48825066msgid "Your data are incomplete."
    48835067msgstr ""
    48845068
    4885 #: waeup/kofa/students/browser.py:2923
     5069#: waeup/kofa/students/browser.py:3005
    48865070msgid "You successfully created a new course list."
    48875071msgstr ""
    48885072
    4889 #: waeup/kofa/students/browser.py:2965
     5073#: waeup/kofa/students/browser.py:3039
     5074#: waeup/kofa/students/browser.py:3165
     5075msgid "Former courses can't be added."
     5076msgstr ""
     5077
     5078#: waeup/kofa/students/browser.py:3050
    48905079#. Default: ""
    48915080msgid "Edit course list of ${a}"
    48925081msgstr ""
    48935082
    4894 #: waeup/kofa/students/browser.py:3019
    4895 msgid "All course tickets updated."
    4896 msgstr ""
    4897 
    4898 #: waeup/kofa/students/browser.py:3022
    4899 msgid "Update all tickets"
    4900 msgstr ""
    4901 
    4902 #: waeup/kofa/students/browser.py:3023
    4903 msgid "Update all course parameters including course titles."
    4904 msgstr ""
    4905 
    4906 #: waeup/kofa/students/browser.py:303
     5083#: waeup/kofa/students/browser.py:308
    49075084#: waeup/kofa/students/viewlets.py:167
    49085085msgid "Manage students section"
    49095086msgstr ""
    49105087
    4911 #: waeup/kofa/students/browser.py:3031
     5088#: waeup/kofa/students/browser.py:3104
     5089msgid "All course tickets updated."
     5090msgstr ""
     5091
     5092#: waeup/kofa/students/browser.py:3107
     5093msgid "Update all tickets"
     5094msgstr ""
     5095
     5096#: waeup/kofa/students/browser.py:3108
     5097msgid "Update all course parameters including course titles."
     5098msgstr ""
     5099
     5100#: waeup/kofa/students/browser.py:3116
    49125101msgid "You are a postgraduate student, your course list can't bee registered."
    49135102msgstr ""
    49145103
    4915 #: waeup/kofa/students/browser.py:3047
     5104#: waeup/kofa/students/browser.py:3132
    49165105msgid "Course list has been registered."
    49175106msgstr ""
    49185107
    4919 #: waeup/kofa/students/browser.py:3051
     5108#: waeup/kofa/students/browser.py:3136
    49205109msgid "Register course list"
    49215110msgstr ""
    49225111
    4923 #: waeup/kofa/students/browser.py:3052
     5112#: waeup/kofa/students/browser.py:3137
    49245113msgid "You can not edit your course list after registration. You really want to register?"
    49255114msgstr ""
    49265115
    4927 #: waeup/kofa/students/browser.py:3089
     5116#: waeup/kofa/students/browser.py:3177
    49285117msgid "Set password for first-time login"
    49295118msgstr ""
    49305119
    4931 #: waeup/kofa/students/browser.py:3092
     5120#: waeup/kofa/students/browser.py:3180
    49325121msgid "Set"
    49335122msgstr ""
    49345123
    4935 #: waeup/kofa/students/browser.py:3107
     5124#: waeup/kofa/students/browser.py:3195
    49365125msgid "More than one student found."
    49375126msgstr ""
    49385127
    4939 #: waeup/kofa/students/browser.py:3115
     5128#: waeup/kofa/students/browser.py:3203
    49405129msgid "Access code is invalid."
    49415130msgstr ""
    49425131
    4943 #: waeup/kofa/students/browser.py:3118
     5132#: waeup/kofa/students/browser.py:3206
    49445133#. Default: ""
    49455134msgid "Password has already been set. Your Student Id is ${a}"
    49465135msgstr ""
    49475136
    4948 #: waeup/kofa/students/browser.py:3124
     5137#: waeup/kofa/students/browser.py:3212
    49495138msgid "Password has already been set. You are using the wrong Access Code."
    49505139msgstr ""
    49515140
    4952 #: waeup/kofa/students/browser.py:3130
     5141#: waeup/kofa/students/browser.py:3218
    49535142msgid "Access code has already been used."
    49545143msgstr ""
    49555144
    4956 #: waeup/kofa/students/browser.py:3139
     5145#: waeup/kofa/students/browser.py:3227
    49575146#. Default: ""
    49585147msgid "Password has been set. Your Student Id is ${a}"
    49595148msgstr ""
    49605149
    4961 #: waeup/kofa/students/browser.py:3151
     5150#: waeup/kofa/students/browser.py:3239
    49625151msgid "Request password for first-time login"
    49635152msgstr ""
    49645153
    4965 #: waeup/kofa/students/browser.py:3177
    4966 #: waeup/kofa/students/browser.py:3208
    4967 #: waeup/kofa/students/browser.py:3286
     5154#: waeup/kofa/students/browser.py:3265
     5155#: waeup/kofa/students/browser.py:3296
     5156#: waeup/kofa/students/browser.py:3374
    49685157msgid "No student record found."
    49695158msgstr ""
    49705159
    4971 #: waeup/kofa/students/browser.py:3254
     5160#: waeup/kofa/students/browser.py:3342
    49725161msgid "Request password for parents access"
    49735162msgstr ""
    49745163
    4975 #: waeup/kofa/students/browser.py:3262
     5164#: waeup/kofa/students/browser.py:3350
    49765165msgid "Send temporary login credentials to email address"
    49775166msgstr ""
    49785167
    4979 #: waeup/kofa/students/browser.py:3289
     5168#: waeup/kofa/students/browser.py:3377
    49805169msgid "Wrong email address."
    49815170msgstr ""
    49825171
    4983 #: waeup/kofa/students/browser.py:3305
     5172#: waeup/kofa/students/browser.py:3393
    49845173msgid "You have successfully requested a parents password for the"
    49855174msgstr ""
    49865175
    4987 #: waeup/kofa/students/browser.py:3329
     5176#: waeup/kofa/students/browser.py:3417
    49885177msgid "Your password request was successful."
    49895178msgstr ""
    49905179
    4991 #: waeup/kofa/students/browser.py:3345
    4992 #: waeup/kofa/students/interfaces.py:475
    4993 #: waeup/kofa/students/interfaces.py:551
     5180#: waeup/kofa/students/browser.py:3433
     5181#: waeup/kofa/students/interfaces.py:482
     5182#: waeup/kofa/students/interfaces.py:558
    49945183#: waeup/kofa/students/browser_templates/exportconfig.pt:23
    49955184#: waeup/kofa/students/browser_templates/exportconfig_certificate.pt:23
     
    49985187msgstr ""
    49995188
    5000 #: waeup/kofa/students/browser.py:3346
    5001 #: waeup/kofa/students/interfaces.py:482
    5002 #: waeup/kofa/students/interfaces.py:521
    5003 #: waeup/kofa/students/interfaces.py:557
     5189#: waeup/kofa/students/browser.py:3434
     5190#: waeup/kofa/students/interfaces.py:489
     5191#: waeup/kofa/students/interfaces.py:528
     5192#: waeup/kofa/students/interfaces.py:564
    50045193#: waeup/kofa/students/browser_templates/exportconfig.pt:33
    50055194#: waeup/kofa/students/browser_templates/exportconfig_certificate.pt:33
     
    50085197msgstr ""
    50095198
    5010 #: waeup/kofa/students/browser.py:3396
     5199#: waeup/kofa/students/browser.py:3484
    50115200msgid "in any session"
    50125201msgstr ""
    50135202
    5014 #: waeup/kofa/students/browser.py:3402
     5203#: waeup/kofa/students/browser.py:3490
    50155204msgid "at any level"
    50165205msgstr ""
    50175206
    5018 #: waeup/kofa/students/browser.py:3439
     5207#: waeup/kofa/students/browser.py:3527
     5208#: waeup/kofa/students/interfaces.py:603
     5209#: waeup/kofa/students/interfaces.py:811
     5210#: waeup/kofa/students/utils.py:274
     5211#: waeup/kofa/students/utils.py:279
     5212#: waeup/kofa/students/browser_templates/accommodationpage.pt:14
     5213msgid "Session"
     5214msgstr ""
     5215
     5216#: waeup/kofa/students/browser.py:3528
     5217#: waeup/kofa/students/browser.py:3831
     5218#: waeup/kofa/students/browser.py:3886
    50195219#: waeup/kofa/students/interfaces.py:596
    5020 #: waeup/kofa/students/interfaces.py:804
    5021 #: waeup/kofa/students/utils.py:273
    5022 #: waeup/kofa/students/utils.py:278
    5023 #: waeup/kofa/students/browser_templates/transcript.pt:35
    5024 #: waeup/kofa/students/browser_templates/paymentsmanagepage.pt:14
    5025 #: waeup/kofa/students/browser_templates/accommodationmanagepage.pt:45
    5026 msgid "Session"
    5027 msgstr ""
    5028 
    5029 #: waeup/kofa/students/browser.py:3440
    5030 #: waeup/kofa/students/browser.py:3737
    5031 #: waeup/kofa/students/browser.py:3791
    5032 #: waeup/kofa/students/interfaces.py:589
    5033 #: waeup/kofa/students/utils.py:280
     5220#: waeup/kofa/students/utils.py:281
    50345221#: waeup/kofa/university/interfaces.py:353
    50355222#: waeup/kofa/students/browser_templates/editscorespage.pt:82
     
    50415228msgstr ""
    50425229
    5043 #: waeup/kofa/students/browser.py:3481
     5230#: waeup/kofa/students/browser.py:3569
    50445231msgid "%d students have been cleared."
    50455232msgstr ""
    50465233
    5047 #: waeup/kofa/students/browser.py:3537
     5234#: waeup/kofa/students/browser.py:3625
    50485235msgid "Uploaded file contains illegal data. Ignored"
    50495236msgstr ""
    50505237
    5051 #: waeup/kofa/students/browser.py:3542
     5238#: waeup/kofa/students/browser.py:3630
    50525239msgid "No file provided."
    50535240msgstr ""
    50545241
    5055 #: waeup/kofa/students/browser.py:3567
     5242#: waeup/kofa/students/browser.py:3655
    50565243msgid "Error: Score(s) of following students have not been updated (only integers are allowed): %s., "
    50575244msgstr ""
    50585245
    5059 #: waeup/kofa/students/browser.py:3604
    5060 #: waeup/kofa/students/browser.py:3672
    5061 msgid "Score editing disabled."
    5062 msgstr ""
    5063 
    5064 #: waeup/kofa/students/browser.py:3608
    5065 #: waeup/kofa/students/browser.py:3676
    5066 #: waeup/kofa/students/browser.py:3717
    5067 #: waeup/kofa/students/browser.py:3773
    5068 msgid "Current academic session not set."
    5069 msgstr ""
    5070 
    5071 #: waeup/kofa/students/browser.py:3614
    5072 #: waeup/kofa/students/browser.py:3682
    5073 msgid "Course results have already been validated and can no longer be changed."
    5074 msgstr ""
    5075 
    5076 #: waeup/kofa/students/browser.py:363
     5246#: waeup/kofa/students/browser.py:368
    50775247#: waeup/kofa/students/viewlets.py:175
    50785248msgid "Add student"
    50795249msgstr ""
    50805250
    5081 #: waeup/kofa/students/browser.py:3634
     5251#: waeup/kofa/students/browser.py:3692
     5252#: waeup/kofa/students/browser.py:3766
     5253msgid "Score editing disabled."
     5254msgstr ""
     5255
     5256#: waeup/kofa/students/browser.py:3702
     5257#: waeup/kofa/students/browser.py:3776
     5258msgid "Course results have already been validated and can no longer be changed."
     5259msgstr ""
     5260
     5261#: waeup/kofa/students/browser.py:3722
    50825262msgid "Course results have already been validated."
    50835263msgstr ""
    50845264
    5085 #: waeup/kofa/students/browser.py:3638
     5265#: waeup/kofa/students/browser.py:3728
     5266msgid "No score has been entered."
     5267msgstr ""
     5268
     5269#: waeup/kofa/students/browser.py:3732
    50865270msgid "You successfully validated the course results."
    50875271msgstr ""
    50885272
    5089 #: waeup/kofa/students/browser.py:3645
     5273#: waeup/kofa/students/browser.py:3739
    50905274msgid "You successfully updated course results."
    50915275msgstr ""
    50925276
    5093 #: waeup/kofa/students/browser.py:371
     5277#: waeup/kofa/students/browser.py:376
    50945278msgid "Student record created."
    50955279msgstr ""
    50965280
    5097 #: waeup/kofa/students/browser.py:3732
    5098 #: waeup/kofa/students/browser.py:3789
     5281#: waeup/kofa/students/browser.py:380
     5282msgid "Create graduated student"
     5283msgstr ""
     5284
     5285#: waeup/kofa/students/browser.py:3826
     5286#: waeup/kofa/students/browser.py:3884
    50995287#: waeup/kofa/browser/templates/mytranscriptrequests.pt:8
    51005288#: waeup/kofa/browser/templates/mytranscriptrequests.pt:39
     
    51025290msgstr ""
    51035291
    5104 #: waeup/kofa/students/browser.py:3733
     5292#: waeup/kofa/students/browser.py:3827
    51055293msgid "Reg. No."
    51065294msgstr ""
    51075295
    5108 #: waeup/kofa/students/browser.py:3734
     5296#: waeup/kofa/students/browser.py:3828
    51095297#: waeup/kofa/browser/templates/mytranscriptrequests.pt:10
    51105298#: waeup/kofa/browser/templates/mytranscriptrequests.pt:41
     
    51125300msgstr ""
    51135301
    5114 #: waeup/kofa/students/browser.py:3735
     5302#: waeup/kofa/students/browser.py:3829
    51155303#: waeup/kofa/students/browser_templates/editscorespage.pt:80
    51165304#: waeup/kofa/students/browser_templates/exportjobsindex.pt:9
     
    51225310msgstr ""
    51235311
    5124 #: waeup/kofa/students/browser.py:3736
     5312#: waeup/kofa/students/browser.py:3830
    51255313#: waeup/kofa/browser/templates/mytranscriptrequests.pt:13
    51265314#: waeup/kofa/browser/templates/mytranscriptrequests.pt:44
     
    51285316msgstr ""
    51295317
    5130 #: waeup/kofa/students/browser.py:375
    5131 msgid "Create graduated student"
    5132 msgstr ""
    5133 
    5134 #: waeup/kofa/students/browser.py:3788
     5318#: waeup/kofa/students/browser.py:3883
    51355319msgid "S/N"
    51365320msgstr ""
    51375321
    5138 #: waeup/kofa/students/browser.py:3792
     5322#: waeup/kofa/students/browser.py:3887
    51395323msgid ""
    51405324"Course of\n"
     
    51425326msgstr ""
    51435327
    5144 #: waeup/kofa/students/browser.py:3793
     5328#: waeup/kofa/students/browser.py:3888
    51455329msgid "Booklet No."
    51465330msgstr ""
    51475331
    5148 #: waeup/kofa/students/browser.py:3794
     5332#: waeup/kofa/students/browser.py:3889
    51495333msgid "Signature"
    51505334msgstr ""
    51515335
    5152 #: waeup/kofa/students/browser.py:384
     5336#: waeup/kofa/students/browser.py:389
    51535337msgid "Graduated student record created."
    51545338msgstr ""
    51555339
    5156 #: waeup/kofa/students/browser.py:3867
     5340#: waeup/kofa/students/browser.py:3962
    51575341msgid "Configure student data export"
    51585342msgstr ""
    51595343
    5160 #: waeup/kofa/students/browser.py:3874
     5344#: waeup/kofa/students/browser.py:3969
    51615345msgid "All Sessions"
    51625346msgstr ""
    51635347
    5164 #: waeup/kofa/students/browser.py:3881
     5348#: waeup/kofa/students/browser.py:3976
    51655349msgid "All Levels"
    51665350msgstr ""
    51675351
    5168 #: waeup/kofa/students/browser.py:3888
     5352#: waeup/kofa/students/browser.py:3983
    51695353msgid "All Semesters"
    51705354msgstr ""
    51715355
    5172 #: waeup/kofa/students/browser.py:3895
     5356#: waeup/kofa/students/browser.py:3990
    51735357msgid "All Modes"
    51745358msgstr ""
    51755359
    5176 #: waeup/kofa/students/browser.py:3902
     5360#: waeup/kofa/students/browser.py:3997
    51775361msgid "All Payment Categories"
    51785362msgstr ""
    51795363
    5180 #: waeup/kofa/students/browser.py:3973
     5364#: waeup/kofa/students/browser.py:4068
    51815365msgid "Payment dates do not match format d/m/Y."
    51825366msgstr ""
    51835367
    5184 #: waeup/kofa/students/browser.py:4021
     5368#: waeup/kofa/students/browser.py:409
     5369#. Default: ""
     5370msgid "Set temporary password for ${a}"
     5371msgstr ""
     5372
     5373#: waeup/kofa/students/browser.py:4118
    51855374msgid "Export started for students with"
    51865375msgstr ""
    51875376
    5188 #: waeup/kofa/students/browser.py:404
    5189 #. Default: ""
    5190 msgid "Set temporary password for ${a}"
    5191 msgstr ""
    5192 
    5193 #: waeup/kofa/students/browser.py:4071
     5377#: waeup/kofa/students/browser.py:4168
    51945378msgid "Export of selected students started."
    51955379msgstr ""
    51965380
    5197 #: waeup/kofa/students/browser.py:4162
     5381#: waeup/kofa/students/browser.py:4259
    51985382msgid "Not permitted."
    51995383msgstr ""
    52005384
    5201 #: waeup/kofa/students/browser.py:4171
     5385#: waeup/kofa/students/browser.py:4268
    52025386msgid "Academic session not set. Please contact the administrator."
    52035387msgstr ""
    52045388
    5205 #: waeup/kofa/students/browser.py:4200
     5389#: waeup/kofa/students/browser.py:4297
    52065390msgid "Export started for course tickets with"
    52075391msgstr ""
    52085392
    5209 #: waeup/kofa/students/browser.py:426
     5393#: waeup/kofa/students/browser.py:431
    52105394msgid "Login now"
    52115395msgstr ""
    52125396
    5213 #: waeup/kofa/students/browser.py:430
     5397#: waeup/kofa/students/browser.py:435
    52145398#. Default: ""
    52155399msgid "Login as ${a}"
    52165400msgstr ""
    52175401
    5218 #: waeup/kofa/students/browser.py:436
     5402#: waeup/kofa/students/browser.py:441
    52195403msgid "You successfully logged in as student."
    52205404msgstr ""
    52215405
    5222 #: waeup/kofa/students/browser.py:454
     5406#: waeup/kofa/students/browser.py:459
    52235407#. Default: ""
    52245408msgid "${a}: Base Data (account deactivated)"
    52255409msgstr ""
    52265410
    5227 #: waeup/kofa/students/browser.py:456
     5411#: waeup/kofa/students/browser.py:461
    52285412#. Default: ""
    52295413msgid "${a}: Base Data"
    52305414msgstr ""
    52315415
    5232 #: waeup/kofa/students/browser.py:539
     5416#: waeup/kofa/students/browser.py:544
    52335417msgid "Admission Letter of"
    52345418msgstr ""
    52355419
    5236 #: waeup/kofa/students/browser.py:557
     5420#: waeup/kofa/students/browser.py:567
    52375421msgid "Manage base data"
    52385422msgstr ""
    52395423
    5240 #: waeup/kofa/students/browser.py:599
     5424#: waeup/kofa/students/browser.py:609
    52415425msgid "Trigger registration transition"
    52425426msgstr ""
    52435427
    5244 #: waeup/kofa/students/browser.py:639
     5428#: waeup/kofa/students/browser.py:649
    52455429msgid "Student account has been activated."
    52465430msgstr ""
    52475431
    5248 #: waeup/kofa/students/browser.py:658
     5432#: waeup/kofa/students/browser.py:668
    52495433msgid "Student account has been deactivated."
    52505434msgstr ""
    52515435
    5252 #: waeup/kofa/students/browser.py:691
     5436#: waeup/kofa/students/browser.py:701
    52535437#. Default: ""
    52545438msgid "${a}: Clearance Data"
    52555439msgstr ""
    52565440
    5257 #: waeup/kofa/students/browser.py:720
     5441#: waeup/kofa/students/browser.py:724
     5442msgid "Current Study Course Data"
     5443msgstr ""
     5444
     5445#: waeup/kofa/students/browser.py:730
     5446msgid "Base and Study Course Data of"
     5447msgstr ""
     5448
     5449#: waeup/kofa/students/browser.py:769
    52585450#: waeup/kofa/students/viewlets.py:107
    52595451#: waeup/kofa/students/viewlets.py:925
     
    52625454msgstr ""
    52635455
    5264 #: waeup/kofa/students/browser.py:726
     5456#: waeup/kofa/students/browser.py:775
    52655457msgid "Clearance Slip of"
    52665458msgstr ""
    52675459
    5268 #: waeup/kofa/students/browser.py:735
     5460#: waeup/kofa/students/browser.py:784
    52695461msgid "Student Signature"
    52705462msgstr ""
    52715463
    5272 #: waeup/kofa/students/browser.py:736
     5464#: waeup/kofa/students/browser.py:785
    52735465msgid "Clearance Officer Signature"
    52745466msgstr ""
    52755467
    5276 #: waeup/kofa/students/browser.py:743
     5468#: waeup/kofa/students/browser.py:792
    52775469msgid "Date, Student Signature"
    52785470msgstr ""
    52795471
    5280 #: waeup/kofa/students/browser.py:744
     5472#: waeup/kofa/students/browser.py:793
    52815473msgid "Date, Clearance Officer Signature"
    52825474msgstr ""
    52835475
    5284 #: waeup/kofa/students/browser.py:765
     5476#: waeup/kofa/students/browser.py:814
    52855477msgid "Manage clearance data"
    52865478msgstr ""
    52875479
    5288 #: waeup/kofa/students/browser.py:802
     5480#: waeup/kofa/students/browser.py:851
    52895481msgid "Student has been cleared."
    52905482msgstr ""
    52915483
    5292 #: waeup/kofa/students/browser.py:804
    5293 #: waeup/kofa/students/browser.py:841
    5294 #: waeup/kofa/students/browser.py:1177
    5295 #: waeup/kofa/students/browser.py:1243
    5296 #: waeup/kofa/students/browser.py:1304
     5484#: waeup/kofa/students/browser.py:853
     5485#: waeup/kofa/students/browser.py:890
     5486#: waeup/kofa/students/browser.py:1226
     5487#: waeup/kofa/students/browser.py:1292
     5488#: waeup/kofa/students/browser.py:1353
    52975489msgid "Student is in wrong state."
    52985490msgstr ""
    52995491
    5300 #: waeup/kofa/students/browser.py:816
     5492#: waeup/kofa/students/browser.py:865
    53015493#: waeup/kofa/students/viewlets.py:314
    53025494msgid "Reject clearance"
    53035495msgstr ""
    53045496
    5305 #: waeup/kofa/students/browser.py:830
     5497#: waeup/kofa/students/browser.py:879
    53065498msgid "Save comment and reject clearance now"
    53075499msgstr ""
    53085500
    5309 #: waeup/kofa/students/browser.py:834
     5501#: waeup/kofa/students/browser.py:883
    53105502msgid "Clearance has been annulled."
    53115503msgstr ""
    53125504
    5313 #: waeup/kofa/students/browser.py:838
     5505#: waeup/kofa/students/browser.py:887
    53145506msgid "Clearance request has been rejected."
    53155507msgstr ""
    53165508
    5317 #: waeup/kofa/students/browser.py:871
     5509#: waeup/kofa/students/browser.py:920
    53185510#. Default: ""
    53195511msgid "${a}: Personal Data"
    53205512msgstr ""
    53215513
    5322 #: waeup/kofa/students/browser.py:884
     5514#: waeup/kofa/students/browser.py:933
    53235515msgid "Manage personal data"
    53245516msgstr ""
    53255517
    5326 #: waeup/kofa/students/browser.py:899
     5518#: waeup/kofa/students/browser.py:948
    53275519msgid "Edit personal data"
    53285520msgstr ""
    53295521
    5330 #: waeup/kofa/students/browser.py:902
     5522#: waeup/kofa/students/browser.py:951
    53315523msgid "Save/Confirm"
    53325524msgstr ""
    53335525
    5334 #: waeup/kofa/students/browser.py:929
     5526#: waeup/kofa/students/browser.py:978
    53355527#. Default: ""
    53365528msgid "${a}: Study Course"
    53375529msgstr ""
    53385530
    5339 #: waeup/kofa/students/browser.py:932
     5531#: waeup/kofa/students/browser.py:981
    53405532#. Default: ""
    53415533msgid "${a}: Previous Study Course"
    53425534msgstr ""
    53435535
    5344 #: waeup/kofa/students/browser.py:974
    5345 msgid "First Study Course, "
    5346 msgstr ""
    5347 
    5348 #: waeup/kofa/students/browser.py:976
    5349 msgid "Second Study Course"
    5350 msgstr ""
    5351 
    5352 #: waeup/kofa/students/browser.py:981
    5353 msgid "First Study Course"
    5354 msgstr ""
    5355 
    5356 #: waeup/kofa/students/browser.py:992
    5357 msgid "Manage study course"
    5358 msgstr ""
    5359 
    5360 #: waeup/kofa/students/browser.py:995
    5361 #: waeup/kofa/students/browser.py:1069
    5362 msgid "Remove selected levels"
    5363 msgstr ""
    5364 
    5365 #: waeup/kofa/students/browser.py:996
    5366 #: waeup/kofa/students/browser.py:1042
    5367 msgid "Add study level"
    5368 msgstr ""
    5369 
    5370 #: waeup/kofa/students/browser_templates/accommodationmanagepage.pt:33
    5371 msgid "Favoured Hostel:"
    5372 msgstr ""
    5373 
    53745536#: waeup/kofa/students/browser_templates/accommodationmanagepage.pt:38
     5537#: waeup/kofa/students/browser_templates/accommodationpage.pt:8
    53755538msgid "Bookings"
    5376 msgstr ""
    5377 
    5378 #: waeup/kofa/students/browser_templates/accommodationmanagepage.pt:47
    5379 msgid "Bed Coordinates"
    53805539msgstr ""
    53815540
    53825541#: waeup/kofa/students/browser_templates/accommodationmanagepage.pt:6
    53835542msgid "Select and <strong>save the desired hostel</strong> before creating a bed ticket. Your choice cannot be changed afterwards."
     5543msgstr ""
     5544
     5545#: waeup/kofa/students/browser_templates/accommodationpage.pt:16
     5546msgid "Bed Coordinates"
     5547msgstr ""
     5548
     5549#: waeup/kofa/students/browser_templates/accommodationpage.pt:3
     5550msgid "Favoured Hostel:"
    53845551msgstr ""
    53855552
     
    53955562#: waeup/kofa/students/browser_templates/basemanagepage.pt:30
    53965563#: waeup/kofa/browser/templates/usereditformpage.pt:22
    5397 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:52
     5564#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:83
    53985565msgid "Retype Password:"
    53995566msgstr ""
     
    55175684msgstr ""
    55185685
    5519 #: waeup/kofa/students/browser_templates/exportconfig.pt:109
     5686#: waeup/kofa/students/browser_templates/exportconfig.pt:113
     5687msgid "Course Ticket Level"
     5688msgstr ""
     5689
     5690#: waeup/kofa/students/browser_templates/exportconfig.pt:123
    55205691msgid "Course Ticket Session"
    5521 msgstr ""
    5522 
    5523 #: waeup/kofa/students/browser_templates/exportconfig.pt:119
    5524 msgid "Course Ticket Semester"
    55255692msgstr ""
    55265693
     
    55325699msgstr ""
    55335700
     5701#: waeup/kofa/students/browser_templates/exportconfig.pt:133
     5702msgid "Course Ticket Semester"
     5703msgstr ""
     5704
    55345705#: waeup/kofa/students/browser_templates/exportconfig.pt:43
    55355706msgid "Current Study Mode"
    5536 msgstr ""
    5537 
    5538 #: waeup/kofa/students/browser_templates/exportconfig.pt:99
    5539 msgid "Course Ticket Level"
    55405707msgstr ""
    55415708
     
    56005767
    56015768#: waeup/kofa/students/browser_templates/paymentsmanagepage.pt:11
    5602 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:129
    5603 #: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:51
     5769#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:160
     5770#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:91
    56045771msgid "Category"
    56055772msgstr ""
    56065773
    56075774#: waeup/kofa/students/browser_templates/paymentsmanagepage.pt:12
    5608 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:130
    5609 #: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:52
     5775#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:161
     5776#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:92
    56105777msgid "Item"
    56115778msgstr ""
     
    56165783
    56175784#: waeup/kofa/students/browser_templates/paymentsmanagepage.pt:8
    5618 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:126
    5619 #: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:48
     5785#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:157
     5786#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:88
    56205787msgid "Payment Id"
    56215788msgstr ""
     
    56255792#: waeup/kofa/browser/templates/datacenterexportpage.pt:56
    56265793#: waeup/kofa/browser/templates/reportscontainerpage.pt:7
    5627 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:99
    5628 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:127
     5794#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:130
     5795#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:158
    56295796#: waeup/kofa/applicants/browser_templates/exportjobsindex.pt:8
    5630 #: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:49
     5797#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:63
     5798#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:89
    56315799msgid "Creation Date"
    56325800msgstr ""
     
    56685836#: waeup/kofa/browser/templates/usereditformpage.pt:16
    56695837#: waeup/kofa/applicants/browser_templates/applicantregemailsent.pt:27
    5670 #: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:46
    5671 #: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:32
     5838#: waeup/kofa/applicants/browser_templates/applicanteditpage.pt:77
     5839#: waeup/kofa/applicants/browser_templates/applicantdisplaypage.pt:44
    56725840msgid "Password:"
    56735841msgstr ""
     
    57815949msgstr ""
    57825950
     5951#: waeup/kofa/students/browser_templates/studylevelpage.pt:18
     5952#: waeup/kofa/students/browser_templates/studylevelremarkpage.pt:12
     5953#: waeup/kofa/students/browser_templates/studylevelmanagepage.pt:12
     5954msgid "Course Tickets"
     5955msgstr ""
     5956
    57835957#: waeup/kofa/students/browser_templates/studylevelpage.pt:26
    57845958#: waeup/kofa/students/browser_templates/studylevelremarkpage.pt:42
     
    58746048msgstr ""
    58756049
    5876 #: waeup/kofa/students/export.py:320
    5877 msgid "Student Study Courses"
    5878 msgstr ""
    5879 
    5880 #: waeup/kofa/students/export.py:351
    5881 msgid "Student Study Levels"
    5882 msgstr ""
    5883 
    5884 #: waeup/kofa/students/export.py:385
    5885 #: waeup/kofa/students/browser_templates/studylevelpage.pt:18
    5886 #: waeup/kofa/students/browser_templates/studylevelremarkpage.pt:12
    5887 #: waeup/kofa/students/browser_templates/studylevelmanagepage.pt:12
    5888 msgid "Course Tickets"
    5889 msgstr ""
    5890 
    5891 #: waeup/kofa/students/export.py:413
     6050#: waeup/kofa/students/export.py:331
     6051msgid "Students (Data Backup)"
     6052msgstr ""
     6053
     6054#: waeup/kofa/students/export.py:374
     6055msgid "Students (Trimmed Data)"
     6056msgstr ""
     6057
     6058#: waeup/kofa/students/export.py:397
     6059msgid "Student Study Courses (Data Backup)"
     6060msgstr ""
     6061
     6062#: waeup/kofa/students/export.py:428
     6063msgid "Student Study Levels (Data Backup)"
     6064msgstr ""
     6065
     6066#: waeup/kofa/students/export.py:462
     6067msgid "Course Tickets (Data Backup)"
     6068msgstr ""
     6069
     6070#: waeup/kofa/students/export.py:492
     6071msgid "Student Payments (Data Backup)"
     6072msgstr ""
     6073
     6074#: waeup/kofa/students/export.py:521
     6075msgid "Student Payments (Sorted Data)"
     6076msgstr ""
     6077
     6078#: waeup/kofa/students/export.py:554
    58926079msgid "Data for Lecturer"
    58936080msgstr ""
    58946081
    5895 #: waeup/kofa/students/export.py:446
    5896 msgid "Student Payments"
    5897 msgstr ""
    5898 
    5899 #: waeup/kofa/students/export.py:472
    5900 msgid "Student Unpaid Payments"
    5901 msgstr ""
    5902 
    5903 #: waeup/kofa/students/export.py:499
     6082#: waeup/kofa/students/export.py:587
     6083#: waeup/kofa/students/reports/level_report.py:73
     6084msgid "Outstanding Courses"
     6085msgstr ""
     6086
     6087#: waeup/kofa/students/export.py:618
     6088msgid "Unpaid Payment Tickets"
     6089msgstr ""
     6090
     6091#: waeup/kofa/students/export.py:645
    59046092msgid "Payment Data for Bursary"
    59056093msgstr ""
    59066094
    5907 #: waeup/kofa/students/export.py:535
     6095#: waeup/kofa/students/export.py:681
    59086096msgid "Accommodation Payments"
    59096097msgstr ""
    59106098
    5911 #: waeup/kofa/students/export.py:550
    5912 msgid "Bed Tickets"
    5913 msgstr ""
    5914 
    5915 #: waeup/kofa/students/export.py:587
    5916 msgid "Student School Fee Payments Overview"
    5917 msgstr ""
    5918 
    5919 #: waeup/kofa/students/export.py:641
     6099#: waeup/kofa/students/export.py:696
     6100msgid "Bed Tickets (Data Backup)"
     6101msgstr ""
     6102
     6103#: waeup/kofa/students/export.py:733
     6104msgid "School Fee Payments Overview"
     6105msgstr ""
     6106
     6107#: waeup/kofa/students/export.py:787
    59206108msgid "Session Payments Overview"
    59216109msgstr ""
    59226110
    5923 #: waeup/kofa/students/export.py:700
    5924 msgid "Student Study Levels Overview"
    5925 msgstr ""
    5926 
    5927 #: waeup/kofa/students/export.py:730
     6111#: waeup/kofa/students/export.py:846
     6112msgid "Study Levels Overview"
     6113msgstr ""
     6114
     6115#: waeup/kofa/students/export.py:876
    59286116msgid "Combo Card Data"
    59296117msgstr ""
    59306118
    5931 #: waeup/kofa/students/fileviewlets.py:108
     6119#: waeup/kofa/students/export.py:913
     6120msgid "Transcript Data"
     6121msgstr ""
     6122
     6123#: waeup/kofa/students/fileviewlets.py:107
    59326124msgid "Passport Picture (jpg only)"
    59336125msgstr ""
    59346126
    5935 #: waeup/kofa/students/fileviewlets.py:125
    5936 #: waeup/kofa/students/fileviewlets.py:138
     6127#: waeup/kofa/students/fileviewlets.py:128
     6128#: waeup/kofa/students/fileviewlets.py:141
    59376129msgid "Birth Certificate"
    59386130msgstr ""
    59396131
    5940 #: waeup/kofa/students/fileviewlets.py:126
    5941 #: waeup/kofa/students/fileviewlets.py:139
     6132#: waeup/kofa/students/fileviewlets.py:129
     6133#: waeup/kofa/students/fileviewlets.py:142
    59426134msgid "Birth Certificate Scan"
    59436135msgstr ""
    59446136
    5945 #: waeup/kofa/students/fileviewlets.py:96
     6137#: waeup/kofa/students/fileviewlets.py:95
    59466138#: waeup/kofa/students/browser_templates/basemanagepage.pt:12
    59476139msgid "Passport Picture"
    59486140msgstr ""
    59496141
    5950 #: waeup/kofa/students/interfaces.py:237
     6142#: waeup/kofa/students/interfaces.py:244
    59516143msgid "Reasons for Deactivation"
    59526144msgstr ""
    59536145
    5954 #: waeup/kofa/students/interfaces.py:239
     6146#: waeup/kofa/students/interfaces.py:246
    59556147msgid "This message will be shown if and only if deactivated students try to login."
    59566148msgstr ""
    59576149
    5958 #: waeup/kofa/students/interfaces.py:245
     6150#: waeup/kofa/students/interfaces.py:252
    59596151msgid "Flash Notice"
    59606152msgstr ""
    59616153
    5962 #: waeup/kofa/students/interfaces.py:248
     6154#: waeup/kofa/students/interfaces.py:255
    59636155msgid "This single-line message will be shown in a flash box."
    59646156msgstr ""
    59656157
    5966 #: waeup/kofa/students/interfaces.py:286
    5967 #: waeup/kofa/students/interfaces.py:425
     6158#: waeup/kofa/students/interfaces.py:293
     6159#: waeup/kofa/students/interfaces.py:432
    59686160msgid "Matriculation Number"
    59696161msgstr ""
    59706162
    5971 #: waeup/kofa/students/interfaces.py:293
     6163#: waeup/kofa/students/interfaces.py:300
    59726164msgid "PWD Activation Code"
    59736165msgstr ""
    59746166
    5975 #: waeup/kofa/students/interfaces.py:299
     6167#: waeup/kofa/students/interfaces.py:306
    59766168msgid "Email"
    59776169msgstr ""
    59786170
    5979 #: waeup/kofa/students/interfaces.py:310
     6171#: waeup/kofa/students/interfaces.py:317
    59806172msgid "Parents' Email"
    59816173msgstr ""
    59826174
    5983 #: waeup/kofa/students/interfaces.py:352
     6175#: waeup/kofa/students/interfaces.py:359
    59846176msgid "Officer's Comment"
    59856177msgstr ""
    59866178
    5987 #: waeup/kofa/students/interfaces.py:357
     6179#: waeup/kofa/students/interfaces.py:364
    59886180msgid "CLR Activation Code"
    59896181msgstr ""
    59906182
    5991 #: waeup/kofa/students/interfaces.py:370
     6183#: waeup/kofa/students/interfaces.py:377
    59926184msgid "Nationality"
    59936185msgstr ""
    59946186
    5995 #: waeup/kofa/students/interfaces.py:378
     6187#: waeup/kofa/students/interfaces.py:385
    59966188msgid "Employer"
    59976189msgstr ""
    59986190
    5999 #: waeup/kofa/students/interfaces.py:387
     6191#: waeup/kofa/students/interfaces.py:394
    60006192msgid "Updated"
    60016193msgstr ""
    60026194
    6003 #: waeup/kofa/students/interfaces.py:393
    6004 #: waeup/kofa/students/interfaces.py:409
     6195#: waeup/kofa/students/interfaces.py:400
     6196#: waeup/kofa/students/interfaces.py:416
    60056197msgid "Permanent Address"
    60066198msgstr ""
    60076199
    6008 #: waeup/kofa/students/interfaces.py:435
     6200#: waeup/kofa/students/interfaces.py:442
    60096201msgid "Registr. or Matric. Number"
    60106202msgstr ""
    60116203
    6012 #: waeup/kofa/students/interfaces.py:454
    6013 #: waeup/kofa/students/interfaces.py:515
     6204#: waeup/kofa/students/interfaces.py:461
     6205#: waeup/kofa/students/interfaces.py:522
    60146206#: waeup/kofa/students/reports/browser_templates/levelreportgeneratorpage.pt:10
    60156207#: waeup/kofa/students/browser_templates/filterstudentspage.pt:54
     
    60176209msgstr ""
    60186210
    6019 #: waeup/kofa/students/interfaces.py:460
     6211#: waeup/kofa/students/interfaces.py:467
    60206212msgid "Entry Mode"
    60216213msgstr ""
    60226214
    6023 #: waeup/kofa/students/interfaces.py:467
    6024 #: waeup/kofa/students/interfaces.py:528
     6215#: waeup/kofa/students/interfaces.py:474
     6216#: waeup/kofa/students/interfaces.py:535
    60256217msgid "Entry Session"
    60266218msgstr ""
    60276219
    6028 #: waeup/kofa/students/interfaces.py:489
    6029 #: waeup/kofa/students/interfaces.py:545
     6220#: waeup/kofa/students/interfaces.py:496
     6221#: waeup/kofa/students/interfaces.py:552
    60306222msgid "Current Verdict"
    60316223msgstr ""
    60326224
    6033 #: waeup/kofa/students/interfaces.py:496
     6225#: waeup/kofa/students/interfaces.py:503
    60346226msgid "Previous Verdict"
    60356227msgstr ""
    60366228
    6037 #: waeup/kofa/students/interfaces.py:563
     6229#: waeup/kofa/students/interfaces.py:570
    60386230msgid "Bypass validation"
    60396231msgstr ""
    60406232
    6041 #: waeup/kofa/students/interfaces.py:568
     6233#: waeup/kofa/students/interfaces.py:575
     6234#: waeup/kofa/students/interfaces.py:616
     6235msgid "Validated by"
     6236msgstr ""
     6237
    60426238#: waeup/kofa/students/interfaces.py:609
    6043 msgid "Validated by"
    6044 msgstr ""
    6045 
    6046 #: waeup/kofa/students/interfaces.py:602
    60476239msgid "Verdict"
    60486240msgstr ""
    60496241
    6050 #: waeup/kofa/students/interfaces.py:615
     6242#: waeup/kofa/students/interfaces.py:622
    60516243msgid "Validation Date"
    60526244msgstr ""
    60536245
    6054 #: waeup/kofa/students/interfaces.py:621
     6246#: waeup/kofa/students/interfaces.py:628
    60556247msgid "Total Credits"
    60566248msgstr ""
    60576249
    6058 #: waeup/kofa/students/interfaces.py:627
     6250#: waeup/kofa/students/interfaces.py:634
    60596251msgid "Unrectified GPA"
    60606252msgstr ""
    60616253
    6062 #: waeup/kofa/students/interfaces.py:633
     6254#: waeup/kofa/students/interfaces.py:640
    60636255msgid "Transcript Remark"
    60646256msgstr ""
    60656257
    6066 #: waeup/kofa/students/interfaces.py:672
     6258#: waeup/kofa/students/interfaces.py:679
    60676259msgid "Faculty Code"
    60686260msgstr ""
    60696261
    6070 #: waeup/kofa/students/interfaces.py:677
     6262#: waeup/kofa/students/interfaces.py:684
    60716263msgid "Department Code"
    60726264msgstr ""
    60736265
    6074 #: waeup/kofa/students/interfaces.py:682
     6266#: waeup/kofa/students/interfaces.py:689
    60756267#: waeup/kofa/university/interfaces.py:177
    60766268msgid "Semester/Term"
    60776269msgstr ""
    60786270
    6079 #: waeup/kofa/students/interfaces.py:688
     6271#: waeup/kofa/students/interfaces.py:695
    60806272msgid "Imported Session"
    60816273msgstr ""
    60826274
    6083 #: waeup/kofa/students/interfaces.py:694
     6275#: waeup/kofa/students/interfaces.py:701
    60846276#: waeup/kofa/university/interfaces.py:171
    60856277msgid "Passmark"
    60866278msgstr ""
    60876279
    6088 #: waeup/kofa/students/interfaces.py:704
     6280#: waeup/kofa/students/interfaces.py:711
    60896281#: waeup/kofa/browser/templates/certificatepage.pt:34
    60906282#: waeup/kofa/browser/templates/certificatemanagepage.pt:44
     
    60926284msgstr ""
    60936285
    6094 #: waeup/kofa/students/interfaces.py:710
     6286#: waeup/kofa/students/interfaces.py:717
    60956287msgid "Outstanding Course"
    60966288msgstr ""
    60976289
    6098 #: waeup/kofa/students/interfaces.py:716
     6290#: waeup/kofa/students/interfaces.py:723
    60996291#: waeup/kofa/university/interfaces.py:360
    61006292msgid "Course Category"
    61016293msgstr ""
    61026294
    6103 #: waeup/kofa/students/interfaces.py:729
     6295#: waeup/kofa/students/interfaces.py:736
    61046296msgid "Carry-over Course"
    61056297msgstr ""
    61066298
    6107 #: waeup/kofa/students/interfaces.py:735
     6299#: waeup/kofa/students/interfaces.py:742
    61086300msgid "Automatical Creation"
    61096301msgstr ""
    61106302
    6111 #: waeup/kofa/students/interfaces.py:744
     6303#: waeup/kofa/students/interfaces.py:751
    61126304#: waeup/kofa/university/interfaces.py:348
    61136305#: waeup/kofa/students/browser_templates/transcript.pt:37
     
    61156307msgstr ""
    61166308
    6117 #: waeup/kofa/students/interfaces.py:759
     6309#: waeup/kofa/students/interfaces.py:766
     6310#: waeup/kofa/students/browser_templates/exportconfig.pt:99
    61186311#: waeup/kofa/students/browser_templates/exportconfig_course.pt:23
    61196312msgid "Level Session"
    61206313msgstr ""
    61216314
    6122 #: waeup/kofa/students/interfaces.py:770
     6315#: waeup/kofa/students/interfaces.py:777
    61236316msgid "Desired Hostel"
    61246317msgstr ""
    61256318
    6126 #: waeup/kofa/students/interfaces.py:786
     6319#: waeup/kofa/students/interfaces.py:793
    61276320msgid "Allocated Bed"
    61286321msgstr ""
    61296322
    6130 #: waeup/kofa/students/interfaces.py:798
     6323#: waeup/kofa/students/interfaces.py:805
    61316324msgid "Requested Bed Type"
    61326325msgstr ""
    61336326
    6134 #: waeup/kofa/students/interfaces.py:811
    6135 #: waeup/kofa/students/browser_templates/accommodationmanagepage.pt:46
     6327#: waeup/kofa/students/interfaces.py:818
     6328#: waeup/kofa/students/browser_templates/accommodationpage.pt:15
    61366329msgid "Booking Date"
    61376330msgstr ""
    61386331
    6139 #: waeup/kofa/students/interfaces.py:817
     6332#: waeup/kofa/students/interfaces.py:824
    61406333msgid "Booking Activation Code"
    61416334msgstr ""
    61426335
    6143 #: waeup/kofa/students/interfaces.py:841
     6336#: waeup/kofa/students/interfaces.py:848
    61446337msgid "Current Session Payment"
    61456338msgstr ""
    61466339
    6147 #: waeup/kofa/students/interfaces.py:847
    6148 #: waeup/kofa/students/interfaces.py:890
    6149 #: waeup/kofa/students/interfaces.py:913
     6340#: waeup/kofa/students/interfaces.py:854
     6341#: waeup/kofa/students/interfaces.py:897
     6342#: waeup/kofa/students/interfaces.py:920
    61506343msgid "Payment Level"
    61516344msgstr ""
    61526345
    6153 #: waeup/kofa/students/interfaces.py:919
     6346#: waeup/kofa/students/interfaces.py:926
    61546347msgid "Balance Amount"
    61556348msgstr ""
    61566349
    6157 #: waeup/kofa/students/interfaces.py:923
     6350#: waeup/kofa/students/interfaces.py:930
    61586351msgid "Balance in Naira "
    61596352msgstr ""
     
    61826375msgstr ""
    61836376
    6184 #: waeup/kofa/students/reports/level_report.py:133
    6185 #: waeup/kofa/students/reports/level_report.py:291
     6377#: waeup/kofa/students/reports/level_report.py:134
     6378#: waeup/kofa/students/reports/level_report.py:292
    61866379msgid "Level Report"
    61876380msgstr ""
    61886381
    6189 #: waeup/kofa/students/reports/level_report.py:234
     6382#: waeup/kofa/students/reports/level_report.py:235
    61906383#: waeup/kofa/students/reports/raw_score_report.py:220
    61916384#: waeup/kofa/students/reports/session_results_presentation.py:173
     
    61936386msgstr ""
    61946387
    6195 #: waeup/kofa/students/reports/level_report.py:317
     6388#: waeup/kofa/students/reports/level_report.py:318
    61966389msgid "Create level report"
    61976390msgstr ""
    61986391
    6199 #: waeup/kofa/students/reports/level_report.py:333
     6392#: waeup/kofa/students/reports/level_report.py:339
    62006393msgid "No certificate selected."
    62016394msgstr ""
    62026395
    6203 #: waeup/kofa/students/reports/level_report.py:352
     6396#: waeup/kofa/students/reports/level_report.py:358
    62046397#: waeup/kofa/students/reports/student_payment_statistics.py:338
    62056398#: waeup/kofa/students/reports/student_statistics.py:256
     
    62076400msgstr ""
    62086401
    6209 #: waeup/kofa/students/reports/level_report.py:67
     6402#: waeup/kofa/students/reports/level_report.py:68
    62106403#: waeup/kofa/students/reports/session_results_presentation.py:235
    62116404msgid "Student Name"
    62126405msgstr ""
    62136406
    6214 #: waeup/kofa/students/reports/level_report.py:68
     6407#: waeup/kofa/students/reports/level_report.py:69
    62156408msgid "Total Credits Taken"
    62166409msgstr ""
    62176410
    6218 #: waeup/kofa/students/reports/level_report.py:69
     6411#: waeup/kofa/students/reports/level_report.py:70
    62196412msgid "Total Credits Passed"
    62206413msgstr ""
    62216414
    6222 #: waeup/kofa/students/reports/level_report.py:70
     6415#: waeup/kofa/students/reports/level_report.py:71
    62236416msgid "GPA"
    62246417msgstr ""
    62256418
    6226 #: waeup/kofa/students/reports/level_report.py:71
     6419#: waeup/kofa/students/reports/level_report.py:72
    62276420msgid "Courses Failed"
    62286421msgstr ""
    62296422
    6230 #: waeup/kofa/students/reports/level_report.py:72
    6231 msgid "Outstanding Courses"
    6232 msgstr ""
    6233 
    6234 #: waeup/kofa/students/reports/level_report.py:73
     6423#: waeup/kofa/students/reports/level_report.py:74
    62356424msgid "Cum. Credits Taken"
    62366425msgstr ""
    62376426
    6238 #: waeup/kofa/students/reports/level_report.py:74
     6427#: waeup/kofa/students/reports/level_report.py:75
    62396428msgid "Cum. Credits Passed"
    62406429msgstr ""
    62416430
    6242 #: waeup/kofa/students/reports/level_report.py:75
     6431#: waeup/kofa/students/reports/level_report.py:76
    62436432msgid "CGPA"
    62446433msgstr ""
    62456434
    6246 #: waeup/kofa/students/reports/level_report.py:76
     6435#: waeup/kofa/students/reports/level_report.py:77
    62476436msgid "Remark"
    62486437msgstr ""
     
    63066495msgstr ""
    63076496
    6308 #: waeup/kofa/students/studylevel.py:235
     6497#: waeup/kofa/students/studylevel.py:254
    63096498msgid "Course registration has ended. Please pay the late registration fee."
    63106499msgstr ""
    63116500
    6312 #: waeup/kofa/students/utils.py:1008
     6501#: waeup/kofa/students/utils.py:1013
     6502msgid "Entry Mode:"
     6503msgstr ""
     6504
     6505#: waeup/kofa/students/utils.py:1020
     6506msgid "Cumulative GPA:"
     6507msgstr ""
     6508
     6509#: waeup/kofa/students/utils.py:1064
    63136510msgid "Error in image file."
    63146511msgstr ""
    63156512
    6316 #: waeup/kofa/students/utils.py:1030
     6513#: waeup/kofa/students/utils.py:1086
    63176514#. Default: ""
    63186515msgid "<b>Lecturer(s): ${a}</b>"
    63196516msgstr ""
    63206517
    6321 #: waeup/kofa/students/utils.py:1033
     6518#: waeup/kofa/students/utils.py:1089
    63226519#. Default: ""
    63236520msgid "<b>Credits: ${a}</b>"
    63246521msgstr ""
    63256522
    6326 #: waeup/kofa/students/utils.py:1038
    6327 #: waeup/kofa/students/utils.py:1041
     6523#: waeup/kofa/students/utils.py:1094
     6524#: waeup/kofa/students/utils.py:1097
     6525#: waeup/kofa/students/utils.py:1113
    63286526#. Default: ""
    63296527msgid "<b>${a}</b>"
    63306528msgstr ""
    63316529
    6332 #: waeup/kofa/students/utils.py:1045
     6530#: waeup/kofa/students/utils.py:1100
    63336531#. Default: ""
    63346532msgid "<b>Total Students: ${a}</b>"
    63356533msgstr ""
    63366534
    6337 #: waeup/kofa/students/utils.py:1048
     6535#: waeup/kofa/students/utils.py:1103
    63386536#. Default: ""
    63396537msgid "<b>Total Pass: ${a} (${b}%)</b>"
    63406538msgstr ""
    63416539
    6342 #: waeup/kofa/students/utils.py:1051
     6540#: waeup/kofa/students/utils.py:1106
    63436541#. Default: ""
    63446542msgid "<b>Total Fail: ${a} (${b}%)</b>"
    63456543msgstr ""
    63466544
    6347 #: waeup/kofa/students/utils.py:1063
     6545#: waeup/kofa/students/utils.py:1125
    63486546#. Default: ""
    63496547msgid ""
     
    63526550msgstr ""
    63536551
    6354 #: waeup/kofa/students/utils.py:1068
     6552#: waeup/kofa/students/utils.py:1130
    63556553msgid "Attendance Sheet"
    63566554msgstr ""
    63576555
    6358 #: waeup/kofa/students/utils.py:1070
     6556#: waeup/kofa/students/utils.py:1132
    63596557msgid "Course Tickets Overview"
    63606558msgstr ""
    63616559
    6362 #: waeup/kofa/students/utils.py:1075
     6560#: waeup/kofa/students/utils.py:1137
    63636561#. Default: ""
    63646562msgid "${b} - ${d}"
    63656563msgstr ""
    63666564
    6367 #: waeup/kofa/students/utils.py:1094
    6368 #: waeup/kofa/students/utils.py:1096
    6369 msgid "Maximum credits exceeded."
    6370 msgstr ""
    6371 
    6372 #: waeup/kofa/students/utils.py:1116
    6373 msgid "Clearance is disabled for this session."
    6374 msgstr ""
    6375 
    6376 #: waeup/kofa/students/utils.py:133
     6565#: waeup/kofa/students/utils.py:135
    63776566#: waeup/kofa/applicants/browser_templates/applicantcheckstatus.pt:39
    63786567msgid "Name:"
     
    63806569
    63816570#: waeup/kofa/students/utils.py:152
     6571msgid "Date of Birth:"
     6572msgstr ""
     6573
     6574#: waeup/kofa/students/utils.py:164
    63826575#: waeup/kofa/applicants/browser_templates/applicantcheckstatus.pt:45
    63836576msgid "Study Course:"
    63846577msgstr ""
    63856578
    6386 #: waeup/kofa/students/utils.py:159
    6387 #: waeup/kofa/students/utils.py:946
     6579#: waeup/kofa/students/utils.py:171
     6580#: waeup/kofa/students/utils.py:999
    63886581#: waeup/kofa/students/browser_templates/studycoursepage.pt:28
    63896582#: waeup/kofa/applicants/browser_templates/applicantcheckstatus.pt:51
     
    63916584msgstr ""
    63926585
    6393 #: waeup/kofa/students/utils.py:168
    6394 #: waeup/kofa/students/utils.py:939
     6586#: waeup/kofa/students/utils.py:180
     6587#: waeup/kofa/students/utils.py:992
    63956588#: waeup/kofa/students/browser_templates/studycoursepage.pt:39
    63966589#: waeup/kofa/applicants/browser_templates/applicantcheckstatus.pt:57
     
    63986591msgstr ""
    63996592
    6400 #: waeup/kofa/students/utils.py:179
     6593#: waeup/kofa/students/utils.py:191
    64016594#: waeup/kofa/students/browser_templates/studycoursepage.pt:18
    64026595msgid "Study Mode:"
    64036596msgstr ""
    64046597
    6405 #: waeup/kofa/students/utils.py:185
    6406 #: waeup/kofa/students/utils.py:953
     6598#: waeup/kofa/students/utils.py:197
     6599#: waeup/kofa/students/utils.py:1006
    64076600msgid "Entry Session:"
    64086601msgstr ""
    64096602
    6410 #: waeup/kofa/students/utils.py:192
    6411 #: waeup/kofa/students/utils.py:1025
     6603#: waeup/kofa/students/utils.py:204
     6604#: waeup/kofa/students/utils.py:1081
    64126605msgid "void"
    64136606msgstr ""
    64146607
    6415 #: waeup/kofa/students/utils.py:198
     6608#: waeup/kofa/students/utils.py:210
    64166609msgid "Current Level:"
    64176610msgstr ""
    64186611
    6419 #: waeup/kofa/students/utils.py:208
    6420 msgid "Date of Birth:"
    6421 msgstr ""
    6422 
    6423 #: waeup/kofa/students/utils.py:322
     6612#: waeup/kofa/students/utils.py:323
    64246613msgid "Scanned Documents"
    64256614msgstr ""
    64266615
    6427 #: waeup/kofa/students/utils.py:413
     6616#: waeup/kofa/students/utils.py:415
    64286617msgid "The previous session must not fall below your entry session."
    64296618msgstr ""
    64306619
    6431 #: waeup/kofa/students/utils.py:418
    6432 #: waeup/kofa/students/utils.py:421
     6620#: waeup/kofa/students/utils.py:420
     6621#: waeup/kofa/students/utils.py:423
    64336622msgid "This is not a previous session."
    64346623msgstr ""
    64356624
    6436 #: waeup/kofa/students/utils.py:438
    6437 #: waeup/kofa/students/utils.py:477
     6625#: waeup/kofa/students/utils.py:440
     6626#: waeup/kofa/students/utils.py:479
    64386627msgid "Study course data are incomplete."
    64396628msgstr ""
    64406629
    6441 #: waeup/kofa/students/utils.py:494
     6630#: waeup/kofa/students/utils.py:496
    64426631msgid "No bed allocated."
    64436632msgstr ""
    64446633
    6445 #: waeup/kofa/students/utils.py:501
     6634#: waeup/kofa/students/utils.py:503
    64466635msgid "%s undefined."
    64476636msgstr ""
    64486637
    6449 #: waeup/kofa/students/utils.py:513
     6638#: waeup/kofa/students/utils.py:515
    64506639msgid "This category of payments has been disabled."
    64516640msgstr ""
    64526641
    6453 #: waeup/kofa/students/utils.py:540
     6642#: waeup/kofa/students/utils.py:542
    64546643msgid "Amount must be greater than 0."
    64556644msgstr ""
    64566645
    6457 #: waeup/kofa/students/utils.py:569
     6646#: waeup/kofa/students/utils.py:571
    64586647msgid "Matriculation number cannot be set."
    64596648msgstr ""
    64606649
    6461 #: waeup/kofa/students/utils.py:588
     6650#: waeup/kofa/students/utils.py:590
    64626651msgid "Matriculation number already set."
    64636652msgstr ""
    64646653
    6465 #: waeup/kofa/students/utils.py:590
     6654#: waeup/kofa/students/utils.py:592
    64666655msgid "No certificate assigned."
    64676656msgstr ""
    64686657
    6469 #: waeup/kofa/students/utils.py:597
     6658#: waeup/kofa/students/utils.py:599
    64706659msgid "Matriculation number %s exists."
    64716660msgstr ""
    64726661
    6473 #: waeup/kofa/students/utils.py:647
     6662#: waeup/kofa/students/utils.py:649
    64746663#. Default: ""
    64756664msgid "Outside booking period: ${a} - ${b}"
    64766665msgstr ""
    64776666
    6478 #: waeup/kofa/students/utils.py:650
     6667#: waeup/kofa/students/utils.py:652
    64796668msgid "Outside booking period."
    64806669msgstr ""
    64816670
    6482 #: waeup/kofa/students/utils.py:654
     6671#: waeup/kofa/students/utils.py:656
    64836672msgid "You are in the wrong registration state."
    64846673msgstr ""
    64856674
    6486 #: waeup/kofa/students/utils.py:663
     6675#: waeup/kofa/students/utils.py:665
    64876676msgid "You already booked a bed space in current accommodation session."
    64886677msgstr ""
    64896678
    6490 #: waeup/kofa/students/utils.py:679
     6679#: waeup/kofa/students/utils.py:730
     6680#: waeup/kofa/students/utils.py:732
     6681msgid "Maximum credits exceeded."
     6682msgstr ""
     6683
     6684#: waeup/kofa/students/utils.py:743
     6685msgid "Course has already been passed at previous level."
     6686msgstr ""
     6687
     6688#: waeup/kofa/students/utils.py:763
     6689msgid "Clearance is disabled for this session."
     6690msgstr ""
     6691
     6692#: waeup/kofa/students/utils.py:823
     6693msgid "Workflow History"
     6694msgstr ""
     6695
     6696#: waeup/kofa/students/utils.py:871
    64916697#. Default: ""
    64926698msgid "This is to inform you that you have been provisionally admitted into ${a} as follows:"
    64936699msgstr ""
    64946700
    6495 #: waeup/kofa/students/utils.py:727
     6701#: waeup/kofa/students/utils.py:924
    64966702#. Default: ""
    64976703msgid "Your Kofa student record was created on ${a}."
    64986704msgstr ""
    64996705
    6500 #: waeup/kofa/students/utils.py:777
    6501 #: waeup/kofa/students/viewlets.py:66
    6502 #: waeup/kofa/students/viewlets.py:100
    6503 #: waeup/kofa/students/browser_templates/basemanagepage.pt:8
    6504 msgid "Base Data"
    6505 msgstr ""
    6506 
    6507 #: waeup/kofa/students/utils.py:798
    6508 msgid "Workflow History"
    6509 msgstr ""
    6510 
    6511 #: waeup/kofa/students/utils.py:933
     6706#: waeup/kofa/students/utils.py:986
    65126707msgid "Course of Study:"
    6513 msgstr ""
    6514 
    6515 #: waeup/kofa/students/utils.py:960
    6516 msgid "Entry Mode:"
    6517 msgstr ""
    6518 
    6519 #: waeup/kofa/students/utils.py:967
    6520 msgid "Cumulative GPA:"
    65216708msgstr ""
    65226709
     
    81208307msgstr ""
    81218308
    8122 #: waeup/kofa/utils/utils.py:249
     8309#: waeup/kofa/utils/utils.py:253
    81238310msgid ""
    81248311"Fullname: ${a}\n"
     
    81308317msgstr ""
    81318318
    8132 #: waeup/kofa/utils/utils.py:305
     8319#: waeup/kofa/utils/utils.py:315
    81338320msgid ""
    81348321"Dear ${a},\n"
     
    81508337msgstr ""
    81518338
    8152 #: waeup/kofa/utils/utils.py:346
     8339#: waeup/kofa/utils/utils.py:356
    81538340msgid ""
    81548341"Dear ${a},\n"
Note: See TracChangeset for help on using the changeset viewer.