mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
19 lines
404 B
Ruby
19 lines
404 B
Ruby
module AbstractController
|
|
module Translation
|
|
def translate(*args)
|
|
key = args.first
|
|
if key.is_a?(String) && (key[0] == '.')
|
|
key = "#{ controller_path.gsub('/', '.') }.#{ action_name }#{ key }"
|
|
args[0] = key
|
|
end
|
|
|
|
I18n.translate(*args)
|
|
end
|
|
alias :t :translate
|
|
|
|
def localize(*args)
|
|
I18n.localize(*args)
|
|
end
|
|
alias :l :localize
|
|
end
|
|
end
|