i have a json file of fruits name which is like
[
{ "fruits" : "orange"
},
{ "fruits" : "apple"
}
]
and angular a normal
<div>{{fruits}}</div>
how do i change the strings in results to other words, example i want the orange become orens and apple becomes apel without modifying json file. I have more than 30 words to be replaced.