method
localize
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