Fix translate purchase_invoice.js
diff --git a/accounts/doctype/purchase_invoice/purchase_invoice.js b/accounts/doctype/purchase_invoice/purchase_invoice.js
index 2428a7d..40e6433 100644
--- a/accounts/doctype/purchase_invoice/purchase_invoice.js
+++ b/accounts/doctype/purchase_invoice/purchase_invoice.js
@@ -26,10 +26,10 @@
// Show / Hide button
if(doc.docstatus==1 && doc.outstanding_amount > 0)
- this.frm.add_custom_button('Make Payment Entry', this.make_bank_voucher);
+ this.frm.add_custom_button(wn._('Make Payment Entry'), this.make_bank_voucher);
if(doc.docstatus==1) {
- cur_frm.add_custom_button('View Ledger', function() {
+ cur_frm.add_custom_button(wn._('View Ledger'), function() {
wn.route_options = {
"voucher_no": doc.name,
"from_date": doc.posting_date,
@@ -213,5 +213,5 @@
cur_frm.pformat.print_heading = doc.select_print_heading;
}
else
- cur_frm.pformat.print_heading = "Purchase Invoice";
+ cur_frm.pformat.print_heading = wn._("Purchase Invoice");
}
\ No newline at end of file