Changeset 783 for WAeUP_SRP/trunk


Ignore:
Timestamp:
5 Nov 2006, 15:03:32 (18 years ago)
Author:
Henrik Bettermann
Message:

texts modified

Location:
WAeUP_SRP/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/Widgets.py

    r780 r783  
    229229            err = 0
    230230            if len(value.split()) > 1:
    231                 err = 'Invalid Id (Id contains space(s)'
     231                err = 'Invalid Id, Id contains space(s).'
    232232            elif self.portal_catalog(portal_type=portal_type_query,id=value):
    233                 err = 'An object with the Id %s already exists in the Academic section' % (value)
     233                err = 'An object with the Id %s already exists in the Academic Section.' % (value)
    234234            if err:
    235235                datastructure.setError(widget_id, err)
     
    299299            err = 0
    300300            if not (len(value) == self.digits + self.letters and value[:self.digits].isdigit() and value[self.digits:].isalpha()):
    301                 err = 'Invalid Registration Number in the format: %s%s with N = Number, L = Letter' % (self.digits_str,self.letters_str)
     301                err = 'Invalid number, the expected format is: %s%s with N = Number, L = Letter' % (self.digits_str,self.letters_str)
    302302            else:
    303303                s = getStudentByRegNo(self,value)
     
    389389        while 1:
    390390            if ok == -2:
    391                 err = 'You have already applied with a different Pin, please login.'
     391                err = 'You have already applied with a different PIN, please login.'
    392392                break
    393393            elif ok == -1:
    394                 err = 'invalid Pin'
     394                err = 'Invalid PIN'
    395395                break
    396396            if ok == 0:
    397                 err = 'Pin already used'
     397                err = 'PIN already used'
    398398                break
    399399            if ok >= 1:
  • WAeUP_SRP/trunk/skins/waeup_student/login_student.pt

    r610 r783  
    1717  the student record. Do not confuse with your Registration or Matriculation Number!</p>
    1818 
    19   <p>During the admission and clearance process the <strong>Password</strong>, which has to be entered here, corresponds with the last
    20   10 digits of your Access Card PIN. You cannot change the Password (or better Passnumber). After clearance you will be requested to choose your own
    21   password.</p>
     19  <p>During the admission and clearance process the <strong>Password</strong> corresponds with the last
     20  10 digits of your Access Card PIN.</p>
    2221 
    2322  <br />
  • WAeUP_SRP/trunk/skins/waeup_student/pume_anon_view.pt

    r779 r783  
    2323        <span tal:omit-tag=""
    2424              tal:content="structure python: pume_doc.render(proxy=pume_doc,
    25               layout_mode='view',
     25              layout_mode='view_slip',
    2626              layout_id='student_pume_fe')"
    2727              />
Note: See TracChangeset for help on using the changeset viewer.