Argument formatting with Angular-translate Argument formatting with Angular-translate angularjs angularjs

Argument formatting with Angular-translate


Well, it is documented in the main docs, you just have to take a look at the main docs

{    'AUTH_SUCCESS' : '{{ name }}, You have successfully singed in with {{ network }}'}

.

<span>{{AUTH_MESSAGE | translate : '{name : $scope.name, network : $scope.network}' }}</span>

Check out this one: http://angular-translate.github.io/docs/#/guide/06_variable-replacement


Found the answer, apparently they have a wide support for this feature, just not documented at the main docs \ README.md

Here is the answer