##// END OF EJS Templates
Adds the email address to the flash message after registeration....
Jean-Philippe Lang -
r11719:52af9a176603
parent child
Show More
@@ -282,7 +282,7 class AccountController < ApplicationController
282 token = Token.new(:user => user, :action => "register")
282 token = Token.new(:user => user, :action => "register")
283 if user.save and token.save
283 if user.save and token.save
284 Mailer.register(token).deliver
284 Mailer.register(token).deliver
285 flash[:notice] = l(:notice_account_register_done)
285 flash[:notice] = l(:notice_account_register_done, :email => user.mail)
286 redirect_to signin_path
286 redirect_to signin_path
287 else
287 else
288 yield if block_given?
288 yield if block_given?
@@ -152,7 +152,7 en-GB:
152 notice_account_invalid_creditentials: Invalid user or password
152 notice_account_invalid_creditentials: Invalid user or password
153 notice_account_password_updated: Password was successfully updated.
153 notice_account_password_updated: Password was successfully updated.
154 notice_account_wrong_password: Wrong password
154 notice_account_wrong_password: Wrong password
155 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
155 notice_account_register_done: Account was successfully created. An email containing the instructions to activate your account was sent to %{email}.
156 notice_account_unknown_email: Unknown user.
156 notice_account_unknown_email: Unknown user.
157 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
157 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
158 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
158 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
@@ -148,7 +148,7 en:
148 notice_account_invalid_creditentials: Invalid user or password
148 notice_account_invalid_creditentials: Invalid user or password
149 notice_account_password_updated: Password was successfully updated.
149 notice_account_password_updated: Password was successfully updated.
150 notice_account_wrong_password: Wrong password
150 notice_account_wrong_password: Wrong password
151 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
151 notice_account_register_done: Account was successfully created. An email containing the instructions to activate your account was sent to %{email}.
152 notice_account_unknown_email: Unknown user.
152 notice_account_unknown_email: Unknown user.
153 notice_account_not_activated_yet: You haven't activated your account yet. If you want to receive a new activation email, please <a href="%{url}">click this link</a>.
153 notice_account_not_activated_yet: You haven't activated your account yet. If you want to receive a new activation email, please <a href="%{url}">click this link</a>.
154 notice_account_locked: Your account is locked.
154 notice_account_locked: Your account is locked.
@@ -165,7 +165,7 fr:
165 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
165 notice_account_invalid_creditentials: Identifiant ou mot de passe invalide.
166 notice_account_password_updated: Mot de passe mis à jour avec succès.
166 notice_account_password_updated: Mot de passe mis à jour avec succès.
167 notice_account_wrong_password: Mot de passe incorrect
167 notice_account_wrong_password: Mot de passe incorrect
168 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé.
168 notice_account_register_done: Un message contenant les instructions pour activer votre compte vous a été envoyé à l'adresse %{email}.
169 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
169 notice_account_unknown_email: Aucun compte ne correspond à cette adresse.
170 notice_account_not_activated_yet: Vous n'avez pas encore activé votre compte. Si vous voulez recevoir un nouveau message d'activation, veuillez <a href="%{url}">cliquer sur ce lien</a>.
170 notice_account_not_activated_yet: Vous n'avez pas encore activé votre compte. Si vous voulez recevoir un nouveau message d'activation, veuillez <a href="%{url}">cliquer sur ce lien</a>.
171 notice_account_locked: Votre compte est verrouillé.
171 notice_account_locked: Votre compte est verrouillé.
General Comments 0
You need to be logged in to leave comments. Login now