You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 4, 2024. It is now read-only.
If not lang attribute is specified, the language could be searched for at the parent elements. See jQuery implementation of :lang(). In addition the browser language could be queried, as implemented [http://angular-translate.github.io/docs/#/guide/07_multi-language](in angular-translate) with method determinePreferredLanguage().
The observer could call this code on each $digest loop to detect language changes, but watching all parent elements might be quite slow. Passing language attributes from one element to another, however, might be slow as well.
If not
langattribute is specified, the language could be searched for at the parent elements. See jQuery implementation of :lang(). In addition the browser language could be queried, as implemented [http://angular-translate.github.io/docs/#/guide/07_multi-language](in angular-translate) with methoddeterminePreferredLanguage().The observer could call this code on each $digest loop to detect language changes, but watching all parent elements might be quite slow. Passing language attributes from one element to another, however, might be slow as well.
See also