Commit e600c7065453e0e6f5611a654fb0badbd3e1012f
1 parent
809b0ee3
Записаться на приём
Showing
10 changed files
with
77 additions
and
27 deletions
Show diff stats
backend/views/site/index.php
@@ -34,7 +34,7 @@ | @@ -34,7 +34,7 @@ | ||
34 | 34 | ||
35 | <div class="count" id="users">0</div> | 35 | <div class="count" id="users">0</div> |
36 | 36 | ||
37 | - <h3>Users</h3> | 37 | + <h3>Пользователи</h3> |
38 | <p>Lorem ipsum psdea itgum rixt.</p> | 38 | <p>Lorem ipsum psdea itgum rixt.</p> |
39 | </div> | 39 | </div> |
40 | </div> | 40 | </div> |
@@ -45,7 +45,7 @@ | @@ -45,7 +45,7 @@ | ||
45 | 45 | ||
46 | <div class="count" id="views">0</div> | 46 | <div class="count" id="views">0</div> |
47 | 47 | ||
48 | - <h3>Page views</h3> | 48 | + <h3>Просмотры страниц</h3> |
49 | <p>Lorem ipsum psdea itgum rixt.</p> | 49 | <p>Lorem ipsum psdea itgum rixt.</p> |
50 | </div> | 50 | </div> |
51 | </div> | 51 | </div> |
@@ -56,7 +56,7 @@ | @@ -56,7 +56,7 @@ | ||
56 | 56 | ||
57 | <div class="count" id="newusers">0</div> | 57 | <div class="count" id="newusers">0</div> |
58 | 58 | ||
59 | - <h3>New sessions</h3> | 59 | + <h3>Новые сессии</h3> |
60 | <p>Lorem ipsum psdea itgum rixt.</p> | 60 | <p>Lorem ipsum psdea itgum rixt.</p> |
61 | </div> | 61 | </div> |
62 | </div> | 62 | </div> |
@@ -105,16 +105,16 @@ | @@ -105,16 +105,16 @@ | ||
105 | ], | 105 | ], |
106 | 'items' => [ | 106 | 'items' => [ |
107 | [ | 107 | [ |
108 | - 'label' => 'Browsers', | 108 | + 'label' => 'Браузеры', |
109 | 'content' => '<div id="browsers"></div>', | 109 | 'content' => '<div id="browsers"></div>', |
110 | 'active' => true, | 110 | 'active' => true, |
111 | ], | 111 | ], |
112 | [ | 112 | [ |
113 | - 'label' => 'Cities', | 113 | + 'label' => 'Города', |
114 | 'content' => '<div id="cities"></div>', | 114 | 'content' => '<div id="cities"></div>', |
115 | ], | 115 | ], |
116 | [ | 116 | [ |
117 | - 'label' => 'Countries', | 117 | + 'label' => 'Страны', |
118 | 'content' => '<div id="countries"></div>', | 118 | 'content' => '<div id="countries"></div>', |
119 | ], | 119 | ], |
120 | ], | 120 | ], |
backend/views/site/login.php
@@ -48,7 +48,7 @@ JS; | @@ -48,7 +48,7 @@ JS; | ||
48 | <div class="x_title"> | 48 | <div class="x_title"> |
49 | <h1><?= Html::encode($this->title) ?></h1> | 49 | <h1><?= Html::encode($this->title) ?></h1> |
50 | 50 | ||
51 | - <p>Please fill out the following fields to login:</p> | 51 | + <p>Пожалуйста, заполните все поля для входа:</p> |
52 | </div> | 52 | </div> |
53 | <div class="row"> | 53 | <div class="row"> |
54 | <div> | 54 | <div> |
@@ -70,7 +70,7 @@ JS; | @@ -70,7 +70,7 @@ JS; | ||
70 | 70 | ||
71 | <div class="form-group"> | 71 | <div class="form-group"> |
72 | <?= Html::submitButton( | 72 | <?= Html::submitButton( |
73 | - 'Login', | 73 | + 'Войти', |
74 | [ | 74 | [ |
75 | 'class' => 'btn btn-default', | 75 | 'class' => 'btn btn-default', |
76 | 'name' => 'login-button', | 76 | 'name' => 'login-button', |
backend/views/sitemap/index.php
@@ -7,7 +7,7 @@ | @@ -7,7 +7,7 @@ | ||
7 | /** | 7 | /** |
8 | * @var View $this | 8 | * @var View $this |
9 | */ | 9 | */ |
10 | - $this->title = \Yii::t('core', 'Sitemap'); | 10 | + $this->title = \Yii::t('core', 'Карта сайта'); |
11 | $this->params[ 'breadcrumbs' ][] = $this->title; | 11 | $this->params[ 'breadcrumbs' ][] = $this->title; |
12 | /** | 12 | /** |
13 | * @var Sitemap $sitemap | 13 | * @var Sitemap $sitemap |
common/config/main.php
@@ -38,11 +38,11 @@ | @@ -38,11 +38,11 @@ | ||
38 | ], | 38 | ], |
39 | 'blog' => [ | 39 | 'blog' => [ |
40 | 'class' => 'yii\i18n\PhpMessageSource', | 40 | 'class' => 'yii\i18n\PhpMessageSource', |
41 | - 'basePath' => '@artbox/weblog/messages', | 41 | + 'basePath' => '@common/messages', |
42 | ], | 42 | ], |
43 | 'artbox-comment' => [ | 43 | 'artbox-comment' => [ |
44 | 'class' => 'yii\i18n\PhpMessageSource', | 44 | 'class' => 'yii\i18n\PhpMessageSource', |
45 | - 'basePath' => '@artbox/webcomment/messages', | 45 | + 'basePath' => '@common/messages', |
46 | ], | 46 | ], |
47 | ], | 47 | ], |
48 | ], | 48 | ], |
common/messages/ru/app.php
1 | <?php | 1 | <?php |
2 | return [ | 2 | return [ |
3 | - 'Home' => 'Главная', | ||
4 | - 'Submit' => 'Применить', | ||
5 | - 'Save' => 'Сохранить', | ||
6 | - 'Company name' => 'Название компании', | ||
7 | - 'Profile' => 'Профиль', | ||
8 | - 'Host' => 'Сервер', | ||
9 | - 'User' => 'Логин', | ||
10 | - 'Pass' => 'Пароль', | ||
11 | - 'Create Page' => 'Создать страницу', | ||
12 | - 'Add' => 'Добавить', | ||
13 | - 'Blog Articles' => 'Список статей', | 3 | + 'Home' => 'Главная', |
4 | + 'Submit' => 'Применить', | ||
5 | + 'Save' => 'Сохранить', | ||
6 | + 'Company name' => 'Название компании', | ||
7 | + 'Profile' => 'Профиль', | ||
8 | + 'Host' => 'Сервер', | ||
9 | + 'User' => 'Логин', | ||
10 | + 'Pass' => 'Пароль', | ||
11 | + 'Create Page' => 'Создать страницу', | ||
12 | + 'Add' => 'Добавить', | ||
13 | + 'Blog Articles' => 'Список статей', | ||
14 | + 'Anonymous' => 'Аноним', | ||
15 | + 'Create {modelClass}: ' => 'Создать {modelClass}: ', | ||
16 | + 'Update {modelClass}: ' => 'Обновить {modelClass}: ', | ||
17 | + 'Delete' => 'Удалить', | ||
18 | + 'Are you sure you want to delete this item?' => 'Вы уверены, что хотите удалить этот объект?', | ||
19 | + 'Settings' => 'Настройки', | ||
20 | + 'Submit comment' => 'Отправить комментарий', | ||
14 | ]; | 21 | ]; |
15 | \ No newline at end of file | 22 | \ No newline at end of file |
1 | +<?php | ||
2 | +return [ | ||
3 | + 'Tags' => 'Теги', | ||
4 | + 'Create Blog Article' => 'Создать статью', | ||
5 | + 'Blog Articles' => 'Список статей', | ||
6 | + 'create_item' => 'Создать', | ||
7 | + 'Categories' => 'Категории', | ||
8 | + 'Not active' => 'Не активна', | ||
9 | + 'Active' => 'Активна', | ||
10 | + 'Update Blog Article: ' => 'Обновить статью: ', | ||
11 | + 'Update' => 'Обновить', | ||
12 | + 'Delete' => 'Удалить', | ||
13 | + 'Create' => 'Создать', | ||
14 | +]; | ||
0 | \ No newline at end of file | 15 | \ No newline at end of file |
common/messages/ru/core.php
@@ -46,4 +46,13 @@ return [ | @@ -46,4 +46,13 @@ return [ | ||
46 | 'Tag Manager code' => 'Код Tag Manager', | 46 | 'Tag Manager code' => 'Код Tag Manager', |
47 | 'Sitemap' => 'Карта сайта', | 47 | 'Sitemap' => 'Карта сайта', |
48 | 'Blog Articles' => 'Список статей', | 48 | 'Blog Articles' => 'Список статей', |
49 | + 'Anonymous' => 'Аноним', | ||
50 | + 'User ID' => 'ID пользователя', | ||
51 | + 'Image' => 'Изображение', | ||
52 | + 'Email' => 'Email', | ||
53 | + 'Created At' => 'Создано', | ||
54 | + 'Updated At' => 'Обновлено', | ||
55 | + 'Visited At' => 'Последнее посещение', | ||
56 | + 'page_id' => 'fsdfd', | ||
57 | + 'Create {item}' => 'Создать {item}', | ||
49 | ]; | 58 | ]; |
50 | \ No newline at end of file | 59 | \ No newline at end of file |
frontend/views/persone/index.php
@@ -15,7 +15,7 @@ | @@ -15,7 +15,7 @@ | ||
15 | <div id="content"> | 15 | <div id="content"> |
16 | <div class="container"> | 16 | <div class="container"> |
17 | 17 | ||
18 | - <section> | 18 | + <section class="col-md-12"> |
19 | 19 | ||
20 | <div class="row"> | 20 | <div class="row"> |
21 | <div class="col-md-12"> | 21 | <div class="col-md-12"> |
@@ -44,4 +44,12 @@ | @@ -44,4 +44,12 @@ | ||
44 | <!-- /.container --> | 44 | <!-- /.container --> |
45 | </div> | 45 | </div> |
46 | <!-- /#content --> | 46 | <!-- /#content --> |
47 | - | ||
48 | \ No newline at end of file | 47 | \ No newline at end of file |
48 | + | ||
49 | + | ||
50 | +<div id="get-it" class="pages"> | ||
51 | + <div class="container"> | ||
52 | + <div class="col-md-12 col-sm-12" style="text-align: center;"> | ||
53 | + <a href="#" class="btn bnm btn-template-transparent-primary modal-link" data-form="appointment-modal" data-modalname="Записаться на приём">Записаться на прием</a> | ||
54 | + </div> | ||
55 | + </div> | ||
56 | +</div> | ||
49 | \ No newline at end of file | 57 | \ No newline at end of file |
frontend/views/persone/view.php
@@ -11,7 +11,7 @@ | @@ -11,7 +11,7 @@ | ||
11 | 11 | ||
12 | $this->params[ 'breadcrumbs' ][] = [ | 12 | $this->params[ 'breadcrumbs' ][] = [ |
13 | 'url' => [ 'persone/index' ], | 13 | 'url' => [ 'persone/index' ], |
14 | - 'label' => \Yii::t('app', 'песонал'), | 14 | + 'label' => \Yii::t('app', 'персонал'), |
15 | ]; | 15 | ]; |
16 | 16 | ||
17 | $this->params[ 'breadcrumbs' ][] = $model->lang->title; | 17 | $this->params[ 'breadcrumbs' ][] = $model->lang->title; |
@@ -20,7 +20,7 @@ | @@ -20,7 +20,7 @@ | ||
20 | 20 | ||
21 | <div id="content" class="team-member-detail"> | 21 | <div id="content" class="team-member-detail"> |
22 | <div class="container"> | 22 | <div class="container"> |
23 | - <section> | 23 | + <section class="col-md-12"> |
24 | <div class="row"> | 24 | <div class="row"> |
25 | <div class="col-md-12"> | 25 | <div class="col-md-12"> |
26 | <div class="heading"> | 26 | <div class="heading"> |
@@ -69,4 +69,12 @@ | @@ -69,4 +69,12 @@ | ||
69 | 69 | ||
70 | </div> | 70 | </div> |
71 | <!-- /#content --> | 71 | <!-- /#content --> |
72 | - | ||
73 | \ No newline at end of file | 72 | \ No newline at end of file |
73 | + | ||
74 | + | ||
75 | +<div id="get-it" class="pages"> | ||
76 | + <div class="container"> | ||
77 | + <div class="col-md-12 col-sm-12" style="text-align: center;"> | ||
78 | + <a href="#" class="btn bnm btn-template-transparent-primary modal-link" data-form="appointment-modal" data-modalname="Записаться на приём">Записаться на прием</a> | ||
79 | + </div> | ||
80 | + </div> | ||
81 | +</div> | ||
74 | \ No newline at end of file | 82 | \ No newline at end of file |