Skip to content

Commit

Permalink
fix: translatable strings
Browse files Browse the repository at this point in the history
Co-authored-by: Raffael Meyer <14891507+barredterra@users.noreply.github.com>
  • Loading branch information
blaggacao and barredterra committed Dec 15, 2023
1 parent 083da7d commit c619255
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<h3>{{_("Fiscal Year")}}</h3>
<h3>{{ _("Fiscal Year") }}</h3>

<p>{{ _("New fiscal year created :- ") }} {{ doc.name }}</p>
Original file line number Diff line number Diff line change
@@ -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 %}
Expand Down

0 comments on commit c619255

Please sign in to comment.