[minor] add translated get_formatted
diff --git a/erpnext/templates/print_formats/includes/item_table_description.html b/erpnext/templates/print_formats/includes/item_table_description.html
index eaef4bc..b7437a7 100644
--- a/erpnext/templates/print_formats/includes/item_table_description.html
+++ b/erpnext/templates/print_formats/includes/item_table_description.html
@@ -19,7 +19,7 @@
 	{% if (doc.in_format_data("item_name") and not doc.is_print_hide("item_name") and
 		(not doc.in_format_data("item_code") or doc.is_print_hide("item_code")
 			or doc.item_code != doc.item_name)) -%}
-		<div class="primary">{{ _(doc.get_formatted("item_name")) }}</div>
+		<div class="primary">{{ doc.get_formatted("item_name", translated=True) }}</div>
 	{%- endif %}
 
 	{% if (doc.in_format_data("description") and doc.description and
@@ -30,7 +30,7 @@
 			) or not (doc.item_code == doc.item_name == doc.description)
 		))
 	-%}
-	<p>{{ _(doc.get_formatted("description")) }}</p>
+	<p>{{ doc.get_formatted("description", translated=True) }}</p>
 	{%- endif %}
 
 	{% if compact -%}
@@ -38,7 +38,7 @@
 			{% if doc.get(fieldname) -%}
 			<p>
 				<strong>{{ _(doc.meta.get_label(fieldname)) }}:</strong>
-				{{ _(doc.get_formatted(fieldname))  }}
+				{{ doc.get_formatted(fieldname, translated=True)  }}
 			</p>
 			{% endif %}
 		{%- endfor -%}