I work on an application that should be translated in some language.
When i used filter like number, currency... the result is show in the default localization.
In the documentation i found that we can import a js to set the localization display of our application.
<html ng-app>
<head>
….
<script src="angular.js"></script>
<script src="i18n/angular-locale_de-de.js"></script>
….
</head>
</html>
What i want to do is allow the user to define his localization and in that case i think i have to change the localization script imported.
Is there a good way to do this ?
Thanks by advance for your reply