Commit 6dd644cca4472c49b4fa5bb386a09a7e22397223
1 parent
8f7e574f
individual page
Showing
2 changed files
with
15 additions
and
7 deletions
Show diff stats
frontend/views/layouts/main.php
| ... | ... | @@ -406,20 +406,28 @@ |
| 406 | 406 | ->label(false)?> |
| 407 | 407 | |
| 408 | 408 | <?= $form->field($feedback, 'name') |
| 409 | - ->textInput(); ?> | |
| 409 | + ->textInput() | |
| 410 | + ->label(\Yii::t('app', 'name')); | |
| 411 | + ?> | |
| 410 | 412 | |
| 411 | 413 | <?= $form->field($feedback, 'email') |
| 412 | - ->textInput(); ?> | |
| 414 | + ->textInput() | |
| 415 | + ->label(\Yii::t('app', 'email')); | |
| 416 | + ?> | |
| 413 | 417 | |
| 414 | 418 | <?= $form->field($feedback, 'phone') |
| 415 | - ->textInput(); ?> | |
| 419 | + ->textInput() | |
| 420 | + ->label(\Yii::t('app', 'phone')); | |
| 421 | + ?> | |
| 416 | 422 | |
| 417 | 423 | <?= $form->field($feedback, 'message') |
| 418 | 424 | ->textarea( |
| 419 | 425 | [ |
| 420 | 426 | 'rows' => 4, |
| 421 | 427 | ] |
| 422 | - ); ?> | |
| 428 | + ) | |
| 429 | + ->label(\Yii::t('app', 'message')); | |
| 430 | + ?> | |
| 423 | 431 | |
| 424 | 432 | <p class="text-center"> |
| 425 | 433 | <?= Html::submitButton( | ... | ... |
frontend/views/site/individual.php
| ... | ... | @@ -99,7 +99,7 @@ |
| 99 | 99 | <div class="heading text-left"> |
| 100 | 100 | <h2><?= Yii::t('app', 'ind_title2') ?></h2> |
| 101 | 101 | </div> |
| 102 | - <p class="lead"><?= Yii::t('app', 'text3') ?></p> | |
| 102 | + <p class="lead"><?= Yii::t('app', 'ind_text8') ?></p> | |
| 103 | 103 | </div> |
| 104 | 104 | <div class="col-md-6 hidden-md hidden-lg"> |
| 105 | 105 | <img src="/img/accord/indiv02.jpg" alt="" class="img-responsive border5"> |
| ... | ... | @@ -124,7 +124,7 @@ |
| 124 | 124 | <div class="heading text-left"> |
| 125 | 125 | <h2><?= Yii::t('app', 'ind_title3') ?></h2> |
| 126 | 126 | </div> |
| 127 | - <p class="lead"><?= Yii::t('app', 'text2') ?></p> | |
| 127 | + <p class="lead"><?= Yii::t('app', 'ind_text9') ?></p> | |
| 128 | 128 | </div> |
| 129 | 129 | <div class="col-md-6 text-center"> |
| 130 | 130 | <img src="/img/accord/indiv03.jpg" alt="" class="img-responsive border5"> |
| ... | ... | @@ -149,7 +149,7 @@ |
| 149 | 149 | <div class="heading text-left"> |
| 150 | 150 | <h2><?= Yii::t('app', 'ind_title4') ?></h2> |
| 151 | 151 | </div> |
| 152 | - <p class="lead"><?= Yii::t('app', 'text3') ?></p> | |
| 152 | + <p class="lead"><?= Yii::t('app', 'ind_text10') ?></p> | |
| 153 | 153 | </div> |
| 154 | 154 | <div class="col-md-6 hidden-md hidden-lg"> |
| 155 | 155 | <img src="/img/accord/indiv04.jpg" alt="" class="img-responsive border5"> | ... | ... |