diff --git a/views/seo-category/create.php b/views/seo-category/create.php index 309dc63..cec036e 100755 --- a/views/seo-category/create.php +++ b/views/seo-category/create.php @@ -11,7 +11,7 @@ * @var SeoCategoryLang[] $modelLangs */ - $this->title = Yii::t('app', 'Create Seo Category'); + $this->title = \Yii::t('app', 'create_item',['item'=>'Seo Category']); $this->params[ 'breadcrumbs' ][] = [ 'label' => Yii::t('app', 'Seo Categories'), 'url' => [ 'index' ], diff --git a/views/seo-category/index.php b/views/seo-category/index.php index c31c1fe..30c8de3 100755 --- a/views/seo-category/index.php +++ b/views/seo-category/index.php @@ -17,7 +17,7 @@
- = Html::a(Yii::t('app', 'Create Seo Category'), [ 'create' ], [ 'class' => 'btn btn-success' ]) ?> + = Html::a(\Yii::t('app', 'create_item',['item'=>'Seo Category']), [ 'create' ], [ 'class' => 'btn btn-success' ]) ?>
= GridView::widget( [ diff --git a/views/seo-dynamic/create.php b/views/seo-dynamic/create.php index dee2537..0f131f8 100755 --- a/views/seo-dynamic/create.php +++ b/views/seo-dynamic/create.php @@ -14,7 +14,7 @@ * @var SeoCategory $seo_category */ - $this->title = Yii::t('app', 'Create Seo Dynamic'); + $this->title = \Yii::t('app', 'create_item',['item'=>'Seo Dynamic']); $this->params[ 'breadcrumbs' ][] = [ 'label' => Yii::t('app', 'Seo Categories'), 'url' => [ '/seo-category/index' ], diff --git a/views/seo-dynamic/index.php b/views/seo-dynamic/index.php index 07cf999..3fdef4f 100755 --- a/views/seo-dynamic/index.php +++ b/views/seo-dynamic/index.php @@ -30,7 +30,7 @@= Html::a( - Yii::t('app', 'Create Seo Dynamic'), + \Yii::t('app', 'create_item',['item'=>'Seo Dynamic']), Url::toRoute( [ 'create', diff --git a/views/seo/create.php b/views/seo/create.php index 589c9a3..6f72116 100755 --- a/views/seo/create.php +++ b/views/seo/create.php @@ -11,7 +11,7 @@ * @var SeoLang[] $modelLangs */ - $this->title = Yii::t('app', 'Create Seo'); + $this->title = \Yii::t('app', 'create_item',['item'=>'Seo']); $this->params[ 'breadcrumbs' ][] = [ 'label' => Yii::t('app', 'Seos'), 'url' => [ 'index' ], diff --git a/views/seo/index.php b/views/seo/index.php index 9768a62..0143067 100755 --- a/views/seo/index.php +++ b/views/seo/index.php @@ -16,7 +16,7 @@
- = Html::a(Yii::t('app', 'Create Seo'), [ 'create' ], [ 'class' => 'btn btn-success' ]) ?> + = Html::a(\Yii::t('app', 'create_item',['item'=>'Seo']), [ 'create' ], [ 'class' => 'btn btn-success' ]) ?>
= GridView::widget( [ -- libgit2 0.21.4