yii2 $this->title = translate?




<?php

use yii\helpers\Html;

use yii\widgets\ActiveForm;

use yii\helpers\Url;

use yii\helpers\ArrayHelper;

/* @var $this yii\web\View */

$this->title = echo Yii::t('app','webd$service');?>




does not work, other ideas?

Try to remove echo.




<?php

use yii\helpers\Html;

use yii\widgets\ActiveForm;

use yii\helpers\Url;

use yii\helpers\ArrayHelper;

/* @var $this yii\web\View */

$this->title = Yii::t('app','webd$service');?>

?>

<?= $this->title; ?>