1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Added reference to I18n.localize, as discussed here:

https://github.com/rails/rails/issues/4027
This commit is contained in:
Ernesto Tagwerker 2012-05-04 14:35:16 -03:00
parent 7f536f9158
commit c8e0571987

View file

@ -63,6 +63,9 @@ module ActionView
alias :t :translate
# Delegates to <tt>I18n.localize</tt> with no additional functionality.
#
# See http://rubydoc.info/github/svenfuchs/i18n/master/I18n/Backend/Base:localize
# for more information.
def localize(*args)
I18n.localize(*args)
end