angularjs - Using Internationalization (i18n), shows expression instead of value when application is reloaded -
in our application using internationalization (i18n) of angularjs, works fine when application loaded when application reloaded or refreshed starts showing expression instead of value.
for instance -
if localization key: 'writtenby' value 'writtenby' html code below
- {{ 'writtenby' | i18n }} author
the behavior of following html code on page load proper value key wriitenby
writtenby author
- but on reloading same page or refreshing, following expression rendered instead of value key used.
{{ 'writtenby' | i18n }} author
is issue angularjs or thing has taken care of while using i18n(internationalization) in code?
any welcome..
Comments
Post a Comment