Before I start rewriting my code:
Using angular-gettext, is there anyway to deal with these type of inline ternary condition? Applying the translate filter doesn't seem to be an option here...
<a uib-tooltip="{{favourite?'remove from favourites':'add to favourites'}}" ng-click="someaction()">something</a>
Thanks in advance!
I would just move the strings to the controller (see the ng-gettext docs):