Lately I've encountered this library, I looks very promising, and I understand that it's widely used and supports all kinds of neat features such as asynchronous loading on languages JSONs, using local storage, etc etc.
One thing that is quite trivial though, is string formatting \ passing parameters to the translate filter, doesn't seem to be supported: for instance: 'You have successfully singed in with %S'
A certain param filter, such as:
$translateProvider.translations('en', {
AUTH_SUCCESS : '%s, You have successfully singed in with %s'
}
HTML:
<span>{{AUTH_MESSAGE | translate : [$scope.name, $scope.network]}}<span>
Is there anything that can serve that kind of purpose in this library?