这是我的 config/locales/en.yml 文件:
# Sample localization file for English. Add more files in this directory for other locales.
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
en:
hello: "Hello world"
signup_title: "Sign Up for Test"
我使用什么来调用这个文件中的消息(可能使用不正确)
<h1><%= en.signup_title %></h1>
当然我会遇到一些错误
undefined local variable or method `en' for #<#<Class:0x007fd14d4f4338>:0x007fd14d501fb0>
那么我怎样才能在没有任何错误的情况下获得消息值?