I'm using angular-translate. And it seems that filter-based translation does not use translate-namespace defined with attribute-level directive above. AFAIK it's because filter cannot process scope chain. Is there a way to connect filter-based translation to namespaces?
<div translate-namespace="form">
<translate>create-new</translate> <!-- this works respecting namespace -->
</div>
<div translate-namespace="list">
{{"create-new"| translate}} <!-- this doesn't use namespace at all -->
</div>