Commit 39b74e50b0b7440e7f0d52a9dbeb38f5ebd9266b

Authored by Виталий
1 parent 724d0056

translate

common/messages/ru/app.php
... ... @@ -22,13 +22,6 @@ return [
22 22 'blog-txt' => ' Мы собираем полезные материалы по тематике бытовой техники и электроники',
23 23 'Search by tag' => 'Поиск по тегам',
24 24 'Continue reading' => 'Продолжить чтение',
25   - '' => '',
26   - '' => '',
27   - '' => '',
28   - '' => '',
29   - '' => '',
30   - '' => '',
31   - '' => '',
32   - '' => '',
33   - '' => '',
  25 + 'Address' => 'Адрес',
  26 + 'phone' => 'Телефон',
34 27 ];
35 28 \ No newline at end of file
... ...
common/messages/ua/app.php
... ... @@ -23,8 +23,8 @@ return [
23 23 'blog-txt' => 'Ми збираємо корисні матеріали з тематики побутової техніки та електроніки',
24 24 'Search by tag' => 'Пошук по тегам',
25 25 'Continue reading' => 'Продовжити читання',
26   -
27   -
  26 + 'Address' => 'Адреса',
  27 + 'phone' => 'телефон',
28 28  
29 29  
30 30 ];
31 31 \ No newline at end of file
... ...
frontend/views/event/_event.php
... ... @@ -65,7 +65,7 @@
65 65 <p class="intro"><?= $model->body_preview; ?></p>
66 66 <p class="read-more">
67 67 <?= Html::a(
68   - 'Продолжить чтение',
  68 + \Yii::t('app', 'Continue reading'),
69 69 [
70 70 '', 'alias' => $model->alias
71 71 ],
... ...
frontend/views/event/index.php
... ... @@ -53,7 +53,7 @@ _________________________________________________________ --&gt;
53 53 ?>
54 54 <div class="panel sidebar-menu">
55 55 <div class="panel-heading">
56   - <h3 class="panel-title"><?=\Yii::t('app', 'Поиск по тегам')?></h3>
  56 + <h3 class="panel-title"><?=\Yii::t('app', 'Search by tag')?></h3>
57 57 </div>
58 58  
59 59 <div class="panel-body">
... ...
frontend/views/site/contact.php
... ... @@ -37,7 +37,7 @@ JS;
37 37 <div class="icon">
38 38 <i class="fa fa-map-marker"></i>
39 39 </div>
40   - <h3>Address</h3>
  40 + <h3><?=\Yii::t('app', 'Address')?></h3>
41 41 <p>
42 42 <?php
43 43 if (!empty( $settings->address )) {
... ... @@ -58,9 +58,8 @@ JS;
58 58 <div class="icon">
59 59 <i class="fa fa-phone"></i>
60 60 </div>
61   - <h3> Call center </h3>
62   - <p class="text-muted"> This number is toll free if calling from Great Britain otherwise we advise you to use the electronic form of communication .</p>
63   - <p>
  61 + <h3><?=\Yii::t('app', 'phone')?></h3>
  62 + <p>
64 63 <?php
65 64 echo Html::a(Html::tag('strong', $settings->phone), 'tel:' . $settings->phone);
66 65 ?>
... ... @@ -81,8 +80,7 @@ JS;
81 80 <div class="icon">
82 81 <i class="fa fa-envelope"></i>
83 82 </div>
84   - <h3> Electronic support </h3>
85   - <p class="text-muted"> Please feel free to write an email to us or to use our electronic ticketing system .</p>
  83 + <h3>e-mail</h3>
86 84 <ul class="list-style-none">
87 85 <li>
88 86 <?php
... ...