I am using AngularJS with angular-translate (pascalprecht). I am experiencing an issue, where translated text on a button element doesn't show up, until I scroll the button out of the current view and scroll back in or redraw the page in some other way (like toggling display: none). The translated text is in place though (checking through inspector - chrome dev tools).
This happens on Chrome, I couldn't replicate it on Firefox. Translations are loaded with staticFileLoader (local file). The translation on the element is added this way:
<button class="button large x-wide" type="submit">{{ "SUBMIT" | translate }}</button>
I tried swapping the button element with an anchor ('a') element, but the error persists.