In my controller $http service data is assigned to $scope as:
$scope.project = data.data;
In my view for a text box I have defined:
ng-model="project.name"
How do I translate ng-model value of project.name
using angular-translate?
try this
ng-model="project.name|translate"