commit | c61925598af27b836fd2d479b7cba169c9fa7e80 | [log] [tgz] |
---|---|---|
author | David Arnold <dgx.arnold@gmail.com> | Fri Dec 15 18:08:52 2023 +0100 |
committer | David Arnold <dgx.arnold@gmail.com> | Fri Dec 15 18:24:34 2023 +0100 |
tree | 4993485c554847fce0430b59df72b0ed29e31db5 | |
parent | 083da7d8a4dd8452d54e8a0f85ac510449cf5bf9 [diff] |
fix: translatable strings Co-authored-by: Raffael Meyer <14891507+barredterra@users.noreply.github.com>
diff --git a/erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html b/erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html index fedbfc4..0c4a462 100644 --- a/erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html +++ b/erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html
@@ -1,3 +1,3 @@ -<h3>{{_("Fiscal Year")}}</h3> +<h3>{{ _("Fiscal Year") }}</h3> <p>{{ _("New fiscal year created :- ") }} {{ doc.name }}</p>
diff --git a/erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html b/erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html index d8133ae..ca97516 100644 --- a/erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html +++ b/erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html
@@ -1,12 +1,12 @@ -<p><b>Material Request Type</b>: {{ doc.material_request_type }}<br> -<b>Company</b>: {{ doc.company }}</p> +<p><b>{{ _("Material Request Type") }}</b>: {{ doc.material_request_type }}<br> +<b>{{ _("Company") }}</b>: {{ doc.company }}</p> -<h3>Order Summary</h3> +<h3>{{ _("Order Summary") }}</h3> <table border=2 > <tr align="center"> - <th>Item Name</th> - <th>Received Quantity</th> + <th>{{ _("Item Name") }}</th> + <th>{{ _("Received Quantity") }}</th> </tr> {% for item in doc.items %} {% if frappe.utils.flt(item.received_qty, 2) > 0.0 %}