LazyMazur
Проверенные
- Сообщения
- 320
- Решения
- 8
- Реакции
- 200
- Баллы
- 85
Перевожу свой сайт и столкнулся с проблемой - отсутствуют фразы из welcome section.
Решение для таких же ламеров как я:
Создаём в ручную фразы на необходимых языках
Переходим в шаблон uix_welcomeSection и меняем {{ property('uix_welcomeSection__title')}}, {{ property('uix_welcomeSection__text')}} и {{ property('uix_welcomeSection__buttonText')}} на свои фразы, так же заменив property на phrase.
У меня это выглядит так:
Решение для таких же ламеров как я:
Создаём в ручную фразы на необходимых языках
Переходим в шаблон uix_welcomeSection и меняем {{ property('uix_welcomeSection__title')}}, {{ property('uix_welcomeSection__text')}} и {{ property('uix_welcomeSection__buttonText')}} на свои фразы, так же заменив property на phrase.
У меня это выглядит так:
Код:
<div class="media__body">
<xf:if is="property('uix_welcomeSection__title')"><div class="uix_welcomeSection__title">{{ phrase('uix.ws_title')}}</div></xf:if>
<xf:if is="property('uix_welcomeSection__text')"><div class="uix_welcomeSection__text">{{ phrase('uix.ws_text')}}</div></xf:if>
<xf:if is="property('uix_welcomeSection__url')"><xf:button href="{{ link(property('uix_welcomeSection__url')) }}" class="button--cta">{{ phrase('uix.ws_button')}}</xf:button></xf:if>
</div>
Последнее редактирование: