2008-10-27 07:47:01 +01:00
|
|
|
module ActionController
|
|
|
|
module Translation
|
|
|
|
def translate(*args)
|
2009-12-01 02:38:34 +01:00
|
|
|
I18n.translate(*args)
|
2008-10-27 07:47:01 +01:00
|
|
|
end
|
|
|
|
alias :t :translate
|
|
|
|
|
|
|
|
def localize(*args)
|
2009-12-01 02:38:34 +01:00
|
|
|
I18n.localize(*args)
|
2008-10-27 07:47:01 +01:00
|
|
|
end
|
|
|
|
alias :l :localize
|
|
|
|
end
|
|
|
|
end
|