2008-10-27 01:47:01 -05:00
|
|
|
module ActionController
|
|
|
|
module Translation
|
|
|
|
def translate(*args)
|
2009-11-30 19:38:34 -06:00
|
|
|
I18n.translate(*args)
|
2008-10-27 01:47:01 -05:00
|
|
|
end
|
|
|
|
alias :t :translate
|
|
|
|
|
|
|
|
def localize(*args)
|
2009-11-30 19:38:34 -06:00
|
|
|
I18n.localize(*args)
|
2008-10-27 01:47:01 -05:00
|
|
|
end
|
|
|
|
alias :l :localize
|
|
|
|
end
|
|
|
|
end
|