tracks/vendor/rails/actionpack/lib/action_controller/translation.rb
2011-02-04 17:11:33 +01:00

13 lines
No EOL
222 B
Ruby

module ActionController
module Translation
def translate(*args)
I18n.translate(*args)
end
alias :t :translate
def localize(*args)
I18n.localize(*args)
end
alias :l :localize
end
end