Froze rails gems
[depot.git] / vendor / rails / actionpack / lib / action_controller / translation.rb
1 module ActionController
2 module Translation
3 def translate(*args)
4 I18n.translate *args
5 end
6 alias :t :translate
7
8 def localize(*args)
9 I18n.localize *args
10 end
11 alias :l :localize
12 end
13 end