if user
token = user.tokens.create
Notifier.deliver_lost_password(user, token)
- flash[:notice] = I18n.t('user.lost_password.notice.email on way')
+ flash[:notice] = I18n.t('user.lost_password.notice email on way')
else
flash[:notice] = I18n.t('user.lost_password.notice email cannot find')
end
end
return
elsif User.authenticate(:username => email_or_display_name, :password => pass, :inactive => true)
- @notice = "Sorry, your account is not active yet.<br>Please click on the link in the account confirmation email to activate your account."
+ @notice = I18n.t('user.login.account not active')
else
- @notice = "Sorry, couldn't log in with those details."
+ @notice = I18n.t('user.login.auth failure')
end
end
end
@user.email_valid = true
@user.save!
token.destroy
- flash[:notice] = 'Confirmed your account, thanks for signing up!'
+ flash[:notice] = I18n.t('user.confirm.success')
session[:user] = @user.id
redirect_to :action => 'account', :display_name => @user.display_name
else
- @notice = 'Something went wrong confirming that user.'
+ @notice = I18n.t('user.confirm.failure')
end
end
end
@user.email_valid = true
@user.save!
token.destroy
- flash[:notice] = 'Confirmed your email address, thanks for signing up!'
+ flash[:notice] = I18n.t('user.confirm email.success')
session[:user] = @user.id
redirect_to :action => 'account', :display_name => @user.display_name
else
- @notice = 'Something went wrong confirming that email address.'
+ @notice = I18n.t('user.confirm email.failure')
end
end
end