~michaelforrest/use-case-mapper/trunk

« back to all changes in this revision

Viewing changes to vendor/rails/actionpack/lib/action_controller/translation.rb

  • Committer: Richard Lee (Canonical)
  • Date: 2010-10-15 15:17:58 UTC
  • mfrom: (190.1.3 use-case-mapper)
  • Revision ID: richard.lee@canonical.com-20101015151758-wcvmfxrexsongf9d
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
b'\\ No newline at end of file'