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