diff --git a/common/messages/ru/core.php b/common/messages/ru/core.php index fc4cfad..ba20373 100644 --- a/common/messages/ru/core.php +++ b/common/messages/ru/core.php @@ -53,6 +53,6 @@ return [ 'Created At' => 'Создано', 'Updated At' => 'Обновлено', 'Visited At' => 'Последнее посещение', - 'page_id' => 'fsdfd', - 'Create {item}' => 'Создать {item}', + 'page_id' => 'ID страницы', + 'Create {item}' => 'Создать {item}', ]; \ No newline at end of file diff --git a/frontend/views/site/contact.php b/frontend/views/site/contact.php index 517c458..2642263 100755 --- a/frontend/views/site/contact.php +++ b/frontend/views/site/contact.php @@ -158,16 +158,19 @@ JS;
field($contact, 'name') - ->textInput(); ?> + ->textInput() + ->label('Имя'); ?>
field($contact, 'email') - ->textInput(); ?> + ->textInput() + ->label('Email'); ?>
field($contact, 'phone') - ->textInput(); ?> + ->textInput() + ->label('Телефон'); ?>
field($contact, 'message') @@ -175,7 +178,8 @@ JS; [ 'rows' => 3, ] - ); ?> + ) + ->label('Сообщение'); ?>
-- libgit2 0.21.4