Fix translate purchase_receipt.js

This commit is contained in:
Bárbara Perretti 2013-10-03 14:18:12 -03:00
parent 1395dafb12
commit d538f1249f

View File

@ -16,15 +16,15 @@ erpnext.stock.PurchaseReceiptController = erpnext.buying.BuyingController.extend
if(this.frm.doc.docstatus == 1) { if(this.frm.doc.docstatus == 1) {
if(!this.frm.doc.__billing_complete) { if(!this.frm.doc.__billing_complete) {
cur_frm.add_custom_button('Make Purchase Invoice', cur_frm.add_custom_button(wn._('Make Purchase Invoice'),
this.make_purchase_invoice); this.make_purchase_invoice);
} }
cur_frm.add_custom_button('Send SMS', cur_frm.cscript['Send SMS']); cur_frm.add_custom_button(wn._('Send SMS'), cur_frm.cscript['Send SMS']);
this.show_stock_ledger(); this.show_stock_ledger();
this.show_general_ledger(); this.show_general_ledger();
} else { } else {
cur_frm.add_custom_button(wn._('From Purchase Order'), cur_frm.add_custom_button(wn._(wn._('From Purchase Order')),
function() { function() {
wn.model.map_current_doc({ wn.model.map_current_doc({
method: "buying.doctype.purchase_order.purchase_order.make_purchase_receipt", method: "buying.doctype.purchase_order.purchase_order.make_purchase_receipt",
@ -139,7 +139,7 @@ cur_frm.fields_dict['purchase_receipt_details'].grid.get_field('batch_no').get_q
} }
} }
else{ else{
alert("Please enter Item Code."); alert(wn._("Please enter Item Code."));
} }
} }