method
localize
localize(object, **options)
public
Delegates to I18n.localize with no additional functionality.
See www.rubydoc.info/github/svenfuchs/i18n/master/I18n/Backend/Base:localize for more information.
Register or
log in
to add new notes.
sshaw -
April 22, 2010
1 thank
nil Argument Raises An I18n::ArgumentError
You might want to do this:
module ActionView module Helpers module TranslationHelper def localize(*args) #Avoid I18n::ArgumentError for nil values I18n.localize(*args) unless args.first.nil? end # l() still points at old definition alias l localize end end
end
ziemek -
March 14, 2011
0 thanks