fix: translatable strings

Co-authored-by: Raffael Meyer <14891507+barredterra@users.noreply.github.com>
This commit is contained in:
David Arnold 2023-12-15 18:08:52 +01:00
parent 083da7d8a4
commit c61925598a
No known key found for this signature in database
GPG Key ID: AB15A6AF1101390D
2 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,3 @@
<h3>{{_("Fiscal Year")}}</h3>
<h3>{{ _("Fiscal Year") }}</h3>
<p>{{ _("New fiscal year created :- ") }} {{ doc.name }}</p>

View File

@ -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 %}