Commit 963cda729fcde9f8aeeec998ce847997384725dc
1 parent
d68614ad
translates 1.1
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
backend/views/feedback/view.php
... | ... | @@ -8,11 +8,11 @@ use yii\widgets\DetailView; |
8 | 8 | |
9 | 9 | $this->title = $model->name; |
10 | 10 | $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Feedbacks'), 'url' => ['index']]; |
11 | -$this->params['breadcrumbs'][] = $this->title; | |
11 | +$this->params['breadcrumbs'][] = \Yii::t('core', $this->title); | |
12 | 12 | ?> |
13 | 13 | <div class="feedback-view"> |
14 | 14 | |
15 | - <h1><?= Html::encode($this->title) ?></h1> | |
15 | + <h1><?= Html::encode(\Yii::t('core', $this->title)) ?></h1> | |
16 | 16 | |
17 | 17 | <p> |
18 | 18 | <?= Html::a(Yii::t('app', 'Update'), ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?> | ... | ... |