Merge pull request #3734 from gschlager/i18n-2

Remove hard-coded fallback to English locale
This commit is contained in:
Sam 2015-09-07 08:44:12 +10:00
commit 6850476cb3
1 changed files with 0 additions and 3 deletions

View File

@ -41,11 +41,8 @@ class UserNotifications < ActionMailer::Base
build_email( user.email, template: "user_notifications.account_created", email_token: opts[:email_token])
end
# On error, use english
def short_date(dt)
I18n.l(dt, format: :short)
rescue I18n::MissingTranslationData
I18n.l(dt, format: :short, locale: 'en')
end
def digest(user, opts={})