2

How can I translate the property named Create NEW inside the link?

Html::a('Create NEW', ['create'], ['class' => 'btn btn-success']),

I tried this

$var = Yii::t('app', 'Create NEW');
Html::a($var, ['create'], ['class' => 'btn btn-success']);

but the link gets lost.

Insane Skull
  • 9,220
  • 9
  • 44
  • 63
Gibs
  • 774
  • 9
  • 26

1 Answers1

3

Yes, you can place the translation inside the link widget:

Html::a(Yii::t('app', 'Create NEW'), ['create'], ['class' => 'btn btn-success']),
Insane Skull
  • 9,220
  • 9
  • 44
  • 63