私が構築している Web アプリケーションには、バンドルに固有ではないメッセージがいくつかあります。したがって、「app/Resources/translations/EPCommon.en.yml」に入れることを考えていました。
問題は、Twig でこのドメイン メッセージを呼び出す方法がわからないことです。私はいくつかのことを試しましたが、うまくいきません。
title="{{'share.facebook'|trans()}}"
title="{{'share.facebook'|trans({}, 'EPCommon')}}"
Result : title="share.facebook"
誰かが私が間違っていることを教えてもらえますか? ありがとう
編集: 何か問題がある場合に備えて、yml ファイル。
# app/Resources/translations/EPCommon.en.yml
share:
facebook: "Share on Facebook"
google: "Share on Google+"
twitter: "Share on Twitter"
help:
button: "Help"