common/messages/en-Us/frontend/quicksignupに次のような翻訳可能な文字列があります。
return [
'AcceptTermsAndConditionLabel' => 'I confirm that I am more than 13 years old and accept the {terms and condition}, and {privacy policy} of this website',
];
私の QuickSignupFormモデルは次のようになります。
public function attributeLabels()
{
return [
'AcceptTermsAndCondition' => Yii::t('frontend/quicksignup','AcceptTermsAndConditionLabel'),
];
}
次のコンテンツをレンダリングします。
I confirm that I am more than 13 years old and accept the {terms and condition}, and {privacy policy} of this website
{terms and condition}
と{privacy policy}
をリンクに置き換えたい。しかし、翻訳可能なファイル、つまりcommon/messages/en-Us/frontend/quicksignupでそれを行おうとすると、文字列としてレンダリングされます。
以下は、出力のスクリーンショットです。リンクをレンダリングするにはどうすればよいですか? 何か案は?