TYPO3 ext form - Как изменить метку (заголовок) сводной страницы? - PullRequest
0 голосов
/ 07 октября 2018

Я использую расширение формы, и это часть моего файла yaml:

  -
    renderingOptions:
      previousButtonLabel: 'Go Back'
      nextButtonLabel: 'Send Message'
    type: SummaryPage
    identifier: summarypage-1
    label: Summary

В файле xlf я могу получить доступ к кнопкам следующим образом:

<trans-unit id="BasicContactForm.element.page-1.renderingOptions.nextButtonLabel" xml:space="preserve">
    <source>Send Message</source>
</trans-unit>
<trans-unit id="BasicContactForm.element.summarypage-1.renderingOptions.previousButtonLabel" xml:space="preserve">
    <source>Go Back</source>
</trans-unit>
<trans-unit id="element.BasicContactForm.renderingOptions.submitButtonLabel" xml:space="preserve">
    <source>Send Message</source>
</trans-unit>

Нокак я могу получить доступ к метке (заголовку) моей сводной страницы?Кажется, это не работает:

<trans-unit id="element.BasicContactForm.summarypage-1.label" xml:space="preserve">
    <source>Summary1</source>
</trans-unit>    

И это не так:

<trans-unit id="BasicContactForm.element.summarypage-1.label" xml:space="preserve">
    <source>Summary1</source>
</trans-unit>       

1 Ответ

0 голосов
/ 07 октября 2018

Вы можете перевести метки для (сводных) страниц так же, как вы переводите метки полей формы.

В вашем случае возможны следующие ключи перевода:

<!-- All elements of type 'SummaryPage' -->
<trans-unit id="element.SummaryPage.properties.label">
    <source>Summary</source>
</trans-unit>

<!-- All elements with the identifier 'summarypage-1' -->
<trans-unit id="element.summarypage-1.properties.label">
    <source>Summary</source>
</trans-unit>

<!-- The single element with the identifier 'summarypage-1' inside the form 'BasicContactForm' -->
<trans-unit id="BasicContactForm.element.summarypage-1.properties.label">
    <source>Summary</source>
</trans-unit>

Я написал подробное руководство по переводу форм TYPO3 со множеством объяснений и примеров, которые вы можете найти здесь: https://www.sklein -medien.de / en / tutorials / detail / translation-forms-in-the-typo3-form-framework/

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...