Ruby on Railsでロケールファイル(en.yml)に改行を挿入するには?
en.yml
ロケール ファイル ( ) で定義されている文字列を改行付きで表示したい。
以下のようにロケールファイル(en.yml)を定義しました:
en:
testmsg: |
this is line1.
this is line2.
そして、以下のようなビューファイル(~.html.erb)を作成しました:
<h1><%= t :testmsg %></h1>
しかし、結果は次のようになりました。
this is line1.this is line2.
結果に改行はありません。
en.yml
Ruby on Railsでロケールファイル()に改行を挿入する方法は?