summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2015-02-01 21:33:13 -0700
committermo khan <mo@mokhan.ca>2015-02-01 21:33:13 -0700
commit74fbea95e4f4a27e3e4fdc2b4e897b0316bd56f2 (patch)
tree085c60e575c148ad03791023d90bc37a3f10c2a8 /app/controllers
parente5bd627538b428fe94f16ee430b4cdad085f10f2 (diff)
move translation out of devise.en.yml to en.yml
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/passwords_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/passwords_controller.rb b/app/controllers/passwords_controller.rb
index 8ddeae60..7b461776 100644
--- a/app/controllers/passwords_controller.rb
+++ b/app/controllers/passwords_controller.rb
@@ -5,7 +5,7 @@ class PasswordsController < ApplicationController
def create
PasswordReset.send_reset_instructions_to(params[:user][:email])
- redirect_to new_session_path, notice: t('devise.passwords.send_instructions')
+ redirect_to new_session_path, notice: t('passwords.send_instructions')
end
def edit