我正在尝试翻译标签,但即使在阅读了文档后我也不明白该怎么做。
我的simple_form本地,但用我的语言本地
en:
simple_form:
labels:
listener:
new:
email: "Your email"
password: "password"
remember_me: "remember me"
password_confirmation: "confirm password"
message:
title: 'Title'
description: 'Description'
在我的表单视图中,要创建新消息,我想翻译标题和描述的标签。理解该消息:代表型号名称。
<%= simple_form_for @message, html: { multipart: true } do |f| %>
<%= f.input :title, label: "Message Title" %>
<%= f.input :description, label: "Short Description" %>