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

Popular posts from this blog

Change the color of an oval at click in Java AWT -

c# - Unity IoC Lifetime per HttpRequest for UserStore -

I am trying to solve the error message 'incompatible ranks 0 and 1 in assignment' in a fortran 95 program. -