1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-16 14:50:48 +03:00

Fixes #824 Вынос текстовок

This commit is contained in:
Denis Shakhov 2017-02-02 07:22:27 +07:00
parent d85561a300
commit 78c5dde210
3 changed files with 4 additions and 2 deletions

View file

@ -48,7 +48,7 @@
{component 'field' template='select'
label = $aLang.topic.add.fields.blog.label
name = ''
placeholder = 'Выберите блоги для публикации'
placeholder = $aLang.topic.add.fields.blog.placeholder
inputClasses = 'js-topic-add-blogs'
isMultiple = true
selectedValue = $blogsSelectedId

View file

@ -1072,7 +1072,8 @@ return array(
// Поля
'fields' => array(
'blog' => array(
'label' => 'Select the blog',
'label' => 'Select the blogs',
'placeholder' => 'Select the blogs',
'note' => 'You have to join the blog in order to submit new posts in it.',
'option_personal' => 'My personal blog',
),

View file

@ -1077,6 +1077,7 @@ return array(
'fields' => array(
'blog' => array(
'label' => 'В какой блог публикуем?',
'placeholder' => 'Выберите блоги для публикации',
'note' => 'Для того чтобы написать в определенный блог, вы должны, для начала, вступить в него.',
'option_personal' => 'Мой персональный блог',
),