diff --git a/erpnext/templates/print_formats/includes/item_table_description.html b/erpnext/templates/print_formats/includes/item_table_description.html index eaef4bcc19..b7437a7f82 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)) -%} -
{{ _(doc.get_formatted("description")) }}
+{{ doc.get_formatted("description", translated=True) }}
{%- endif %} {% if compact -%} @@ -38,7 +38,7 @@ {% if doc.get(fieldname) -%}{{ _(doc.meta.get_label(fieldname)) }}: - {{ _(doc.get_formatted(fieldname)) }} + {{ doc.get_formatted(fieldname, translated=True) }}
{% endif %} {%- endfor -%}