How to get Translated value of Link Field

For example in the Doc, I have translated a link field value from English to Bangla, which is displaying perfectly in the doc when the language is Bengali. But when I console.log(field name) I’m getting the real English value for that link field. Is there any way I can get the respective language value?

In JS, __(doc.field_name) or frappe._(doc.field_name) should give you the translated value if available.

1 Like

thnx it works