In der Klasse ccm-core/src/com/arsdigita/ui/login/UserLoginForm.java die FormProcessException in der Zeile 250 umgebaut und den key couldnt_create_timestamp den Properties hinzugefügt.

git-svn-id: https://svn.libreccm.org/ccm/trunk@3249 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2015-02-18 21:47:32 +00:00
parent 8a9bd8b6ef
commit f9532ee6c4
5 changed files with 6 additions and 1 deletions

View File

@ -63,3 +63,4 @@ login.error.loginFail=Login failed
login.changePasswortForm.greeting=Welcome {0} login.changePasswortForm.greeting=Welcome {0}
login.changePasswortForm.introText=To change your passwort please fill out this form. login.changePasswortForm.introText=To change your passwort please fill out this form.
login.userForm.couldnt_load_user=Could not load User login.userForm.couldnt_load_user=Could not load User
login.userLoginForm.couldnt_create_timestamp=Could not create timestamp

View File

@ -63,3 +63,4 @@ login.error.loginFail=Anmeldung nicht erfolgreich
login.changePasswortForm.greeting=Willkommen {0} login.changePasswortForm.greeting=Willkommen {0}
login.changePasswortForm.introText=Um ihr Passwort zu \u00e4ndern, f\u00fcllen sie bitte das folgende Formular aus. login.changePasswortForm.introText=Um ihr Passwort zu \u00e4ndern, f\u00fcllen sie bitte das folgende Formular aus.
login.userForm.couldnt_load_user=User konnte nicht geladen werden login.userForm.couldnt_load_user=User konnte nicht geladen werden
login.userLoginForm.couldnt_create_timestamp=Konnte den Timestamp nicht erstellen

View File

@ -63,3 +63,4 @@ login.error.loginFail=Login failed
login.changePasswortForm.greeting=Welcome {0} login.changePasswortForm.greeting=Welcome {0}
login.changePasswortForm.introText=To change your passwort please fill out this form. login.changePasswortForm.introText=To change your passwort please fill out this form.
login.userForm.couldnt_load_user=Could not load User login.userForm.couldnt_load_user=Could not load User
login.userLoginForm.couldnt_create_timestamp=Could not create timestamp

View File

@ -63,3 +63,4 @@ login.userRegistrationForm.newUserRegister=New users register here
login.error.bannedEmail=User cannot currently access system login.error.bannedEmail=User cannot currently access system
login.error.loginFail=User cannot currently access system login.error.loginFail=User cannot currently access system
login.userForm.couldnt_load_user=Impossible de charger l'utilisateur login.userForm.couldnt_load_user=Impossible de charger l'utilisateur
login.userLoginForm.couldnt_create_timestamp=Impossible de cr\u00e9er timestamp

View File

@ -247,7 +247,8 @@ public class UserLoginForm extends Form
m_timestamp.setValue(event.getPageState(), value); m_timestamp.setValue(event.getPageState(), value);
} catch (CredentialException e) { } catch (CredentialException e) {
s_log.debug("Could not create timestamp", e); s_log.debug("Could not create timestamp", e);
throw new FormProcessException("Could not create timestamp", e); throw new FormProcessException(LoginGlobalizationUtil.globalize(
"login.userLoginForm.couldnt_create_timestamp"));
} }
} }