-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
If the HTML template uses the translate-namespace directive, the tool will not assemble the translation IDs correctly.
Example case:
<div translate-namespace="CONTENT"
<div>
<h3 translate translate-default="Hello">.TITLE</h3>
</div>
<div translate-namespace="SECTION"
<div>
<h3 translate translate-default="Article 1">.TITLE</h3>
</div>
It will report that the translation ID .TITLE is duplicate, with different default texts.
The directive is documented in the angular-translate API guide.