projects
/
depot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
9bb63cdb1556c536e8c1abb57ef61845dccef610
[depot.git]
/
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