mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 00:00:12 +01:00
13 lines
222 B
Ruby
13 lines
222 B
Ruby
|
|
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
|