i am using https://angular-translate.github.io/ module for translation
my key array is
$scope.array = [ "full_name", "email", "phone_no" ]; and my translation for that is
$translateProvider.translations('en', { full_name:'full name', email:'email', phone_no:'phone no' }); and have code like this
<div ng-repeat="item in array"> {{item | translate}} </div> but i can't get translation. can anyone help to do proper way ??