Show
Ignore:
Timestamp:
09/03/10 20:55:02 (21 months ago)
Author:
winfried
Message:

- correction in CHI config
- replacing "e-mail adres" with "e-mailadres", closes #181

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • HelpIM3/HelpIM/auth/pages/PasswordRecover.py

    r1138 r1172  
    2525                       [ { 
    2626                           'id': 'user_email', 
    27                            'name': 'E-mail adres', 
     27                           'name': 'E-mailadres', 
    2828                           'type': 'text', 
    2929                           'length': '40' 
     
    6060        if not kwargs['him_request'].site.siteConfig.userIdIsEmail: 
    6161            self.checkNotEmpty('user_userId', 'Geef AUB uw login naam') 
    62         self.checkNotEmpty('user_email', 'Geef AUB uw e-mail adres') 
     62        self.checkNotEmpty('user_email', 'Geef AUB uw e-mailadres') 
    6363 
    6464    def performAction(self, *pargs, **kwargs): 
     
    6868            user = self.site.getUserByUserId(self.site, self.getParam('user_userId')) 
    6969            if not user or user.user_email != self.getParam('user_email'): 
    70                 self.addError('Bij de opgegeven gebruikersnaam is het opgegeven e-mail adres niet bekend') 
     70                self.addError('Bij de opgegeven gebruikersnaam is het opgegeven e-mailadres niet bekend') 
    7171                from HelpIM.appl.application import actionResult_REDISPLAY 
    7272                self.him_request.actionResult = actionResult_REDISPLAY