I'm trying to update my language change hardcoded placeholder
so I have
<input type="text" placeholder="{{placeholderText}} />
and in my angular controller
$scope.placeholderText =filter("translate")("label");
but when the language is updated the placeholder remains in the original language.
also is there a way to hide the placeholder's {{placeholderText}}
uppon loading the page, before the translate kicks in.