but my problem is at the time of loading i m attaching the app-en_US.js locale file and when user select the language for example (german) then new local file is added in the head tag of html app-GE_de.js
but when i run the application and select the german language still text are displaying in english
i m adding the javascript locale file like this
var th = document.getElementsByTagName('head')[0]; var s = document.createElement('script'); s.setAttribute('type','text/javascript'); s.setAttribute('src','locale/app-'+lang+'.js'); th.appendChild(s);
That method does not support on the fly localization. You will need to look/build other ways. FOr instance, I built Ux.locale.Manager that does support on the fly changes for my own purposes.