Commit 5a2397a4a6e8a53de12b8f0c63eba6fa91c3572b
1 parent
06692811
composer 1
Showing
4 changed files
with
11 additions
and
3 deletions
Show diff stats
common/messages/ru/app.php
composer.json
frontend/views/layouts/main.php
... | ... | @@ -105,7 +105,7 @@ _________________________________________________________ --> |
105 | 105 | <?php |
106 | 106 | if (!empty($settings->phone)) { |
107 | 107 | echo \Yii::t('app', 'Contact us on '); |
108 | - echo Html::a($settings->phone, "tel: {$settings->phone}"); | |
108 | + echo Html::a($settings->phone, \Yii::t('app', 'tel:')." {$settings->phone}"); | |
109 | 109 | if (!empty($settings->email)) { |
110 | 110 | echo \Yii::t('app', ' or '); |
111 | 111 | echo Html::a($settings->email, "mailto:$settings->email"); | ... | ... |