From f508cfb05f533e5e149db733dfd42b285f452746 Mon Sep 17 00:00:00 2001 From: Shaun McDonald Date: Sat, 30 May 2009 15:57:49 +0000 Subject: [PATCH] Fix a few typos --- app/controllers/user_controller.rb | 2 +- app/views/user/account.rhtml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb index 0b2ec168a..d83cac0da 100644 --- a/app/controllers/user_controller.rb +++ b/app/controllers/user_controller.rb @@ -27,7 +27,7 @@ class UserController < ApplicationController @user.locale = Language.find_by_code("en") if @user.locale.nil? if @user.save - flash[:notice] = I18n.t('user.new.create success message') + flash[:notice] = I18n.t('user.new.flash create success message') Notifier.deliver_signup_confirm(@user, @user.tokens.create) redirect_to :action => 'login' else diff --git a/app/views/user/account.rhtml b/app/views/user/account.rhtml index 40e8fe01a..4552c22a1 100644 --- a/app/views/user/account.rhtml +++ b/app/views/user/account.rhtml @@ -42,7 +42,7 @@ Your email address will not be revealed by becoming public.
This action cannot be reversed and all new users are now public by default.


- <%= button_to t('user.account.make all my edits public button', :action => :go_public %> + <%= button_to t('user.account.make all my edits public button'), :action => :go_public %> <% end %>

-- 2.43.2