X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/705f93e810a78623f680061d25e6593878681efb..9a051df2d22dbdfe43c2014ec70ac992aa630da3:/app/controllers/user_controller.rb diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb index 2659232cd..b58a6a71c 100644 --- a/app/controllers/user_controller.rb +++ b/app/controllers/user_controller.rb @@ -154,9 +154,9 @@ class UserController < ApplicationController end return elsif User.authenticate(:username => email_or_display_name, :password => pass, :inactive => true) - @notice = "Sorry, your account is not active yet.
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 @@ -186,11 +186,11 @@ class UserController < ApplicationController @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 @@ -206,11 +206,11 @@ class UserController < ApplicationController @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