Page MenuHomePhabricator

Handle headings on TranslateTagger conveniently
Open, Needs TriagePublic

Description

The tool currently handles the headings as separate units by default and issues a separate unit of translate wrappers, which shouldn't be the case. Instead, we keep an empty line after every heading to separate the translation unit, and not issue separate translate wrappers.

==Heading==
Lorem ipsum

The result is:

<translate>
==Heading==
</translate>
<translate>Lorem ipsum</translate>

The ideal is:

<translate>
==Heading==

Lorem ipsum</translate>

Event Timeline

Hi @NishthaJain7, is there any progress on this?

This still issues a separate unit of translate wrappers around heading and paragraph.