freeze rails 2.2

This commit is contained in:
Reinier Balt 2008-11-28 08:16:51 +01:00
parent fe5f962dcf
commit 59d5d4c8b6
1468 changed files with 213171 additions and 0 deletions

View file

@ -0,0 +1,13 @@
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