I came across some opensource code in views, with a t() tag similar to the HTML escape sequence h().
<%= f.label :password, t(:password, :scope => "activerecord.attributes.user") -%>
What does t() mean?
|
I came across some opensource code in views, with a
What does |
||||
|
|
|
t(keys, options = {}) Alias for translate translate(keys, options = {}) Delegates to Second, it‘ll scope the key by the current partial if the key starts with a period. So if you call |
||||
|
|
|
Do the translation of key in .yml files in config/locales t(:password) key is "password" |
|||
|
|