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("item_name")) }}
+
{{ doc.get_formatted("item_name", translated=True) }}
{%- 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) )) -%} -

{{ _(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 -%}